/* ============================================
   DANCE ALL STYLES - LANDING PAGE STYLES
   Ambiance: Énergique mais pas too much
   ============================================ */

/* CSS Variables */
:root {
    /* Colors - Energetic but balanced */
    --color-primary: #FF6B35;
    --color-primary-dark: #E85A2A;
    --color-primary-light: #FF8C5A;
    --color-secondary: #1A1A2E;
    --color-accent: #FFD23F;
    --color-dark: #0F0F1A;
    --color-light: #FAFAFA;
    --color-gray: #6B7280;
    --color-gray-light: #E5E7EB;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #1A1A2E 0%, #16213E 50%, #0F0F1A 100%);
    --gradient-energy: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
    --gradient-cta: linear-gradient(135deg, #FF6B35 0%, #FFD23F 100%);

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 40px rgba(255, 107, 53, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark);
    background: var(--color-light);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: var(--spacing-xl);
    color: var(--color-secondary);
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-primary {
    background: var(--gradient-energy);
    color: white;
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 60px rgba(255, 107, 53, 0.4);
}

.cta-final {
    background: var(--gradient-energy);
    color: white;
    font-size: 1.25rem;
    padding: 1.25rem 2.5rem;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.cta-final:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.5);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    overflow: hidden;
    padding: var(--spacing-xl) 0;
}

.hero-background {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 210, 63, 0.1) 0%, transparent 50%);
}

/* Energy Animation Elements */
.energy-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.energy-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    opacity: 0.3;
}

.line-1 {
    top: 30%;
    left: -100%;
    width: 200%;
    animation: slideLine 8s linear infinite;
}

.line-2 {
    top: 70%;
    right: -100%;
    width: 200%;
    animation: slideLine 10s linear infinite reverse;
}

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

.energy-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0.5;
    animation: pulse 2s ease-in-out infinite;
}

.dot-1 { top: 20%; left: 10%; animation-delay: 0s; }
.dot-2 { top: 60%; right: 15%; animation-delay: 0.5s; }
.dot-3 { bottom: 30%; left: 20%; animation-delay: 1s; }

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.5); opacity: 0.8; }
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.hero-content {
    color: white;
}

.hero-badge {
    margin-bottom: var(--spacing-lg);
}

.logo {
    height: 60px;
    width: auto;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
}

.highlight {
    background: var(--gradient-energy);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-lg);
    max-width: 500px;
}

.event-details {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
}

.detail-icon {
    font-size: 1.1rem;
}

.price-box {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-lg);
}

.price-old {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.price-new {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-accent);
}

.price-subtext {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.trust-item {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Hero Media (Video) */
.hero-media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

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

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits {
    padding: var(--spacing-2xl) 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.benefit-card {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--color-light);
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.benefit-card h3 {
    font-size: 1.25rem;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-xs);
}

.benefit-card p {
    color: var(--color-gray);
    font-size: 0.95rem;
}

.benefits-image {
    max-width: 900px;
    margin: var(--spacing-xl) auto 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.benefits-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   JOURNEY SECTION
   ============================================ */
.journey {
    padding: var(--spacing-2xl) 0;
    background: var(--color-light);
}

.timeline {
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
}

.timeline-item {
    display: flex;
    gap: var(--spacing-md);
    padding-bottom: var(--spacing-lg);
    position: relative;
}

.timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 50px;
    bottom: 0;
    width: 2px;
    background: var(--color-gray-light);
}

.timeline-marker {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-secondary);
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50%;
}

.timeline-item-featured .timeline-marker {
    background: var(--gradient-energy);
    font-size: 1.25rem;
}

.timeline-content h3 {
    font-size: 1.15rem;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-xs);
}

.timeline-content p {
    color: var(--color-gray);
    font-size: 0.95rem;
}

.timeline-item-featured .timeline-content h3 {
    color: var(--color-primary);
}

.journey-image {
    max-width: 600px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    padding: var(--spacing-2xl) 0;
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-gray-light);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md) 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-secondary);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-light);
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 400;
    transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--color-primary);
    color: white;
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: var(--spacing-md);
}

.faq-answer p {
    color: var(--color-gray);
    line-height: 1.7;
}

/* ============================================
   PRACTICAL INFO SECTION
   ============================================ */
.practical-info {
    padding: var(--spacing-2xl) 0;
    background: var(--color-light);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.info-card {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.info-icon {
    font-size: 2rem;
    margin-bottom: var(--spacing-xs);
}

.info-card h3 {
    font-size: 1rem;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-xs);
}

.info-card p {
    font-size: 0.95rem;
    color: var(--color-dark);
    margin-bottom: 0.25rem;
}

.info-detail {
    font-size: 0.85rem !important;
    color: var(--color-gray) !important;
}

.price-highlight {
    color: var(--color-primary);
    font-size: 1.25rem;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta {
    padding: var(--spacing-2xl) 0;
    background: var(--gradient-hero);
    color: white;
}

.final-cta-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.paths {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
}

.path {
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
}

.path h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.path ul {
    list-style: none;
}

.path li {
    padding: var(--spacing-xs) 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.path li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.path-no {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.path-no h3 {
    color: rgba(255, 255, 255, 0.6);
}

.path-no li {
    color: rgba(255, 255, 255, 0.5);
}

.path-no li::before {
    background: rgba(255, 255, 255, 0.3);
}

.path-yes {
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid var(--color-primary);
}

.path-yes h3 {
    color: var(--color-accent);
}

.path-yes li {
    color: rgba(255, 255, 255, 0.9);
}

.path-yes li::before {
    background: var(--color-primary);
}

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

.offer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.offer-price {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.offer-old {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.offer-new {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-accent);
}

.offer-main {
    font-size: 1.1rem;
    font-weight: 600;
}

.offer-sub {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.offer-urgency {
    margin-top: var(--spacing-md);
    font-size: 0.95rem;
    color: var(--color-accent);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: var(--spacing-xl) 0;
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.7);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    height: 50px;
    margin: 0 auto var(--spacing-md);
}

.footer p {
    margin-bottom: var(--spacing-xs);
    font-size: 0.9rem;
}

.footer-copy {
    margin-top: var(--spacing-md);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   FLOATING CTA
   ============================================ */
.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-secondary);
    padding: var(--spacing-sm) var(--spacing-md);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.floating-cta.visible {
    transform: translateY(0);
}

.floating-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.floating-cta-text {
    color: white;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.floating-cta-text strong {
    font-size: 1rem;
}

.floating-cta-text span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.cta-floating {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    background: var(--gradient-energy);
    color: white;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease;
}

.cta-floating:hover {
    transform: scale(1.05);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-media {
        order: 2;
        margin-top: var(--spacing-lg);
    }

    .hero-subtitle {
        margin: 0 auto var(--spacing-lg);
    }

    .event-details {
        justify-content: center;
    }

    .price-box {
        flex-direction: column;
        gap: var(--spacing-xs);
    }

    .trust-badges {
        justify-content: center;
    }

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

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

    .event-details {
        flex-direction: column;
        align-items: center;
    }

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

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

    .floating-cta-text strong {
        font-size: 0.9rem;
    }

    .floating-cta-text span {
        font-size: 0.75rem;
    }

    .cta-floating {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}
