/* ==========================================================================
   CSS Variables & Resets
   ========================================================================== */
:root {
    --primary-color: #ff6b00; /* Lumière Orange */
    --primary-hover: #e05e00;
    --dark: #1a1a2e;
    --text: #4a4a4a;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.2);
    --font-main: 'Outfit', sans-serif;
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: var(--font-main);
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* ==========================================================================
   Layout & Container
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light-bg);
}

.bg-white {
    background-color: var(--white);
}

.bg-light-orange {
    background-color: rgba(255, 107, 0, 0.03); /* Very subtle orange tint */
}

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

.text-light {
    color: var(--white);
}

.text-light h1, .text-light p {
    color: var(--white);
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4 {
    color: var(--dark);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
    letter-spacing: -1px;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

h3 {
    font-size: 1.5rem;
}

p {
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text);
    margin-top: -30px;
    margin-bottom: 40px;
}

/* ==========================================================================
   Buttons & Badges
   ========================================================================== */
.btn-primary, .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    gap: 10px;
    width: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
    color: var(--white);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.badge {
    display: inline-block;
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-dark {
    background: rgba(26, 26, 46, 0.1);
    color: var(--dark);
}

.badge-orange {
    background: var(--primary-color);
    color: var(--white);
}

/* ==========================================================================
   Hero Section (2 Columns)
   ========================================================================== */
.hero {
    position: relative;
    padding: 100px 0 80px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('../assets/images/bg-hero.png') center/cover no-repeat;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.75); /* Dark overlay */
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
    max-width: 500px;
}

.hero-video-box {
    flex: 1;
    max-width: 600px;
    width: 100%;
}

.video-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    background: #000;
}

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

.hero-logo-white {
    max-width: 200px;
    margin-bottom: 30px;
    filter: brightness(0) invert(1);
}

.hero-text h1 {
    font-size: 2.2rem;
    margin-top: 15px;
}
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero .btn-primary {
    max-width: 350px;
}

/* ==========================================================================
   Showcase Video Section (Shorts)
   ========================================================================== */
.shorts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.short-wrapper {
    position: relative;
    padding-bottom: 177.77%; /* 9:16 aspect ratio for shorts */
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    background: #000;
}

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

/* ==========================================================================
   Pain Section
   ========================================================================== */
.pain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pain-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    padding: 24px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-card i {
    font-size: 2rem;
    color: var(--primary-color);
    background: rgba(255, 107, 0, 0.1);
    padding: 15px;
    border-radius: 12px;
}

.feature-card h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.feature-card p {
    margin-bottom: 0;
    font-size: 1rem;
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    position: relative;
    transition: var(--transition);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

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

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.card-header h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.duration {
    color: var(--text);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.price {
    margin: 30px 0;
    color: var(--dark);
    font-weight: 700;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.price .currency {
    font-size: 1.2rem;
    margin-top: 10px;
    margin-right: 5px;
}

.price {
    font-size: 3.5rem;
    line-height: 1;
}

.price .cents {
    font-size: 1.2rem;
    margin-top: 10px;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list i {
    color: var(--primary-color);
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */
.reviews-section {
    background: url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    position: relative;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(26, 26, 46, 0.85); /* Dark overlay */
}

.reviews-section .container {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.reviews-section h2 {
    color: var(--white);
}

.google-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}

.rating-score {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

.google-rating .stars {
    color: #fbbc05;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.rating-text {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.google-link {
    background: var(--white);
    color: var(--dark);
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: 600;
    transition: var(--transition);
}

.google-link:hover {
    background: #f1f1f1;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.review-card {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: left;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.review-header h4 {
    color: var(--white);
    margin-bottom: 5px;
}

.review-card .stars {
    color: #fbbc05;
    font-size: 0.9rem;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-main);
}

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

.faq-question.active i {
    transform: rotate(180deg);
}

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

.faq-answer p {
    padding-bottom: 20px;
    margin: 0;
}

/* ==========================================================================
   Professional Section
   ========================================================================== */
.professional-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
    background: var(--light-bg);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.professional-image {
    position: relative;
}

.professional-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    width: 100%;
    object-fit: cover;
}

.professional-text h2 {
    text-align: left;
    margin-bottom: 10px;
}

.professional-text .intro {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-style: italic;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand img {
    max-width: 180px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1); /* Make logo white if it's black */
}

.footer-brand p {
    color: #a0a0a0;
    max-width: 300px;
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

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

.social-links a:hover {
    background: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #a0a0a0;
    font-size: 0.9rem;
}

/* ==========================================================================
   Floating WhatsApp
   ========================================================================== */
.float-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.float-whatsapp:hover {
    transform: scale(1.1);
    color: #FFF;
}

/* ==========================================================================
   Mobile Optimization (Media Queries)
   ========================================================================== */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 40px auto 0;
    }
    .pricing-card.popular {
        transform: scale(1);
    }
    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
    .pain-grid, .reviews-grid, .professional-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    .hero {
        text-align: center;
        padding-top: 80px;
    }
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .shorts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero .btn-primary {
        max-width: 100%;
        padding: 14px 24px;
        font-size: 1rem;
    }
    .section {
        padding: 60px 0;
    }
    .pain-features {
        gap: 15px;
    }
    .feature-card {
        padding: 20px;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-brand p {
        margin: 0 auto;
    }
    .float-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
}

/* ==========================================================================
   Scroll Animations
   ========================================================================== */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: opacity, transform;
}

.animate-up {
    transform: translateY(40px);
}

.animate-fade {
    transform: translateY(0);
}

.animate-left {
    transform: translateX(-40px);
}

.animate-right {
    transform: translateX(40px);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Staggered delays for children */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
