/* ===================================
   VARIABLES & RESET
   =================================== */

:root {
    /* Colors */
    --red-dark: #8B0000;
    --red-primary: #A0252A;
    --red-light: #C03234;
    --black: #0D0D0D;
    --black-light: #1A1A1A;
    --gold: #D4AF37;
    --gold-light: #E6C95C;
    --rose-gold: #B76E79;
    --white: #F5F5F5;
    --gray: #CCCCCC;
    --gray-dark: #666666;
    
    /* Gradients */
    --gradient-red: linear-gradient(135deg, var(--red-dark) 0%, var(--red-primary) 100%);
    --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(13, 13, 13, 0.95) 0%, rgba(139, 0, 0, 0.85) 100%);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Fonts */
    --font-primary: 'Montserrat', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* 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-xl: 0 16px 48px rgba(0, 0, 0, 0.25);
    --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.3);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.gold {
    color: var(--gold);
}

/* ===================================
   NAVIGATION
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 2rem 0;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    box-shadow: var(--shadow-md);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-nav-image {
    width: 60px;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
    transition: all var(--transition-normal);
}

.logo-nav-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.5));
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

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

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
    position: relative;
}

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

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

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

.btn-whatsapp-nav {
    background: var(--gradient-gold);
    color: var(--black);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-gold);
}

.btn-whatsapp-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
}

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

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

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(160, 37, 42, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.particles::before,
.particles::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
    box-shadow: 
        0 0 10px var(--gold),
        100px 200px 0 var(--gold),
        -150px 150px 0 var(--rose-gold),
        200px -100px 0 var(--gold),
        -200px -200px 0 var(--rose-gold);
}

.particles::after {
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.3;
    }
    50% {
        transform: translate(100px, -100px);
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 1s ease;
}

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

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: var(--spacing-lg);
    font-weight: 300;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-normal);
    display: inline-block;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--black);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
}

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

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 40px;
    background: var(--gradient-gold);
    margin: 0 auto;
    border-radius: 2px;
}

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

/* ===================================
   SECTIONS GENERAL
   =================================== */

section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto var(--spacing-sm);
    line-height: 1.8;
}

/* ===================================
   EXPERIENCE SECTION
   =================================== */

.experience {
    background: var(--black-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: var(--spacing-lg);
    transition: all var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    color: var(--black);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
}

.feature-description {
    color: var(--gray);
    line-height: 1.8;
}

/* ===================================
   DIFFERENCE SECTION
   =================================== */

.difference {
    background: var(--black);
}

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

.difference-card {
    background: var(--black-light);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    padding: var(--spacing-md);
    transition: all var(--transition-normal);
}

.difference-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.difference-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.gold-gradient {
    background: var(--gradient-gold);
}

.red-gradient {
    background: var(--gradient-red);
}

.difference-icon svg {
    width: 35px;
    height: 35px;
    color: var(--black);
}

.difference-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--gold);
}

.difference-description {
    color: var(--gray);
    line-height: 1.7;
}

/* ===================================
   SPACES SECTION
   =================================== */

.spaces {
    background: var(--black-light);
}

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

.space-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 15px;
    padding: var(--spacing-md);
    text-align: center;
    transition: all var(--transition-normal);
}

.space-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.space-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-sm) auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.space-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--gold);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
    transition: all 0.3s ease;
}

.space-card:hover .space-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
}

.space-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
}

.space-description {
    color: var(--gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===================================
   HOW IT WORKS SECTION
   =================================== */

.how-it-works {
    background: var(--black);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--black-light);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--gold);
    z-index: 10;
}

.step-icon {
    width: 100px;
    height: 100px;
    margin: 30px auto var(--spacing-md);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon svg {
    width: 50px;
    height: 50px;
    color: var(--white);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
}

.step-description {
    color: var(--gray);
    line-height: 1.7;
}

.tech-details {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--white);
    font-size: 0.95rem;
}

.tech-icon {
    font-size: 1.5rem;
}

/* ===================================
   TECHNICAL SPECS SECTION
   =================================== */

