:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #d4af37;
    --accent-light: #f1c40f;
    --zen-teal: #16a085;
    --zen-teal-light: #1abc9c;
    --text-light: #f8f9fa;
    --text-dark: #2d3436;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-dark: rgba(0, 0, 0, 0.6);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Top Navigation Fixe */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10005;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.urgency-banner {
    background: linear-gradient(90deg, #990000, #c0392b);
    color: white;
    text-align: center;
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.progress-container {
    width: 100%;
    height: 6px;
    background: transparent;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(to right, var(--accent), var(--accent-light));
    width: 0%;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    transition: width 0.1s ease-out;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.8; /* Légère augmentation pour la lisibilité */
    color: var(--text-dark);
    background-color: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

p {
    margin-bottom: 1.5rem;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.container {
    max-width: 1000px; /* Légèrement plus serré pour une meilleure lecture sur desktop */
    margin: 0 auto;
    padding: 0 2.5rem;
}

/* Glassmorphism */
.glass {
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-dark {
    background: var(--glass-dark);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Hero Section */
/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: bottom 0.5s ease;
    border-top: 2px solid var(--accent);
}

.sticky-cta.active {
    bottom: 0;
}

.sticky-cta p {
    color: white;
    margin: 0;
    font-weight: 600;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 2rem auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fff;
    transition: background 0.3s;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--primary);
}

.faq-question i {
    transition: transform 0.3s;
    color: var(--accent);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s;
    background: #fafafa;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem 2rem;
    border-top: 1px solid #eee;
}

/* Trust Badges */
.trust-badges-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.trust-badge-item {
    text-align: center;
    color: #666;
    font-size: 0.85rem;
}

.trust-badge-item i {
    display: block;
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

/* Offset for content to not be hidden by fixed banners */
body {
    padding-top: 0;
}

.urgency-banner span {
    color: var(--accent-light);
}

@media (max-width: 768px) {
    .urgency-banner {
        font-size: 0.8rem;
        padding: 0.6rem 0.5rem;
    }
    .hero {
        padding-top: 7rem; /* Un peu moins de padding pour laisser plus de place au contenu */
    }
    .sticky-cta {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.8rem;
    }
    .sticky-cta p { display: none; }
    .trust-badges-row { gap: 1.5rem; }
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-align: center;
    background: url('hero_bg.png') no-repeat center center/cover;
    padding-top: 8rem;
    padding-bottom: 10rem;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 26, 46, 0.4), rgba(26, 26, 46, 0.9));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-subtitle {
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    margin-bottom: 2rem;
    color: var(--accent);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.typewriter {
    color: var(--accent-light);
    text-shadow: 0 0 15px rgba(241, 196, 15, 0.5);
}

/* Multi-step Typing Simulation classes */
.typing-cursor::after {
    content: '|';
    animation: blink 1s infinite;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--accent), #b8860b);
    color: var(--text-light);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.1);
    transform: rotate(45deg);
    transition: var(--transition);
    opacity: 0;
}

.cta-button:hover::after {
    left: 100%;
    opacity: 1;
    transition: 0.6s;
}

/* Section Styling */
section {
    padding: 140px 0; /* Plus d'air entre les sections */
}

.accent-section {
    background: var(--primary);
    color: var(--text-light);
}

.zen-section {
    background: #ffffff;
}

/* Styled Lists */
.benefit-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    padding: 2rem;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 2rem;
    color: var(--zen-teal);
    flex-shrink: 0;
}

/* Storytelling Reveal */
.story-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 8rem;
}

.story-block.reverse {
    direction: rtl;
}

.story-block.reverse .story-text {
    direction: ltr;
}

.story-image {
    width: 100%;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.story-block:hover .story-image img {
    transform: scale(1.05);
}

/* Pricing Card */
.pricing-card {
    max-width: 600px;
    margin: 4rem auto;
    padding: 4rem;
    border-radius: 40px;
    text-align: center;
    background: white;
    position: relative;
    box-shadow: 0 30px 100px rgba(0,0,0,0.1);
    border: 2px solid var(--accent);
}

.price {
    font-size: 5rem;
    font-weight: 800;
    color: var(--primary);
    margin: 1rem 0;
}

.price span {
    font-size: 1.5rem;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blink {
    50% { opacity: 0; }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: transform 1s, opacity 1s;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    .story-block {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 4rem;
    }
    
    .story-image {
        height: 350px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .pricing-card {
        padding: 2.5rem 1.5rem;
    }

    .benefit-list {
        gap: 1.5rem;
    }

    .benefit-item {
        padding: 1.5rem;
    }
}
