/* Variables */
:root {
    --marine: #0E1A2B;
    --lime: #B6FF5A;
    --ardoise: #2A2F36;
    --noir: #000000;
    --blanc: #FFFFFF;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--noir);
    color: var(--blanc);
    overflow-x: hidden;
}

/* Particles Background */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(182, 255, 90, 0.2);
    transition: all 0.3s;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 4px 20px rgba(182, 255, 90, 0.1);
}

.header-wrap {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 24px;
    letter-spacing: -1px;
}

.logo-icon {
    font-size: 28px;
    animation: pulse 2s ease infinite;
}

.logo-accent {
    color: var(--lime);
}

.menu {
    display: flex;
    gap: 40px;
}

.menu-link {
    color: var(--blanc);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s;
}

.menu-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--lime);
    transition: width 0.3s;
}

.menu-link:hover {
    color: var(--lime);
}

.menu-link:hover::after {
    width: 100%;
}

.cta-btn {
    background: var(--lime);
    color: var(--noir);
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 1px;
    border: 2px solid var(--lime);
    transition: all 0.3s;
}

.cta-btn:hover {
    background: transparent;
    color: var(--lime);
    transform: scale(1.05);
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.pulse-btn {
    animation: pulse 2s ease infinite;
}

.shake-hover:hover {
    animation: shake 0.5s ease;
}

.hover-lift {
    transition: transform 0.3s;
}

.hover-lift:hover {
    transform: translateY(-10px);
}

/* Hero */
.hero-full {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 60px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, rgba(0,0,0,0.8), rgba(14,26,43,0.7)),
        url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(182,255,90,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    background-size: cover, 50px 50px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(182, 255, 90, 0.15), transparent 70%);
    animation: pulse 3s ease infinite;
}

.hero-wrap {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    padding: 0 20px;
    width: 100%;
}

.hero-tag {
    display: inline-block;
    background: rgba(182, 255, 90, 0.1);
    color: var(--lime);
    padding: 8px 20px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 2px;
    border: 2px solid var(--lime);
    margin-bottom: 30px;
    animation: slideInUp 0.6s ease;
}

.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch::before {
    animation: glitch 0.3s infinite;
    color: var(--lime);
    z-index: -1;
}

.glitch::after {
    animation: glitch 0.3s infinite reverse;
    color: #ff00ff;
    z-index: -2;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(40px, 10vw, 120px);
    line-height: 0.9;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hero-title .line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
}

.hero-title .line.animate {
    animation: slideInUp 0.8s ease forwards;
}

.stroke {
    color: transparent;
    -webkit-text-stroke: 2px var(--lime);
    text-stroke: 2px var(--lime);
}

.hero-sub {
    font-size: clamp(16px, 3vw, 20px);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    font-weight: 500;
    opacity: 0;
}

.hero-sub.fade-in {
    animation: fadeIn 1s ease 0.6s forwards;
}

.hero-btns {
    margin-bottom: 50px;
}

.btn-huge {
    background: var(--lime);
    color: var(--noir);
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 900;
    font-size: clamp(14px, 2.5vw, 16px);
    letter-spacing: 1px;
    border: 3px solid var(--lime);
    transition: all 0.3s;
    text-transform: uppercase;
    display: inline-block;
}

.btn-huge:hover {
    background: transparent;
    color: var(--lime);
    transform: scale(1.05);
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border: 1px solid rgba(182, 255, 90, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    opacity: 0;
}

.stat-box.visible {
    animation: slideInUp 0.6s ease forwards;
}

.stat-box:hover {
    background: rgba(182, 255, 90, 0.1);
    border-color: var(--lime);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.stat-value {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(36px, 6vw, 48px);
    font-weight: 900;
    color: var(--lime);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.stat-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.stat-bar-fill {
    height: 100%;
    background: var(--lime);
    width: 0;
    transition: width 1.5s ease;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--lime);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    animation: fadeIn 1s ease 1s forwards;
    opacity: 0;
}

.scroll-line {
    width: 50px;
    height: 2px;
    background: var(--lime);
    animation: pulse 2s ease infinite;
}

/* Section Labels */
.section-label {
    display: inline-block;
    color: var(--lime);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-label.light {
    color: var(--lime);
}

/* PR Section */
.pr-section {
    padding: 100px 20px;
    background: var(--noir);
    position: relative;
    z-index: 1;
}

.pr-wrap {
    max-width: 1400px;
    margin: 0 auto;
}

.glitch-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 900;
    margin-top: 10px;
    margin-bottom: 60px;
    position: relative;
}

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

.pr-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(182, 255, 90, 0.2);
    padding: 30px;
    transition: all 0.3s;
    opacity: 0;
}

.pr-card.visible {
    animation: slideInUp 0.6s ease forwards;
}

.pr-card:hover {
    border-color: var(--lime);
    background: rgba(182, 255, 90, 0.05);
    transform: translateY(-10px);
}

.pr-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(182, 255, 90, 0.2);
    flex-wrap: wrap;
    gap: 10px;
}