.technical-specs {
    background: var(--black-light);
}

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

.specs-column {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 15px;
    padding: var(--spacing-md);
}

.specs-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.specs-list {
    list-style: none;
}

.specs-list li {
    padding: var(--spacing-xs) 0;
    color: var(--gray);
    line-height: 1.8;
}

.specs-list strong {
    color: var(--white);
    font-weight: 600;
}

/* ===================================
   OFFERS SECTION
   =================================== */

.offers {
    background: var(--black);
}

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

.offer-card {
    background: var(--black-light);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: var(--spacing-lg);
    position: relative;
    transition: all var(--transition-normal);
}

.offer-card.featured {
    border-color: var(--gold);
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
}

.offer-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

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

.offer-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--black);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.offer-badge.popular {
    background: var(--gradient-red);
    color: var(--white);
}

.offer-badge.premium {
    background: var(--gradient-gold);
}

.offer-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: var(--spacing-md) 0;
    text-align: center;
    color: var(--white);
}

.offer-price {
    text-align: center;
    margin: var(--spacing-md) 0;
    padding: var(--spacing-md) 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.price-from {
    display: block;
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.price-amount {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-heading);
}

.price-ttc {
    display: block;
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

.price-custom {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
}

.offer-features {
    list-style: none;
    margin: var(--spacing-md) 0;
}

.offer-features li {
    padding: var(--spacing-xs) 0;
    color: var(--gray);
    line-height: 1.8;
}

.btn-offer,
.btn-offer-primary {
    display: block;
    text-align: center;
    margin-top: var(--spacing-md);
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--white);
}

.btn-offer-primary {
    background: var(--gradient-gold);
    color: var(--black);
    border: none;
}

.btn-offer:hover {
    background: var(--gradient-gold);
    color: var(--black);
}

.btn-offer-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.offer-note {
    text-align: center;
    padding: var(--spacing-md);
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    color: var(--gray);
}

.offer-note strong {
    color: var(--gold);
}

/* ===================================
   CONTACT SECTION
   =================================== */

.contact {
    background: var(--black-light);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.contact-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: var(--spacing-md);
}

.contact-item {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 25px;
    height: 25px;
    color: var(--black);
}

.contact-label {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 0.25rem;
}

.contact-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
}

.contact-value:hover {
    color: var(--gold);
}

.contact-cta {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    text-align: center;
}

.contact-cta p {
    color: var(--gray);
    margin-bottom: var(--spacing-sm);
}

.btn-whatsapp-large {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--black);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-gold);
}

.btn-whatsapp-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
}

/* ===================================
   CONTACT FORM
   =================================== */

.contact-form-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: var(--spacing-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--gray);
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 1rem;
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    cursor: pointer;
    color: var(--gray);
}

