/* Reset & Base */
:root {
    --primary-color: #ff6b00;
    --primary-hover: #e65c00;
    --primary-light: rgba(255, 107, 0, 0.15);
    --bg-dark: #050505;
    --bg-card: #0f0f0f;
    --bg-card-hover: #161616;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --border-color: #2a2a2a;
    --success-color: #00c853;
    --danger-color: #ff1744;
    
    --font-heading: 'Satoshi', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --radius: 6px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.text-orange { color: var(--primary-color); }
.text-green { color: var(--success-color); }
.text-red { color: var(--danger-color); }

.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #ff6b00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition);
    gap: 10px;
    border: none;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 10px 20px -5px rgba(255, 107, 0, 0.3);
}

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

.btn-glow {
    animation: glow 3s infinite;
}

@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(255, 107, 0, 0.5); }
    50% { box-shadow: 0 0 20px rgba(255, 107, 0, 0.8), 0 0 10px rgba(255, 107, 0, 0.5); }
    100% { box-shadow: 0 0 5px rgba(255, 107, 0, 0.5); }
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    border-color: var(--text-white);
    background-color: rgba(255, 255, 255, 0.1);
}

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

.btn-outline-white {
    border: 1px solid white;
    color: white;
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
}

.full-width { width: 100%; }

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 15px 0;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a:not(.btn) {
    font-size: 0.95rem;
    color: var(--text-gray);
    font-weight: 500;
}

.nav-links a:not(.btn):hover {
    color: var(--text-white);
}

/* Burger Menu */
.burger {
    display: none;
    cursor: pointer;
}

.line1, .line2, .line3 {
    width: 25px;
    height: 2px;
    background-color: white;
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 0 100px;
    text-align: center;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 0, 0.05) 0%, transparent 40%);
    z-index: -2;
    animation: rotateBg 60s linear infinite;
}

@keyframes rotateBg {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

.badge-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-white);
    margin-bottom: 30px;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 650px;
    margin: 0 auto 40px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.trust-indicators {
    display: flex;
    gap: 20px;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 60px;
}

.trust-indicators i {
    margin-right: 5px;
}

/* Enhanced Mockup with Video */
.hero-visual {
    margin-top: 20px;
    perspective: 1200px;
}

.browser-mockup {
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    max-width: 900px;
    margin: 0 auto;
    transform: rotateX(10deg);
    transition: transform 0.6s ease;
    overflow: hidden;
}

.video-glow {
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 
                0 0 0 1px rgba(255, 107, 0, 0.15),
                0 0 40px rgba(255, 107, 0, 0.1);
    animation: videoPulse 4s infinite alternate;
}

@keyframes videoPulse {
    0% { box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 107, 0, 0.15), 0 0 40px rgba(255, 107, 0, 0.1); }
    100% { box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 107, 0, 0.3), 0 0 60px rgba(255, 107, 0, 0.2); }
}

.hero-visual:hover .browser-mockup {
    transform: rotateX(0deg) scale(1.02);
}

.mockup-header {
    background: #1a1a1a;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #2a2a2a;
    position: relative;
    z-index: 2;
}

.mockup-dots {
    display: flex;
    gap: 6px;
    margin-right: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #444;
}

.mockup-url {
    background: #000;
    color: #666;
    padding: 4px 15px;
    border-radius: 4px;
    font-size: 0.8rem;
    flex: 1;
    text-align: center;
    font-family: monospace;
}

/* Video Wrapper */
.mockup-body.video-wrapper {
    padding: 0;
    background: black;
    min-height: auto;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* On enlève le fond sombre par défaut pour ne pas cacher la video */
    background: rgba(0,0,0,0);
    display: flex;
    align-items: center;
    justify-content: center;
    /* On rend l'overlay visible par défaut (pour que le bouton soit visible) */
    opacity: 1;
    transition: background 0.3s;
    pointer-events: none;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 107, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.5);
    /* Animation de pulsation par défaut */
    animation: playPulse 2s infinite;
    transition: transform 0.3s, background 0.3s;
}

@keyframes playPulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7); transform: scale(0.95); }
    70% { box-shadow: 0 0 0 20px rgba(255, 107, 0, 0); transform: scale(1); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); transform: scale(0.95); }
}