.pr-name {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 800;
    letter-spacing: 1px;
}

.pr-badge {
    background: var(--lime);
    color: var(--noir);
    padding: 6px 14px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
}

.pr-stat {
    margin-bottom: 20px;
}

.pr-label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
    display: block;
}

.pr-progress {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.pr-before {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

.pr-arrow {
    font-size: 20px;
    color: var(--lime);
}

.pr-after {
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 900;
    color: var(--lime);
}

/* Method Section */
.method-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--ardoise) 0%, var(--marine) 100%);
    position: relative;
}

.method-bg {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><line x1="0" y1="0" x2="100" y2="100" stroke="rgba(182,255,90,0.03)" stroke-width="1"/></svg>');
    background-size: 50px 50px;
    animation: pulse 3s ease infinite;
}

.method-wrap {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.white {
    color: var(--blanc);
}

.typing-text {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(30px, 5vw, 60px);
    font-weight: 900;
    margin-bottom: 60px;
    overflow: hidden;
    border-right: 3px solid var(--lime);
    white-space: nowrap;
    animation: typing 2s steps(30) 0.5s forwards, blink 0.75s step-end infinite;
    width: 0;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    50% { border-color: transparent; }
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.method-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(182, 255, 90, 0.2);
    padding: 40px 30px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--lime);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.method-card:hover::before {
    transform: scaleX(1);
}

.method-card:hover {
    background: rgba(182, 255, 90, 0.1);
    border-color: var(--lime);
}

.method-num {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(60px, 10vw, 80px);
    font-weight: 900;
    color: var(--lime);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 15px;
}

.method-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.method-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 15px;
}

.method-icon {
    position: absolute;
    bottom: 25px;
    right: 25px;
    font-size: 50px;
    opacity: 0.1;
}

/* Transformations */
.transformations-section {
    padding: 100px 20px;
    background: var(--noir);
}

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

.trans-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.trans-card {
    background: var(--ardoise);
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s;
    opacity: 0;
}

.trans-card.visible {
    animation: slideInUp 0.6s ease forwards;
}

.trans-card:hover {
    border-color: var(--lime);
    transform: scale(1.02);
}

.trans-images {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.trans-img {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.trans-img.after {
    background: linear-gradient(135deg, var(--lime), #9dbf4a);
}

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

.img-label {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
    background: rgba(0, 0, 0, 0.7);
    padding: 4px 10px;
}

.img-placeholder {
    font-size: clamp(40px, 6vw, 60px);
}

.trans-divider {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(16px, 3vw, 20px);
    font-weight: 900;
    color: var(--lime);
    padding: 0 10px;
}

.trans-info {
    padding: 25px;
}

.trans-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 800;
    margin-bottom: 8px;
}

.trans-result {
    color: var(--lime);
    font-size: clamp(16px, 2.5vw, 18px);
    font-weight: 700;
    margin-bottom: 12px;
}

.trans-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--lime);
    width: 0;
    transition: width 1.5s ease;
}

/* Process */
.process-section {
    padding: 100px 20px;
    background: var(--blanc);
    color: var(--noir);
}

.process-wrap {
    max-width: 1000px;
    margin: 0 auto;
}

.process-wrap h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 900;
    margin-bottom: 60px;
}

.process-timeline {
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--lime), transparent);
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    opacity: 0;
}

.process-step.visible {
    animation: slideInUp 0.6s ease forwards;
}

.step-marker {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--lime);
    color: var(--noir);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 900;
    box-shadow: 0 0 0 8px rgba(182, 255, 90, 0.2);
    z-index: 2;
    transition: all 0.3s;
}

.process-step:hover .step-marker {
    transform: scale(1.1) rotate(360deg);
}

.step-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.step-content p {
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.7;
    font-size: 15px;
}

/* Programmes */
.programmes-section {
    padding: 100px 20px;
    background: var(--noir);
}

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

.prog-header h2 {
    margin-bottom: 15px;
}

.prog-subtitle {
    font-size: clamp(16px, 2.5vw, 18px);
    color: rgba(255, 255, 255, 0.6);
}