.checkbox-label input {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.btn-submit {
    background: var(--gradient-gold);
    color: var(--black);
    font-size: 1.1rem;
    margin-top: var(--spacing-sm);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: var(--black);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-tagline {
    color: var(--gray);
    font-style: italic;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.footer-column h4 {
    color: var(--gold);
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
}

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

.footer-column ul li {
    margin-bottom: var(--spacing-xs);
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--gray);
    font-size: 0.9rem;
}

/* ===================================
   WHATSAPP FLOATING BUTTON
   =================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition-normal);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    color: white;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6);
    }
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(13, 13, 13, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 5rem 2rem;
        transition: right var(--transition-normal);
        align-items: flex-start;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    /* Hero sections optimisées pour mobile */
    .hero, .roi-hero {
        min-height: 60vh;
        padding: 6rem 0 4rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Boutons CTA optimisés pour tactile */
    .btn, .btn-primary, .btn-secondary {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-height: 48px;
    }
    
    .simulator-cta .btn {
        width: 100%;
        text-align: center;
    }
    
    /* Curseurs du simulateur agrandis */
    input[type="range"] {
        height: 12px;
    }
    
    input[type="range"]::-webkit-slider-thumb {
        width: 28px;
        height: 28px;
    }
    
    input[type="range"]::-moz-range-thumb {
        width: 28px;
        height: 28px;
    }
    
    .input-group {
        margin-bottom: 2rem;
    }
    
    /* Résultats du simulateur optimisés */
    .result-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .result-value {
        font-size: 1.8rem !important;
    }
    
    .cost-breakdown {
        padding: 1rem;
    }
    
    .cost-item {
        font-size: 0.95rem;
        padding: 0.75rem 0;
    }
    
    /* Espacements optimisés */
    section {
        padding: 4rem 0;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid,
    .difference-grid,
    .spaces-grid,
    .steps-container,
    .specs-grid,
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-card.featured {
        transform: scale(1);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    /* Navbar optimisée pour petit mobile */
    .navbar {
        padding: 1.5rem 0;
    }
    
    .logo-nav-image {
        width: 50px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    /* Hero encore plus compact */
    .hero, .roi-hero {
        min-height: 50vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    /* Espacements réduits */
    section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    /* Simulateur optimisé */
    .simulator-subtitle {
        font-size: 1.4rem;
    }
    
    .input-value {
        min-width: 50px;
        font-size: 1rem;
        padding: 0.3rem 0.6rem;
    }
    
    /* Coûts détaillés simplifiés */
    .cost-breakdown h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .cost-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .cost-item span:first-child {
        font-weight: 600;
    }
}
    
    .contact-content {
        min-width: unset;
    }
}

/* ===================================
   PAGE DISTRIBUTEUR
   =================================== */

.distributeur-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--gradient-hero);
    margin-top: 80px;
}

.distributeur-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

.distributeur-showcase {
    padding: var(--spacing-xl) 0;
    background: var(--black);
}

.distributeur-image-container {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.distributeur-image-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-gold);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.5;
}

.distributeur-main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-slow);
}

.distributeur-main-image:hover {
    transform: scale(1.02);
}

.personnalisation {
    padding: var(--spacing-xl) 0;
    background: var(--black-light);
}

.personnalisation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.perso-card {
    background: var(--black);
    padding: var(--spacing-md);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all var(--transition-normal);
    text-align: center;
}

.perso-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.perso-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
}

.perso-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--white);
}

.perso-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--gold);
}

.perso-description {
    color: var(--gray);
    line-height: 1.8;
}

.cta-section {
    padding: var(--spacing-xl) 0;
    background: var(--gradient-hero);
    text-align: center;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
}

.cta-description {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: var(--spacing-md);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Distributeur CTA Section */
.distributeur-cta {
    padding: var(--spacing-xl) 0;
    background: var(--black-light);
}

.cta-button-center {
    display: flex;
    justify-content: center;
    margin-top: var(--spacing-md);
}

/* ===================================
   RESPONSIVE - DISTRIBUTEUR
   =================================== */

@media (max-width: 768px) {
    .logo-nav-image {
        width: 28px;
    }
    
    .personnalisation-grid {
        grid-template-columns: 1fr;
    }
    
    .distributeur-hero {
        min-height: 50vh;
        margin-top: 70px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}


/* ===================================
   PAGE BLOG DISTRIBUTEUR PARFUM
   =================================== */

.blog-header {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--gradient-hero);
    margin-top: 80px;
    padding: var(--spacing-xl) 0;
}

.blog-header-content {
    text-align: center;
    z-index: 2;
    max-width: 900px;
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

.blog-meta {
    font-size: 1rem;
    color: var(--gray);
    margin-top: var(--spacing-md);
}

.blog-content {
    background: var(--black-light);
    padding: var(--spacing-xl) 0;
}

.blog-article {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.article-section {
    margin-bottom: var(--spacing-lg);
}

.article-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--gold);
}

.article-section h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    color: var(--white);
}

.article-section h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    color: var(--gold-light);
}

.article-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
    color: var(--gray);
}

.article-list {
    margin-left: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.article-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-xs);
    color: var(--gray);
}

.article-list strong {
    color: var(--gold);
}

