:root {
    --dark-bg: #121212;
    --dark-bg-lighter: #1a1a1a;
    --gold: #FFD700;
    --fire-orange: #FF6A00;
    --fire-red: #8B1E1E;
    --text-light: #F5F5F5;
    --text-gray: #b0b0b0;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gold) 0%, var(--fire-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(18, 18, 18, 0.98);
    box-shadow: 0 4px 30px rgba(255, 106, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-light);
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-logo img {
    height: 50px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--fire-orange));
    transition: var(--transition);
}

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

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

.nav-cta {
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, var(--gold), var(--fire-orange));
    color: var(--dark-bg);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255, 106, 0, 0.15) 0%, transparent 70%),
                radial-gradient(ellipse at top right, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at bottom left, rgba(139, 30, 30, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, var(--fire-orange), transparent),
        radial-gradient(2px 2px at 60% 70%, var(--gold), transparent),
        radial-gradient(1px 1px at 50% 50%, var(--fire-orange), transparent),
        radial-gradient(1px 1px at 80% 10%, var(--gold), transparent);
    background-size: 200% 200%;
    animation: particles 20s linear infinite;
    opacity: 0.3;
}

@keyframes particles {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 2rem;
}

.hero-logo-anim {
    margin-bottom: 2rem;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-logo {
    width: 300px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.8));
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-weight: 400;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

/* Boutons */
.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--fire-orange));
    color: var(--dark-bg);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--gold), var(--fire-orange));
    color: var(--dark-bg);
    border-color: transparent;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

/* Hero Mockup */
.hero-mockup {
    margin-top: 4rem;
}

.video-mockup {
    max-width: 600px;
    margin: 0 auto;
}

.video-frame {
    position: relative;
    padding-bottom: 56.25%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 106, 0, 0.1));
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 60px rgba(255, 106, 0, 0.3);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--fire-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.7);
}

.play-button svg {
    width: 35px;
    height: 35px;
    color: var(--dark-bg);
    margin-left: 5px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    animation: bounce 2s infinite;
}

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

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

/* Sections communes */
.problem-section,
.for-who-section,
.services-section,
.examples-section,
.viral-section,
.social-proof-section,
.process-section,
.pricing-section,
.seo-content-section,
.faq-section,
.contact-section {
    padding: 8rem 0;
}

.problem-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-bg-lighter) 100%);
}

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

.lead {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin-bottom: 2rem;
    color: var(--text-light);
}

.problem-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.highlight-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 106, 0, 0.1));
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--gold);
    margin-top: 2rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Grids */
.for-who-grid,
.examples-grid,
.viral-examples,
.stats-grid,
.services-grid,
.pricing-grid {
    display: grid;
    gap: 2rem;
    margin-top: 4rem;
}

.for-who-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.examples-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.viral-examples {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin: 4rem 0;
}

.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

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

/* Cards */
.for-who-card,
.example-card,
.viral-card,
.stat-card,
.pricing-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 106, 0, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: var(--transition);
}

.for-who-card {
    padding: 3rem 2rem;
    text-align: center;
}

.example-card {
    background: var(--dark-bg-lighter);
    overflow: hidden;
}

.viral-card {
    padding: 2.5rem 2rem;
    text-align: center;
}

.stat-card {
    padding: 3rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 106, 0, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.pricing-card {
    background: var(--dark-bg-lighter);
    padding: 3rem 2rem;
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--gold);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

/* Hover effects */
.for-who-card:hover,
.example-card:hover,
.viral-card:hover,
.stat-card:hover,
.pricing-card:hover,
.service-item:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), var(--fire-orange));
    border-radius: 50%;
}

.card-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--dark-bg);
    stroke-width: 2;
}

.for-who-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.for-who-card ul {
    list-style: none;
}

.for-who-card li {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

/* Service items */
.service-item {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 106, 0, 0.08));
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.service-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.fire-icon {
    font-size: 2rem;
}