.video-wrapper:hover .video-overlay {
    /* Au survol, on ajoute un léger fond sombre pour détacher le bouton */
    background: rgba(0,0,0,0.3);
}

.video-wrapper:hover .play-button {
    transform: scale(1.1);
    animation: none; /* Arrête la pulsation au survol */
    background: rgba(255, 107, 0, 1);
}

/* Brands Ticker */
.brands-ticker {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 30px 0;
    background: #0a0a0a;
}

.brands-ticker p {
    text-align: center;
    color: #555;
    font-size: 0.85rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brands-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    opacity: 0.7;
}

.brand-item {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Stats Section */
.stats {
    padding: 100px 0;
    background: transparent;
}

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

.stat-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

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

.icon-box {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.stat-card h3 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: white;
}

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

/* Comparison Section */
.comparison {
    padding: 100px 0;
    background: #080808;
    position: relative;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-col {
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    position: relative;
    height: 100%;
}

.comparison-col.manual {
    border-color: rgba(255, 23, 68, 0.2);
}

.comparison-col.pro {
    border-color: var(--primary-color);
    background: linear-gradient(to bottom, rgba(255, 107, 0, 0.05), var(--bg-card));
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    z-index: 2;
}

.pro-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
}

.col-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.col-header h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.manual .col-header i { color: var(--danger-color); }
.pro .col-header i { color: var(--success-color); }

.comparison-col ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 0.95rem;
    color: #ccc;
}

.manual ul li i { color: var(--danger-color); margin-top: 5px; min-width: 15px; }
.pro ul li i { color: var(--success-color); margin-top: 5px; min-width: 15px; }

/* Features */
.features {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-header h2 { font-size: 3rem; margin-bottom: 20px; }
.section-header p { color: var(--text-gray); font-size: 1.2rem; }

.feature-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
}

.feature-row.reverse { flex-direction: row-reverse; }

.feature-text { flex: 1; }

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-card-hover);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.feature-text h3 { font-size: 2.2rem; margin-bottom: 20px; }
.feature-text p { color: var(--text-gray); font-size: 1.1rem; line-height: 1.7; }

.feature-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.feature-img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-img:hover {
    transform: scale(1.02);
}

.abstract-visual {
    width: 100%;
    max-width: 500px;
    height: 350px;
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.big-icon {
    font-size: 5rem;
    background: linear-gradient(to bottom right, #333, #111);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Security Section */
.security-section {
    padding: 100px 0;
    background: #080808;
    border-top: 1px solid var(--border-color);
}

.security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.security-list {
    margin-top: 40px;
}

.security-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.security-list li i {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-top: 5px;
}

.security-list h4 { margin-bottom: 5px; color: var(--text-white); font-size: 1.1rem; }
.security-list p { color: var(--text-gray); font-size: 0.95rem; }

.security-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    position: relative;
}

.big-shield {
    font-size: 10rem;
    color: var(--bg-card-hover);
    z-index: 2;
}

.shield-pulse {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
    animation: pulse 4s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.1; }
    50% { transform: scale(1.2); opacity: 0.2; }
    100% { transform: scale(0.8); opacity: 0.1; }
}

/* Steps (How it works) */
.how-it-works {
    padding: 120px 0;
    background: var(--bg-dark);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

@media (max-width: 1200px) {
    .steps-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding-bottom: 15px;
        -webkit-overflow-scrolling: touch;
    }
    .steps-grid::-webkit-scrollbar {
        height: 6px;
    }
    .steps-grid::-webkit-scrollbar-track {
        background: var(--bg-card);
        border-radius: 3px;
    }
    .steps-grid::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 3px;
    }
}

.step-card {
    background: var(--bg-card);
    padding: 25px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition);
    height: 100%;
    min-width: 200px;
    scroll-snap-align: start;
}

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

.step-number {
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    font-family: var(--font-heading);
}

.step-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.step-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

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

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
}

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

.testimonial-card {
    background: #0a0a0a;
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    height: 100%;
}

.stars {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.quote {
    font-size: 1.1rem;
    color: var(--text-white);
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.6;
}

.author-info h5 { margin-bottom: 0; font-size: 1rem; }
.author-info span { color: var(--text-gray); font-size: 0.85rem; }

/* Pricing */
.pricing {
    padding: 120px 0;
    background: var(--bg-dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 0, 0.3);
}

/* Featured Card (Populaire) */
.pricing-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(to bottom, rgba(255, 107, 0, 0.08), var(--bg-card));
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 107, 0, 0.1);
    z-index: 2;
}

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