.testimonial-box {
    background: var(--black);
    border-left: 4px solid var(--gold);
    padding: var(--spacing-md);
    margin: var(--spacing-md) 0;
    border-radius: 8px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

.testimonial-author {
    text-align: right;
    color: var(--gold);
    font-weight: 600;
}

.comparison-table {
    overflow-x: auto;
    margin: var(--spacing-md) 0;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--black);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table th {
    background: var(--gradient-gold);
    color: var(--black);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--gray-dark);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.faq-item {
    background: var(--black);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    border-radius: 8px;
    border-left: 4px solid var(--gold);
}

.faq-item h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
}

.faq-item p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-cta {
    background: var(--gradient-red);
    padding: var(--spacing-lg);
    border-radius: 12px;
    text-align: center;
    margin-top: var(--spacing-lg);
}

.article-cta h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.article-cta p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
}

/* ===================================
   PAGE ROI & PERFORMANCE
   =================================== */

.roi-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--gradient-hero);
    margin-top: 80px;
    padding: var(--spacing-xl) 0;
}

.roi-hero-content {
    text-align: center;
    z-index: 2;
}

.simulator-section {
    padding: var(--spacing-xl) 0;
    background: var(--black-light);
}

.simulator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    background: var(--black);
    padding: var(--spacing-lg);
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
}

.simulator-inputs {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.simulator-subtitle {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: var(--spacing-sm);
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.input-group label {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 500;
}

.input-with-value {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.input-with-value input[type="range"] {
    flex: 1;
    height: 8px;
    border-radius: 8px;
    background: var(--gray-dark);
    outline: none;
    -webkit-appearance: none;
}

.input-with-value input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gradient-gold);
    cursor: pointer;
    box-shadow: var(--shadow-gold);
    transition: all var(--transition-fast);
}

.input-with-value input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.input-with-value input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gradient-gold);
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-gold);
    transition: all var(--transition-fast);
}

.input-with-value input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.2);
}

.input-value {
    min-width: 60px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold);
    background: var(--black-light);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.simulator-results {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.results-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.result-card {
    background: var(--black-light);
    padding: var(--spacing-md);
    border-radius: 12px;
    border-left: 4px solid var(--gray-dark);
    transition: all var(--transition-normal);
}

.result-card.highlight {
    border-left-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.result-card.profit {
    border-left-color: #4CAF50;
    background: rgba(76, 175, 80, 0.1);
}

.result-card.roi {
    border-left-color: var(--rose-gold);
    background: rgba(183, 110, 121, 0.1);
}

.result-card.margin {
    border-left-color: #2196F3;
    background: rgba(33, 150, 243, 0.1);
}

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

.result-label {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.result-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-heading);
    transition: all var(--transition-normal);
}

.cost-breakdown {
    background: var(--black-light);
    padding: var(--spacing-md);
    border-radius: 12px;
    margin: var(--spacing-sm) 0;
}

.cost-breakdown h4 {
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-dark);
    font-size: 0.95rem;
}

.cost-item:last-child {
    border-bottom: none;
}

.cost-item.total {
    margin-top: var(--spacing-xs);
    padding-top: var(--spacing-sm);
    border-top: 2px solid var(--gold);
    font-size: 1.1rem;
}

.simulator-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: var(--gradient-red);
    border-radius: 12px;
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

.guaranteed-roi {
    padding: var(--spacing-xl) 0;
    background: var(--black);
}

.roi-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.roi-card {
    background: var(--black-light);
    padding: var(--spacing-lg);
    border-radius: 12px;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.roi-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.roi-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.roi-icon svg {
    width: 30px;
    height: 30px;
    color: var(--black);
}

.roi-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: var(--spacing-sm);
    color: var(--gold);
}

.roi-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray);
}

.roi-description strong {
    color: var(--white);
    font-weight: 600;
}

.market-opportunity {
    padding: var(--spacing-xl) 0;
    background: var(--black-light);
}

.market-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.market-text h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold);
    margin: var(--spacing-md) 0 var(--spacing-sm) 0;
}