.prog-cards {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.prog-card {
    background: rgba(255, 255, 255, 0.03);
    border: 3px solid rgba(182, 255, 90, 0.2);
    padding: 40px 30px;
    transition: all 0.3s;
    position: relative;
    opacity: 0;
}

.prog-card.visible {
    animation: slideInUp 0.6s ease forwards;
}

.prog-card:hover {
    border-color: var(--lime);
    background: rgba(182, 255, 90, 0.05);
}

.prog-card.featured {
    border-color: var(--lime);
    background: rgba(182, 255, 90, 0.08);
}

.prog-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lime);
    color: var(--noir);
    padding: 8px 16px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
    white-space: nowrap;
}

.pulse-badge {
    animation: pulse 2s ease infinite;
}

.prog-top h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.prog-price {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.price {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(48px, 8vw, 60px);
    font-weight: 900;
    color: var(--lime);
}

.period {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.prog-features {
    list-style: none;
    margin-bottom: 30px;
}

.prog-features li {
    padding: 12px 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.check {
    color: var(--lime);
    margin-right: 8px;
}

.btn-prog {
    display: block;
    width: 100%;
    padding: 16px;
    text-align: center;
    background: transparent;
    color: var(--blanc);
    border: 2px solid var(--blanc);
    text-decoration: none;
    font-weight: 900;
    letter-spacing: 1px;
    transition: all 0.3s;
    font-size: 14px;
}

.btn-prog:hover {
    background: var(--blanc);
    color: var(--noir);
}

.btn-prog.primary {
    background: var(--lime);
    color: var(--noir);
    border-color: var(--lime);
}

.btn-prog.primary:hover {
    background: transparent;
    color: var(--lime);
}

/* FAQ */
.faq-section {
    padding: 100px 20px;
    background: var(--ardoise);
}

.faq-wrap {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
}

.faq-left h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 900;
    line-height: 1.1;
    margin-top: 15px;
}

.faq-item {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
}

.faq-item.visible {
    animation: slideInUp 0.6s ease forwards;
}

.faq-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--lime);
    cursor: pointer;
    transition: all 0.3s;
}

.faq-item:hover h3 {
    transform: translateX(10px);
}

.faq-item p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

/* Contact - SANS ANIMATION */
.contact-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--marine) 0%, var(--noir) 100%);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(32px, 6vw, 80px);
    font-weight: 900;
    line-height: 1.2;
    margin-top: 10px;
    margin-bottom: 20px;
    word-wrap: break-word;
}

/* Pas d'animation - texte affiché directement */
.typing-text-slow {
    display: block;
    color: var(--blanc);
}

.cta-text {
    font-size: clamp(16px, 3vw, 20px);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-top: 15px;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 30px;
    border: 2px solid rgba(182, 255, 90, 0.2);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 15px;
}

.form-input {
    width: 100%;
    padding: 16px 18px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--blanc);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: all 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--lime);
    box-shadow: 0 0 20px rgba(182, 255, 90, 0.2);
}

.contact-form select {
    margin-bottom: 15px;
}

