/* ============================================
   NTX GAMING - HONEST ESPORT TEAM
   ============================================ */

/* Variables */
:root {
    --gold: #c9a227;
    --gold-light: #e8c547;
    --gold-dark: #8b7019;
    --gold-glow: rgba(201, 162, 39, 0.4);
    
    --red: #dc3545;
    --red-glow: rgba(220, 53, 69, 0.4);
    
    --bg-dark: #050505;
    --bg-main: #0a0908;
    --bg-card: #0f0e0c;
    --bg-elevated: #1a1816;
    
    --text-white: #f8f6f0;
    --text-gray: #9a9590;
    --text-muted: #5a5550;
    
    --font-display: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-main);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
    padding-bottom: env(safe-area-inset-bottom);
}

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

a, button {
    -webkit-tap-highlight-color: rgba(201, 162, 39, 0.2);
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

::selection {
    background: var(--gold);
    color: var(--bg-dark);
}

/* Background */
.smoke-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(201, 162, 39, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 162, 39, 0.02) 0%, transparent 50%),
        var(--bg-main);
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.875rem 5%;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(5, 5, 5, 0.92);
    border-bottom-color: rgba(201, 162, 39, 0.25);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo img {
    height: 48px;
    width: auto;
    filter: drop-shadow(0 0 12px var(--gold-glow));
    transition: var(--transition);
    border-radius: 8px;
}

.logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px var(--gold-glow));
}

/* Langue : style pill */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 999px;
    padding: 0.2rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.lang-link {
    color: var(--text-gray);
    text-decoration: none;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    transition: var(--transition);
}

.lang-link:hover {
    color: var(--gold);
}

.lang-link.active {
    color: var(--bg-dark);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 2px 8px var(--gold-glow);
}

.lang-sep {
    display: none;
}

.nav-socials {
    display: flex;
    gap: 0.5rem;
}

.nav-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 162, 39, 0.15);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
}

.nav-socials a:hover {
    color: var(--gold);
    background: rgba(201, 162, 39, 0.12);
    border-color: rgba(201, 162, 39, 0.35);
    box-shadow: 0 0 12px var(--gold-glow);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

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

.hero-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 80% 50% at 50% 20%, rgba(201, 162, 39, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 60% 60% at 50% 100%, rgba(201, 162, 39, 0.05) 0%, transparent 50%);
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(201, 162, 39, 0.2) 0%, transparent 100%),
        radial-gradient(2px 2px at 80% 70%, rgba(201, 162, 39, 0.2) 0%, transparent 100%),
        radial-gradient(1px 1px at 50% 50%, rgba(201, 162, 39, 0.3) 0%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeIn 1s ease;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    box-sizing: border-box;
}

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

.team-name {
    font-family: var(--font-display);
    font-size: clamp(4rem, 15vw, 9rem);
    font-weight: 900;
    letter-spacing: 0.15em;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.team-tagline {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.8em;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.hero-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 1.5rem;
}

.team-motto {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--text-white);
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--bg-dark);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px var(--gold-glow);
}