.market-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: var(--spacing-sm);
}

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

.market-icon svg {
    stroke: var(--gold);
}

.market-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.stat-card {
    background: var(--black);
    padding: var(--spacing-md);
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--gray-dark);
    transition: all var(--transition-normal);
}

.stat-card.highlight {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.stat-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 1rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.affiliation-program {
    padding: var(--spacing-xl) 0;
    background: var(--black);
}

.affiliation-content {
    margin-top: var(--spacing-lg);
}

.affiliation-card {
    background: var(--gradient-red);
    padding: var(--spacing-lg);
    border-radius: 12px;
    margin-bottom: var(--spacing-lg);
}

.affiliation-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.affiliation-card p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.affiliation-benefits {
    background: var(--black-light);
    padding: var(--spacing-lg);
    border-radius: 12px;
    margin-bottom: var(--spacing-lg);
}

.affiliation-benefits h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.benefits-list li {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefits-list strong {
    color: var(--gold);
    display: block;
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
}

.benefits-list p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
}

.affiliation-cta {
    background: var(--black-light);
    padding: var(--spacing-lg);
    border-radius: 12px;
    text-align: center;
}

.affiliation-cta h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: var(--spacing-sm);
}

.affiliation-cta p {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
}

.testimonials-roi {
    padding: var(--spacing-xl) 0;
    background: var(--black-light);
}

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

.testimonial-card {
    background: var(--black);
    padding: var(--spacing-lg);
    border-radius: 12px;
    border-left: 4px solid var(--gold);
    transition: all var(--transition-normal);
}

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

.testimonial-stars {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--gold);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: var(--spacing-md);
    color: var(--gray);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: var(--spacing-md);
}

.testimonial-author strong {
    color: var(--gold);
    font-size: 1.1rem;
}

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

.testimonial-results {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.result-badge {
    background: var(--gradient-gold);
    color: var(--black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.final-cta {
    padding: var(--spacing-xl) 0;
    background: var(--gradient-hero);
}

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

.cta-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.cta-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    color: var(--gray);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   RESPONSIVE - ROI & BLOG
   =================================== */

@media (max-width: 1024px) {
    .simulator-container {
        grid-template-columns: 1fr;
    }
    
    .market-content {
        grid-template-columns: 1fr;
    }
    
    .market-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-title {
        font-size: 2.5rem;
    }
    
    .roi-hero {
        min-height: 60vh;
    }
    
    .simulator-container {
        padding: var(--spacing-md);
    }
    
    .result-value {
        font-size: 1.8rem;
    }
    
    .roi-features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .market-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .article-section h2 {
        font-size: 2rem;
    }
    
    .article-section h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .blog-title {
        font-size: 2rem;
    }
    
    .roi-hero {
        min-height: 50vh;
    }
    
    .simulator-subtitle {
        font-size: 1.4rem;
    }
    
    .input-value {
        min-width: 50px;
        font-size: 1rem;
        padding: 0.3rem 0.6rem;
    }
    
    .result-value {
        font-size: 1.6rem !important;
    }
    
    .result-label {
        font-size: 0.9rem;
    }
}

/* ===================================
   PAGES LÉGALES
   =================================== */

.legal-header {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--gradient-hero);
    margin-top: 80px;
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.legal-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

.legal-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-top: var(--spacing-sm);
}

.legal-content {
    background: var(--black-light);
    padding: var(--spacing-xl) 0;
}

.legal-article {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.legal-intro {
    background: var(--black);
    padding: var(--spacing-lg);
    border-left: 4px solid var(--gold);
    border-radius: 8px;
    margin-bottom: var(--spacing-lg);
}

.legal-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: var(--spacing-sm);
}

.legal-intro p:last-child {
    margin-bottom: 0;
}

.legal-section {
    background: var(--black);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    border-radius: 8px;
}

.legal-section h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: var(--spacing-md);
}

.legal-section h3 {
    font-size: 1.3rem;
    color: var(--gold-light);
    margin: var(--spacing-md) 0 var(--spacing-sm) 0;
}

.legal-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: var(--spacing-sm);
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.legal-section a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

.legal-list {
    list-style: none;
    padding-left: 0;
    margin: var(--spacing-md) 0;
}

.legal-list li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray);
}