.contact-form textarea {
    margin-bottom: 25px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 20px;
    background: var(--lime);
    color: var(--noir);
    border: 3px solid var(--lime);
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 15px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.btn-submit:hover {
    background: transparent;
    color: var(--lime);
}

.btn-submit.loading .submit-text {
    opacity: 0;
}

.submit-loader {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 0, 0, 0.3);
    border-top-color: var(--noir);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

.btn-submit.loading .submit-loader {
    display: block;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.form-result {
    margin-top: 20px;
    padding: 16px;
    text-align: center;
    font-weight: 600;
    display: none;
    font-size: 14px;
}

.form-result.success {
    display: block;
    background: rgba(182, 255, 90, 0.2);
    color: var(--lime);
    border: 2px solid var(--lime);
    animation: slideInUp 0.6s ease;
}

.form-result.error {
    display: block;
    background: rgba(255, 68, 68, 0.2);
    color: #ff4444;
    border: 2px solid #ff4444;
    animation: shake 0.5s ease;
}

/* Footer */
.footer-minimal {
    padding: 60px 20px 30px;
    background: var(--noir);
    border-top: 1px solid rgba(182, 255, 90, 0.2);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    margin-top: 12px;
    font-size: 14px;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--lime);
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--blanc);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 13px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.social-link:hover {
    background: var(--lime);
    color: var(--noir);
    border-color: var(--lime);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
}

/* Reveal Classes */
.reveal-card,
.reveal-step,
.reveal-faq {
    opacity: 0;
    transform: translateY(50px);
}

.reveal-card.visible,
.reveal-step.visible,
.reveal-faq.visible {
    animation: slideInUp 0.6s ease forwards;
}

/* ============================================
   RESPONSIVE MEDIA QUERIES
   ============================================ */

/* Tablette (jusqu'à 1024px) */
@media (max-width: 1024px) {
    .header-wrap {
        padding: 0 30px;
    }
    
    .menu {
        gap: 25px;
    }
    
    .hero-stats,
    .pr-grid,
    .method-grid,
    .trans-grid,
    .prog-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .faq-wrap {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .process-step {
        gap: 25px;
    }
    
    .step-marker {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .timeline-line {
        left: 25px;
    }
    
    .contact-cta {
        padding: 80px 30px;
    }
    
    .cta-content {
        margin-bottom: 40px;
    }
    
    .contact-form {
        padding: 35px 25px;
    }
}

/* Mobile (jusqu'à 768px) */
@media (max-width: 768px) {
    .header-wrap {
        padding: 0 20px;
        height: 70px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .logo-icon {
        font-size: 24px;
    }
    
    .menu {
        display: none;
    }
    
    .cta-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .hero-full {
        min-height: 100vh;
        padding: 100px 15px 50px;
    }
    
    .hero-tag {
        font-size: 10px;
        padding: 6px 15px;
        margin-bottom: 25px;
    }
    
    .hero-title {
        letter-spacing: -1px;
        margin-bottom: 15px;
    }
    
    .hero-sub {
        margin-bottom: 30px;
    }
    
    .btn-huge {
        padding: 16px 32px;
        font-size: 14px;
    }
    
    .hero-btns {
        margin-bottom: 40px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-box {
        padding: 20px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .pr-section,
    .method-section,
    .transformations-section,
    .process-section,
    .programmes-section,
    .faq-section {
        padding: 80px 15px;
    }
    
    .glitch-title {
        margin-bottom: 40px;
    }
    
    .pr-grid,
    .method-grid,
    .trans-grid,
    .prog-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .pr-card,
    .method-card {
        padding: 25px 20px;
    }
    
    .typing-text {
        border: none;
        animation: none;
        width: auto;
        white-space: normal;
        margin-bottom: 40px;
    }
    
    .process-step {
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .step-marker {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .timeline-line {
        left: 22px;
    }
    
    .faq-wrap {
        gap: 40px;
    }
    
    .faq-item {
        margin-bottom: 25px;
        padding-bottom: 25px;
    }
    
    .contact-cta {
        padding: 70px 20px;
    }
    
    .cta-content {
        margin-bottom: 35px;
    }
    
    .cta-content h2 {
        font-size: clamp(28px, 8vw, 48px);
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .cta-text {
        font-size: clamp(14px, 4vw, 18px);
        padding: 0 10px;
    }
    
    .contact-form {
        padding: 30px 20px;
        border-width: 2px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-input {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .btn-submit {
        padding: 18px 20px;
        font-size: 14px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Très petits mobiles (jusqu'à 480px) */
@media (max-width: 480px) {
    .logo {
        font-size: 18px;
    }
    
    .logo-icon {
        font-size: 20px;
    }
    
    .cta-btn {
        padding: 8px 16px;
        font-size: 11px;
    }
    
    .hero-tag {
        font-size: 9px;
        letter-spacing: 1px;
    }
    
    .btn-huge {
        padding: 14px 28px;
    }
    
    .pr-card,
    .method-card,
    .prog-card {
        padding: 20px 15px;
    }
    
    .contact-cta {
        padding: 60px 15px;
    }
    
    .section-label {
        font-size: 10px;
        letter-spacing: 1.5px;
    }
    
    .cta-content h2 {
        font-size: clamp(24px, 9vw, 36px);
        margin-bottom: 12px;
        padding: 0 5px;
    }
    
    .cta-text {
        font-size: 14px;
        padding: 0 5px;
    }
    
    .contact-form {
        padding: 25px 15px;
    }
    
    .form-input {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .btn-submit {
        padding: 16px 18px;
        font-size: 13px;
        letter-spacing: 0.5px;
    }
    
    .form-result {
        font-size: 13px;
        padding: 14px;
    }
}

/* Mode paysage mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-full {
        min-height: auto;
        padding: 120px 20px 60px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .stat-box {
        padding: 15px;
    }
    
    .contact-cta {
        padding: 60px 20px;
    }
    
    .cta-content {
        margin-bottom: 30px;
    }
    
    .cta-content h2 {
        margin-bottom: 10px;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Corrections spécifiques iPhone SE et très petits écrans */
@media (max-width: 375px) {
    .cta-content h2 {
        font-size: 26px;
        line-height: 1.15;
    }
    
    .contact-form {
        padding: 20px 12px;
    }
    
    .btn-submit {
        padding: 14px 16px;
        font-size: 12px;
    }
}