.btn-primary.large {
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.scroll-btn {
    position: absolute;
    bottom: 2rem;
    color: var(--text-muted);
    font-size: 1.5rem;
    text-decoration: none;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.section-header h2 span {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   HOW TO JOIN
   ============================================ */
.how-to-join {
    padding: 100px 5%;
    background: var(--bg-dark);
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid rgba(201, 162, 39, 0.1);
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--gold);
    color: var(--bg-dark);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 50%;
    font-size: 1.8rem;
    color: var(--gold);
}

.step h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.step p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.step p strong {
    color: var(--gold);
}

.step-arrow {
    color: var(--gold);
    font-size: 1.5rem;
    opacity: 0.5;
}

.join-cta {
    text-align: center;
}

.btn-events {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-events:hover {
    background: var(--gold);
    color: var(--bg-dark);
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section {
    padding: 100px 5%;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.member-card {
    width: 280px;
    padding: 2rem;
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
    border: 1px solid rgba(201, 162, 39, 0.1);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.member-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 162, 39, 0.3);
}

.member-card.founder {
    border-color: rgba(201, 162, 39, 0.3);
}

.member-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: var(--gold);
    color: var(--bg-dark);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.member-badge i {
    font-size: 0.7rem;
}

.player-badge {
    background: var(--bg-elevated);
    color: var(--gold);
    border: 1px solid var(--gold);
}

.member-avatar {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 1rem auto;
}

.avatar-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.avatar-icon {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    border: 2px solid var(--gold);
    border-radius: 50%;
    font-size: 2.5rem;
    color: var(--gold);
}

.avatar-icon.devil {
    color: var(--red);
    border-color: var(--red);
}

.avatar-icon.knight {
    color: var(--gold);
    border-color: var(--gold);
}

.avatar-icon.knight i {
    filter: drop-shadow(0 0 8px var(--gold-glow));
    transform: scale(1.05);
}

.member-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.25rem;
    min-height: 2.5em;
    line-height: 1.25;
}

.member-realname {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.member-role {
    font-size: 0.8rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.member-quote {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    min-height: 50px;
}

.member-socials {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.member-socials a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    font-size: 0.9rem;
    transition: var(--transition);
}

.member-socials a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-dark);
}

/* Empty Slot */
.empty-slot {
    border-style: dashed;
    border-color: rgba(201, 162, 39, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.empty-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(201, 162, 39, 0.3);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    opacity: 0.6;
}

.empty-slot h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.empty-slot p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.btn-join-small {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-size: 0.8rem;
    transition: var(--transition);
}

.btn-join-small:hover {
    background: var(--gold);
    color: var(--bg-dark);
}

/* ============================================
   WHY JOIN
   ============================================ */
.why-join {
    padding: 100px 5%;
    background: var(--bg-dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto 3rem;
}

.benefit-card {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid rgba(201, 162, 39, 0.1);
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    border-color: rgba(201, 162, 39, 0.3);
    transform: translateY(-5px);
}

.benefit-card.highlight {
    border-color: var(--gold);
    background: linear-gradient(180deg, rgba(201, 162, 39, 0.1) 0%, var(--bg-card) 100%);
}

.benefit-card.highlight .benefit-icon {
    background: var(--gold);
    color: var(--bg-dark);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--gold);
}

.benefit-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.honest-note {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    background: rgba(201, 162, 39, 0.05);
    border-left: 3px solid var(--gold);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.honest-note i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.honest-note p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.honest-note strong {
    color: var(--gold);
}

/* Future Section */
.future-section {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.05) 0%, transparent 100%);
    border: 1px solid rgba(201, 162, 39, 0.2);
    text-align: center;
}

.future-section h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    letter-spacing: 0.1em;
}

.future-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem 2rem;
}

.future-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.future-item i {
    color: var(--gold);
    font-size: 0.85rem;
}

/* ============================================
   FAQ SECTION - GEO Optimized
   ============================================ */
.faq-section {
    padding: 100px 5%;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(201, 162, 39, 0.1);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(201, 162, 39, 0.3);
}

.faq-item[open] {
    border-color: var(--gold);
}

.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary span {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
}

.faq-item summary i {
    color: var(--gold);
    transition: var(--transition);
    font-size: 0.9rem;
}

.faq-item[open] summary i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid rgba(201, 162, 39, 0.1);
    margin-top: 0;
    padding-top: 1.25rem;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.faq-answer a {
    color: var(--gold);
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faq-answer strong {
    color: var(--text-white);
}

@media (max-width: 768px) {
    .faq-section {
        padding: 80px 5%;
    }
    
    .faq-item summary {
        padding: 1rem 1.25rem;
    }
    
    .faq-item summary span {
        font-size: 0.95rem;
        padding-right: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.25rem 1.25rem;
    }
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
    padding: 100px 5%;
    text-align: center;
    background: 
        radial-gradient(ellipse at center, rgba(201, 162, 39, 0.1) 0%, transparent 60%),
        var(--bg-main);
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-white);
    margin-bottom: 1rem;
}

.cta-content h2 span {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 4rem 5% 2rem;
    background: var(--bg-dark);
    border-top: 1px solid rgba(201, 162, 39, 0.1);
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    width: 60px;
    height: auto;
    filter: drop-shadow(0 0 15px var(--gold-glow));
    margin-bottom: 1rem;
    border-radius: 10px;
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-links span {
    color: var(--text-muted);
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-gray);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-dark);
}