/* Best Offer Card */
.pricing-card.best-offer {
    border-color: var(--success-color);
    background: linear-gradient(to bottom, rgba(0, 200, 83, 0.05), var(--bg-card));
}

.pricing-card.best-offer:hover {
    border-color: var(--success-color);
}

/* Badges */
.popular-badge,
.best-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.best-badge {
    background: var(--success-color);
    color: white;
}

.pricing-header h3 { 
    font-size: 1.5rem; 
    margin-bottom: 8px; 
}

.pricing-header p { 
    color: var(--text-gray); 
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.price { 
    margin-bottom: 15px; 
}

.amount {
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--text-white);
}

.pricing-card.featured .amount {
    color: var(--primary-color);
}

.pricing-card.best-offer .amount {
    color: var(--success-color);
}

.period { 
    font-size: 1rem; 
    color: var(--text-gray); 
}

/* Price Savings (pour offre annuelle) */
.price-savings {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.monthly-equivalent {
    color: var(--success-color);
    font-size: 0.85rem;
    font-weight: 600;
}

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

.pricing-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-white);
    font-size: 0.95rem;
}

.pricing-features li.feature-disabled {
    color: var(--text-gray);
    opacity: 0.6;
}

.pricing-features li.feature-disabled i {
    color: var(--text-gray);
}

.pricing-features i { 
    color: var(--primary-color); 
    min-width: 16px;
}

.pricing-footer {
    margin-top: auto;
}

/* Stripe Assurance Global */
.stripe-assurance-global {
    margin-top: 60px;
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.stripe-assurance-global .stripe-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #635bff;
    font-weight: bold;
    font-size: 1rem;
}

.stripe-assurance-global .stripe-badge i {
    color: #635bff;
}

.stripe-assurance-global .stripe-badge span {
    color: white;
    font-size: 0.85rem;
}

.stripe-assurance-global .stripe-benefits {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.stripe-assurance-global .stripe-benefits li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 0.85rem;
}

.stripe-assurance-global .stripe-benefits li i {
    color: var(--success-color);
    font-size: 0.8rem;
}

/* Stripe Assurance */
.stripe-assurance {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: left;
}

.stripe-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #635bff; /* Stripe color */
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 1.1rem;
}

.stripe-badge i {
    color: #635bff;
}

.stripe-badge span {
    color: white;
    font-size: 0.9rem;
}

.stripe-benefits {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.stripe-benefits li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.stripe-benefits li i {
    color: var(--success-color);
    font-size: 0.8rem;
}

.payment-info {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: var(--bg-dark);
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color), #ff8f00);
    border-radius: 20px;
    padding: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.2) 0%, transparent 70%);
}

.cta-box h2 { font-size: 3rem; margin-bottom: 20px; color: white; position: relative; z-index: 2; }
.cta-box p { font-size: 1.2rem; margin-bottom: 40px; color: rgba(255,255,255,0.95); position: relative; z-index: 2; }

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* FAQ */
.faq {
    padding: 100px 0;
    background: var(--bg-card);
}

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

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

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

.faq-question i {
    transition: transform 0.3s;
}

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

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

.faq-answer p {
    padding-bottom: 25px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Footer Enhanced */
footer {
    background: #000;
    padding: 100px 0 30px;
    border-top: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 80px;
}

.footer-col h4 {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: var(--text-white);
}

.brand-col p {
    color: var(--text-gray);
    margin: 20px 0;
    max-width: 300px;
    line-height: 1.6;
}

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

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

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: var(--text-gray);
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.newsletter-col p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.newsletter-form input {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color);
    padding: 10px 15px;
    border-radius: var(--radius);
    color: white;
    font-family: var(--font-body);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-form button {
    background: var(--primary-color);
    border: none;
    width: 45px;
    border-radius: var(--radius);
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary-hover);
}

.badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.badge-item {
    font-size: 0.8rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.03);
    padding: 4px 10px;
    border-radius: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #555;
    font-size: 0.85rem;
}

.bottom-links {
    display: flex;
    gap: 20px;
}

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

/* Animations Helpers */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

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