.legal-list li:before {
    content: "●";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.legal-list li strong {
    color: var(--white);
}

.legal-note {
    background: rgba(212, 175, 55, 0.1);
    border-left: 3px solid var(--gold);
    padding: var(--spacing-sm) var(--spacing-md);
    margin: var(--spacing-md) 0;
    border-radius: 4px;
    font-style: italic;
}

.legal-footer {
    text-align: center;
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--gray-dark);
    color: var(--gray);
    font-style: italic;
}

@media (max-width: 768px) {
    .legal-header {
        min-height: 40vh;
    }
    
    .legal-title {
        font-size: 2rem;
    }
    
    .legal-subtitle {
        font-size: 1rem;
    }
    
    .legal-section {
        padding: var(--spacing-md);
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
}

/* ===================================
   EMAIL POPUP
   =================================== */

/* ========================================
   PRICING SECTION
   ======================================== */

.pricing {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card.premium {
    border: 2px solid rgba(212, 175, 55, 0.4);
    background: linear-gradient(145deg, rgba(25, 25, 25, 0.95) 0%, rgba(15, 15, 15, 0.98) 100%);
}

.pricing-card.premium::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(212, 175, 55, 0.3) 0%, 
        rgba(255, 215, 0, 0.3) 25%,
        rgba(212, 175, 55, 0.3) 50%,
        rgba(255, 215, 0, 0.3) 75%,
        rgba(212, 175, 55, 0.3) 100%
    );
    border-radius: 20px;
    z-index: -1;
    background-size: 300% 300%;
    animation: borderGlow 3s ease infinite;
}

@keyframes borderGlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.pricing-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pricing-badge.populaire {
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
}

.pricing-badge.premium {
    background: var(--gradient-gold);
    color: var(--black);
    box-shadow: var(--shadow-gold);
}

.pricing-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 2rem;
    font-weight: 700;
}

.pricing-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    margin-bottom: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.price-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.price-period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.btn-pricing {
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    text-decoration: none;
}

.pricing-card:not(.premium) .btn-pricing {
    background: var(--gradient-gold);
    color: var(--black);
    box-shadow: var(--shadow-gold);
}

.pricing-card:not(.premium) .btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
}

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

.pricing-card.premium .btn-pricing:hover {
    background: var(--gradient-gold);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* Responsive Pricing */
@media (max-width: 968px) {
    .pricing {
        padding: 6rem 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .pricing-card {
        padding: 2.5rem 2rem;
    }

    .pricing-title {
        font-size: 1.75rem;
    }

    .price-amount {
        font-size: 3rem;
    }

    .pricing-badge {
        top: 1rem;
        right: 1rem;
        padding: 0.4rem 1.2rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .pricing {
        padding: 4rem 0;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .pricing-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .pricing-features li {
        font-size: 0.95rem;
        gap: 0.75rem;
    }

    .btn-pricing {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* ========================================
   BOUTON VOIR LES RÉSULTATS (ROI PAGE)
   ======================================== */

.results-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.results-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--white);
    font-weight: 700;
    text-align: center;
}

.btn-show-results {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--gradient-gold);
    color: var(--black);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-primary);
}

.btn-show-results svg {
    width: 20px;
    height: 20px;
    stroke: var(--black);
}

.btn-show-results:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.6);
}

.btn-show-results:active {
    transform: translateY(-1px);
}

/* Animation pulse pour attirer l'attention */
@keyframes pulse-gold {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 12px 40px rgba(212, 175, 55, 0.7);
    }
}

.btn-show-results {
    animation: pulse-gold 2s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .results-header {
        gap: 1rem;
    }
    
    .results-title {
        font-size: 1.5rem;
    }
    
    .btn-show-results {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
}