.copyright {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 1024px) {
    .header {
        padding: 1rem 4%;
    }
    
    .hero {
        padding: 2rem 4%;
        padding-top: 90px;
    }
    
    .team-name {
        font-size: clamp(2.5rem, 8vw, 4.5rem);
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-header h2 {
        font-size: clamp(1.5rem, 4vw, 2.2rem);
    }
    
    .steps-container {
        gap: 1.5rem;
    }
    
    .step {
        min-width: 180px;
        padding: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 1rem;
    }
    
    .future-grid {
        gap: 0.75rem 1.5rem;
    }
    
    .why-join,
    .how-to-join,
    .team-section,
    .faq-section {
        padding-left: 4%;
        padding-right: 4%;
    }
    
    .footer {
        padding-left: 4%;
        padding-right: 4%;
    }
}

/* ============================================
   RESPONSIVE - MOBILE LARGE
   ============================================ */
@media (max-width: 768px) {
    .header {
        padding: max(0.875rem, env(safe-area-inset-top)) max(4%, env(safe-area-inset-right)) 0.875rem max(4%, env(safe-area-inset-left));
    }
    
    .navbar {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .lang-switcher {
        order: 0;
        font-size: 0.85rem;
    }
    
    .logo img {
        height: 44px;
    }
    
    .nav-socials a {
        min-width: 44px;
        min-height: 44px;
    }
    
    /* Hero : centrage + iPhone safe area */
    .hero {
        padding-top: max(88px, calc(72px + env(safe-area-inset-top)));
        padding-left: max(1.25rem, env(safe-area-inset-left));
        padding-right: max(1.25rem, env(safe-area-inset-right));
        padding-bottom: max(2rem, env(safe-area-inset-bottom));
        min-height: 100svh;
        min-height: 100dvh;
        justify-content: center;
        text-align: center;
    }
    
    .hero-content {
        max-width: min(400px, 92vw);
        margin-left: auto;
        margin-right: auto;
        padding: 0 0.5rem;
    }
    
    .team-name {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .team-tagline {
        font-size: clamp(0.8rem, 2.5vw, 1rem);
        text-align: center;
        letter-spacing: 0.25em;
    }
    
    .hero-line {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: min(300px, 88vw);
        justify-content: center;
        padding: 1rem 1.5rem;
        min-height: 48px;
    }
    
    .team-motto {
        font-size: 1.1rem;
        padding: 0 0.25rem;
        text-align: center;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .scroll-btn {
        bottom: max(1.5rem, env(safe-area-inset-bottom));
    }
    
    /* Sections : titres et textes centrés, lisibles */
    .section-header {
        margin-bottom: 2.5rem;
        max-width: min(420px, 92vw);
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-header h2 {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
        text-align: center;
        line-height: 1.25;
    }
    
    .section-header p {
        padding: 0 0.5rem;
        text-align: center;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Steps */
    .how-to-join {
        padding: 80px max(5%, env(safe-area-inset-right)) 80px max(5%, env(safe-area-inset-left));
    }
    
    .steps-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
    
    .step {
        max-width: 100%;
        width: 100%;
    }
    
    .join-cta {
        padding: 0 1rem;
    }
    
    .btn-events {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        min-height: 48px;
    }
    
    /* Team */
    .team-section {
        padding: 80px max(5%, env(safe-area-inset-right)) 80px max(5%, env(safe-area-inset-left));
    }
    
    .team-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .member-card {
        width: 100%;
        max-width: 340px;
    }
    
    /* Benefits */
    .why-join {
        padding: 80px 5%;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 100%;
    }
    
    .benefit-card:hover {
        transform: none;
    }
    
    .future-section {
        padding: 1.5rem;
    }
    
    .future-grid {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .honest-note {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .honest-note i {
        margin-bottom: 0.5rem;
    }
    
    .final-cta {
        padding: 80px max(5%, env(safe-area-inset-right)) 80px max(5%, env(safe-area-inset-left));
    }
    
    .cta-content {
        padding: 0 0.5rem;
        max-width: min(400px, 92vw);
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    
    .btn-primary.large {
        width: 100%;
        max-width: 300px;
        min-height: 48px;
    }
    
    /* Footer */
    .footer {
        padding: 3rem max(5%, env(safe-area-inset-right)) max(2rem, env(safe-area-inset-bottom)) max(5%, env(safe-area-inset-left));
    }
    
    .footer-socials {
        gap: 0.75rem;
    }
    
    .footer-socials a {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }
}

/* ============================================
   RESPONSIVE - MOBILE SMALL
   ============================================ */
@media (max-width: 480px) {
    .header {
        padding: max(0.75rem, env(safe-area-inset-top)) max(4%, env(safe-area-inset-right)) 0.75rem max(4%, env(safe-area-inset-left));
    }
    
    .logo img {
        height: 40px;
    }
    
    .nav-socials {
        gap: 0.5rem;
    }
    
    .nav-socials a {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        font-size: 0.9rem;
    }
    
    /* Hero : iPhone / petit écran */
    .hero {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
        padding-top: max(84px, calc(68px + env(safe-area-inset-top)));
        padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
    }
    
    .hero-content {
        max-width: min(360px, 90vw);
        padding: 0 0.25rem;
    }
    
    .team-name {
        font-size: clamp(2rem, 11vw, 3rem);
        letter-spacing: 0.08em;
        text-align: center;
    }
    
    .team-tagline {
        letter-spacing: 0.15em;
        font-size: 0.75rem;
        text-align: center;
    }
    
    .team-motto {
        font-size: 0.95rem;
        padding: 0 0.25rem;
        text-align: center;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .btn-primary, .btn-secondary {
        font-size: 0.85rem;
        padding: 0.9rem 1.25rem;
        min-height: 48px;
        max-width: min(280px, 90vw);
    }
    
    .scroll-btn {
        bottom: max(1.25rem, env(safe-area-inset-bottom));
    }
    
    /* Sections : centrage + lisibilité */
    .section-header {
        margin-bottom: 2rem;
        max-width: min(360px, 90vw);
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-header h2 {
        font-size: 1.35rem;
        text-align: center;
        line-height: 1.3;
    }
    
    .section-header p {
        font-size: 0.9rem;
        padding: 0 0.5rem;
        text-align: center;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Steps */
    .how-to-join {
        padding: 60px max(4%, env(safe-area-inset-right)) 60px max(4%, env(safe-area-inset-left));
    }
    
    .step h3 {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .step p {
        font-size: 0.9rem;
        text-align: center;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .step-icon {
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
    }
    
    .btn-events {
        font-size: 0.85rem;
        padding: 0.9rem 1.25rem;
        min-height: 48px;
    }
    
    /* Team Cards */
    .team-section {
        padding: 60px 4%;
    }
    
    .member-card {
        padding: 1.5rem;
        max-width: 100%;
    }
    
    .member-name {
        font-size: 1.25rem;
        min-height: 2.2em;
    }
    
    .member-quote {
        font-size: 0.85rem;
        min-height: auto;
    }
    
    .avatar-icon {
        font-size: 2rem;
    }
    
    .member-avatar {
        width: 80px;
        height: 80px;
    }
    
    .member-socials a {
        min-width: 44px;
        min-height: 44px;
    }
    
    .btn-join-small {
        min-height: 44px;
        padding: 0.75rem 1.25rem;
    }
    
    /* Benefits */
    .why-join {
        padding: 60px max(4%, env(safe-area-inset-right)) 60px max(4%, env(safe-area-inset-left));
    }
    
    .benefit-card {
        padding: 1.25rem;
        text-align: center;
    }
    
    .benefit-card h3 {
        font-size: 1rem;
    }
    
    .benefit-card p {
        text-align: center;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .honest-note {
        padding: 1.25rem;
    }
    
    .honest-note p {
        font-size: 0.9rem;
    }
    
    /* FAQ */
    .faq-section {
        padding: 60px max(4%, env(safe-area-inset-right)) 60px max(4%, env(safe-area-inset-left));
    }
    
    .faq-item summary span {
        text-align: left;
    }
    
    .faq-answer p {
        text-align: left;
    }
    
    /* CTA */
    .final-cta {
        padding: 60px max(4%, env(safe-area-inset-right)) 60px max(4%, env(safe-area-inset-left));
    }
    
    .cta-content {
        max-width: min(360px, 90vw);
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 1.4rem;
        text-align: center;
    }
    
    .cta-content p {
        text-align: center;
    }
    
    .btn-primary.large {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        min-height: 48px;
    }
    
    /* Footer */
    .footer {
        padding: 2.5rem max(4%, env(safe-area-inset-right)) max(1.5rem, env(safe-area-inset-bottom)) max(4%, env(safe-area-inset-left));
    }
    
    .footer-content {
        max-width: min(360px, 90vw);
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-tagline {
        text-align: center;
    }
    
    .footer-logo {
        width: 50px;
    }
    
    .footer-tagline {
        font-size: 0.85rem;
    }
    
    .footer-socials a {
        width: 44px;
        height: 44px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
}

/* ============================================
   RESPONSIVE - VERY SMALL
   ============================================ */
@media (max-width: 360px) {
    .hero {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .team-name {
        font-size: 1.9rem;
    }
    
    .team-tagline {
        letter-spacing: 0.15em;
        font-size: 0.65rem;
    }
    
    .btn-primary, .btn-secondary {
        font-size: 0.8rem;
        padding: 0.85rem 1rem;
    }
    
    .section-header h2 {
        font-size: 1.2rem;
    }
    
    .member-card {
        max-width: 100%;
        padding: 1.25rem;
    }
    
    .member-name {
        font-size: 1.15rem;
        min-height: 2em;
    }
    
    .benefit-card {
        padding: 1rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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