/* Responsive */
@media (max-width: 992px) {
    .hero-content h1 { font-size: 3.5rem; }
    
    .feature-row {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .feature-row.reverse { flex-direction: column; }
    
    .comparison-grid, .security-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .comparison-col.pro { transform: scale(1); }
    
    /* Pricing responsive tablette */
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        gap: 25px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
        order: -1;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .pricing-card { padding: 35px 25px; }
    .cta-box { padding: 40px; }
    
    .stripe-assurance-global {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .stripe-assurance-global .stripe-benefits {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .hero-visual { display: none; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .burger { display: block; }
    
    .hero-content h1 { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-cta { flex-direction: column; align-items: center; }
    
    .btn { width: 100%; max-width: 300px; }
    
    .brands-grid { gap: 20px; flex-direction: column; align-items: center; }
    
    .cta-buttons { flex-direction: column; }
    
    .hero-visual { display: block; margin-top: 40px; }
    .browser-mockup { transform: none; }
    /* Ajustement video mobile */
    .mockup-body.video-wrapper { aspect-ratio: 16/9; }

    /* Pricing responsive mobile */
    .pricing {
        padding: 80px 0;
    }
    
    .pricing .section-header h2 {
        font-size: 2rem;
    }
    
    .pricing-grid {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .pricing-header h3 {
        font-size: 1.3rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .pricing-features li {
        font-size: 0.9rem;
    }
    
    .stripe-assurance-global {
        padding: 20px 15px;
        margin-top: 40px;
    }
    
    .stripe-assurance-global .stripe-benefits li {
        font-size: 0.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links, .bottom-flex {
        justify-content: center;
    }

    .bottom-flex {
        flex-direction: column;
        gap: 15px;
    }

    .newsletter-form {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .badges {
        justify-content: center;
    }
    
    /* Section header mobile */
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2rem; }
    
    .pricing-card {
        padding: 25px 15px;
    }
    
    .amount {
        font-size: 2.2rem;
    }
    
    .pricing-features li {
        font-size: 0.85rem;
        gap: 10px;
    }
    
    .popular-badge,
    .best-badge {
        font-size: 0.7rem;
        padding: 5px 12px;
    }
    
    .cta-box {
        padding: 30px 20px;
    }
    
    .cta-box h2 {
        font-size: 1.8rem;
    }
    
    .cta-box p {
        font-size: 1rem;
    }
}

/* ============================================
   PAGE COMMENT CA FONCTIONNE
   ============================================ */

/* Hero Small */
.hero-small {
    min-height: 50vh;
    padding-top: 120px;
    padding-bottom: 60px;
}

.hero-small .hero-content {
    text-align: center;
}

.hero-small h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-small .hero-subtitle {
    max-width: 700px;
    margin: 0 auto;
}

/* Guide Sections */
.guide-section {
    padding: 100px 0;
}

.guide-section-alt {
    background: var(--bg-card);
}

.guide-row {
    display: grid;
    grid-template-columns: 100px 1fr 400px;
    gap: 60px;
    align-items: start;
}

.guide-row.reverse {
    grid-template-columns: 100px 400px 1fr;
}

.guide-row.reverse .guide-content {
    order: 2;
}

.guide-row.reverse .guide-visual {
    order: 1;
}

.guide-number {
    position: relative;
}

.guide-number span {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px var(--primary-color);
    opacity: 0.5;
}

.guide-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.guide-content h2 i {
    font-size: 1.5rem;
}

.guide-content > p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Guide Steps */
.guide-steps {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 2rem;
}

.guide-steps li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 50px;
    margin-bottom: 1.5rem;
}

.guide-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.guide-steps li strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.guide-steps li p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Visual Cards */
.visual-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    transition: var(--transition);
}

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

.visual-card i {
    margin-bottom: 20px;
    display: block;
}

.visual-card p {
    color: var(--text-gray);
    font-weight: 600;
}

.visual-card.large {
    padding: 20px;
}

.guide-screenshot {
    border-radius: 12px;
    width: 100%;
    height: auto;
}

/* Info Box */
.info-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--primary-light);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-top: 2rem;
}

.info-box i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.info-box strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.info-box p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

.info-box.success {
    background: rgba(0, 200, 83, 0.1);
    border-color: rgba(0, 200, 83, 0.3);
}

.info-box.success i {
    color: var(--success-color);
}

/* Tip Box */
.tip-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--primary-color);
    padding: 16px 20px;
    margin-top: 2rem;
    border-radius: 0 8px 8px 0;
}

.tip-box i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.tip-box p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin: 0;
}

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

/* Params Grid */
.params-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 2rem;
}