.service-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Video Thumbnails - VERSION CORRIGÉE */
.example-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 106, 0, 0.1));
    overflow: hidden;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: linear-gradient(135deg, var(--gold), var(--fire-orange));
}

/* Play overlay - UN SEUL */
.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    border: 2px solid white;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.play-overlay:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--gold);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
}

.play-overlay svg {
    width: 25px;
    height: 25px;
    color: var(--dark-bg);
    margin-left: 3px;
}

.example-info {
    padding: 1.5rem;
}

.example-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.example-info p {
    color: var(--text-gray);
}

.viral-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.viral-card h3 {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.viral-card p {
    color: var(--text-gray);
}

.viral-tagline {
    text-align: center;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    margin-top: 4rem;
    color: var(--text-light);
}

.stat-number {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold), var(--fire-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-gray);
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: var(--dark-bg-lighter);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    gap: 1.5rem;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.testimonial-avatar {
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.testimonial-author strong {
    color: var(--gold);
    display: block;
    margin-bottom: 0.2rem;
}

.testimonial-author span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Process */
.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 106, 0, 0.08));
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--gold), var(--fire-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--dark-bg);
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

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

.process-arrow {
    font-size: 2rem;
    color: var(--gold);
    flex-shrink: 0;
}

/* Pricing */
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--fire-orange));
    color: var(--dark-bg);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-gray);
}

.amount {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold), var(--fire-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.8rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.pricing-card .btn {
    width: 100%;
}

/* SEO Content */
.seo-content {
    max-width: 900px;
    margin: 0 auto;
}

.seo-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--gold);
}

.seo-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

/* FAQ */
.faq-container {
    max-width: 900px;
    margin: 4rem auto 0;
}

.faq-item {
    background: var(--dark-bg-lighter);
    margin-bottom: 1rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--gold);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.05);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
}

.faq-toggle {
    font-size: 1.8rem;
    color: var(--gold);
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Contact */
.contact-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--dark-bg-lighter);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gold);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--dark-bg);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--dark-bg-lighter);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-brand img {
    width: 100px;
    margin-bottom: 1rem;
}

.footer-brand h3 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text-gray);
}

.footer-links h4,
.footer-social h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    color: var(--text-gray);
}

/* MODAL VIDEO */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

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

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    margin: 2% auto;
    animation: slideIn 0.3s ease;
}

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

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--gold);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.close-modal:hover {
    color: var(--fire-orange);
    transform: scale(1.1);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--gold);
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.3);
}

#modalVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}
/* Hero video thumbnail */
.hero-mockup {
    margin-top: 4rem;
    cursor: pointer;
}

.video-mockup {
    max-width: 600px;
    margin: 0 auto;
}

.video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 106, 0, 0.1));
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 60px rgba(255, 106, 0, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.video-frame:hover {
    transform: scale(1.02);
    border-color: var(--gold);
    box-shadow: 0 30px 80px rgba(255, 215, 0, 0.5);
}

.hero-thumbnail-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-button-hero {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--fire-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
    z-index: 10;
    border: 3px solid white;
}

.play-button-hero:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.7);
}

.play-button-hero svg {
    width: 35px;
    height: 35px;
    color: var(--dark-bg);
    margin-left: 5px;
}

/* Optionnel : overlay sombre au survol */
.video-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.video-frame:hover::after {
    opacity: 1;
}
/* Media Queries */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(18, 18, 18, 0.98);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        padding: 2rem 0;
        border-top: 1px solid rgba(255, 215, 0, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .process-arrow {
        display: none;
    }

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

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

    .btn {
        width: 100%;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .close-modal {
        top: -35px;
        font-size: 35px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

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

    .stats-grid,
    .for-who-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* AOS Animations */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

[data-aos="flip-left"] {
    transform: perspective(1000px) rotateY(-30deg);
}

[data-aos="flip-left"].aos-animate {
    transform: perspective(1000px) rotateY(0);
}

[data-aos="flip-up"] {
    transform: perspective(1000px) rotateX(-30deg);
}

[data-aos="flip-up"].aos-animate {
    transform: perspective(1000px) rotateX(0);
}