.param-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    transition: var(--transition);
}

.param-item:hover {
    border-color: var(--primary-color);
    background: rgba(255, 107, 0, 0.05);
}

.param-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.param-item strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.param-item p {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin: 0;
}

/* Summary Section */
.guide-summary {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

.summary-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.summary-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    width: 160px;
    transition: var(--transition);
}

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

.summary-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.summary-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.summary-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.summary-card p {
    color: var(--text-gray);
    font-size: 0.8rem;
    margin: 0;
}

.summary-arrow {
    color: var(--primary-color);
    font-size: 1.5rem;
    opacity: 0.5;
}

/* Responsive Comment Ca Fonctionne */
@media (max-width: 1024px) {
    .guide-row,
    .guide-row.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .guide-row.reverse .guide-content,
    .guide-row.reverse .guide-visual {
        order: unset;
    }
    
    .guide-number {
        text-align: center;
    }
    
    .guide-number span {
        font-size: 3rem;
    }
    
    .params-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-small h1 {
        font-size: 2.2rem;
    }
    
    .guide-section {
        padding: 60px 0;
    }
    
    .guide-content h2 {
        font-size: 1.5rem;
    }
    
    .summary-grid {
        flex-direction: column;
    }
    
    .summary-arrow {
        transform: rotate(90deg);
    }
    
    .summary-card {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .hero-small h1 {
        font-size: 1.8rem;
    }
    
    .guide-steps li {
        padding-left: 40px;
    }
    
    .guide-steps li::before {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .visual-card {
        padding: 40px 20px;
    }
    
    .param-item {
        flex-direction: column;
        text-align: center;
    }
    
    .param-item i {
        margin: 0 auto;
    }
}

/* ============================================
   STYLES SAAS - Connexion, Inscription, Dashboard
   ============================================ */

.saas-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.saas-auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1100px;
    width: 100%;
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.saas-auth-content {
    padding: 60px 50px;
    background: linear-gradient(135deg, var(--bg-dark), #0a0a0a);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.saas-auth-form-side {
    padding: 50px 40px;
    background: var(--bg-card);
}

.saas-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

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

/* Form Elements */
.saas-form-group {
    margin-bottom: 20px;
}

.saas-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 8px;
}

.saas-input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    color: var(--text-white);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition);
}

.saas-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

.saas-input::placeholder {
    color: #666;
}

/* Buttons */
.saas-btn {
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.saas-btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.saas-btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Messages */
.saas-msg {
    display: none;
    padding: 12px 16px;
    border-radius: var(--radius);
    margin-top: 20px;
    font-size: 0.9rem;
    text-align: center;
}

.saas-error {
    background: rgba(255, 23, 68, 0.15);
    border: 1px solid rgba(255, 23, 68, 0.3);
    color: #ff6b6b;
}

.saas-success {
    background: rgba(0, 200, 83, 0.15);
    border: 1px solid rgba(0, 200, 83, 0.3);
    color: #4ade80;
}

/* Benefit List */
.saas-benefit-list {
    list-style: none;
    margin: 30px 0;
}

.saas-benefit-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-white);
}

.saas-benefit-list i {
    color: var(--success-color);
    font-size: 1rem;
}

/* Testimonial */
.saas-testimonial {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    margin-top: 30px;
}

.saas-testimonial p {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.saas-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.saas-avatar-placeholder {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
}

.saas-user-details strong {
    display: block;
    font-size: 0.95rem;
}

.saas-user-details span {
    color: var(--text-gray);
    font-size: 0.8rem;
}

/* Badges */
.saas-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.saas-badge-free {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
}

.saas-badge-premium {
    background: rgba(255, 107, 0, 0.2);
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 900px) {
    .saas-auth-container {
        grid-template-columns: 1fr;
    }
    
    .saas-auth-content {
        display: none;
    }
    
    .saas-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .saas-card {
        padding: 25px 20px;
    }
    
    .saas-auth-form-side {
        padding: 30px 20px;
    }
}
