:root {
	--bg-dark: #0a0a0a;
	--bg-darker: #050505;
	--accent-cyan: #00d4d4;
	--accent-magenta: #ff00ff;
	--text-primary: #e0e0e0;
	--text-secondary: #909090;
	--border: #1a1a1a;
}

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

/* 'Segoe UI', */
body {
	font-family: 'Segoe UI', Arial, sans-serif;
	background: var(--bg-dark);
	color: var(--text-primary);
	line-height: 1.6;
	letter-spacing: 0.3px;
}

/* Header */
header {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(10, 10, 10, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--border);
	z-index: 1000;
}

nav {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 2px;
	background: linear-gradient(135deg, var(--accent-cyan), var(--accent-magenta));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

nav ul {
	display: flex;
	list-style: none;
	gap: 2rem;
}

nav a {
	color: var(--text-secondary);
	text-decoration: none;
	transition: color 0.3s;
}

nav a:hover {
	color: var(--accent-cyan);
}




/* Hero Section */
.hero {
	margin-top: 50px;
	padding: 4rem 2rem 2rem 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	overflow: hidden; /* Déjà présent mais pas suffisant */	
}

.hero::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	
	background: radial-gradient(circle at center top, rgba(0, 212, 212, 0.05), transparent 70%);
	top: 0;
	left: 0;
	pointer-events: none;
	z-index: 0;
}

.hero-content {
	max-width: 800px;
	position: relative;
	z-index: 1;
}

h1 {
	font-size: 4rem;
	font-weight: 800;
	margin-bottom: 1rem;
	/* letter-spacing: -1px; */
}

.gradient-text {
	background: linear-gradient(135deg, var(--accent-cyan), var(--accent-magenta));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.subtitle {
	font-size: 1.5rem;
	color: var(--text-secondary);
	margin-bottom: 3rem;
}

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

.btn {
	padding: 1rem 2.5rem;
	font-size: 1.1rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.3s;
	cursor: pointer;
	border: none;
	letter-spacing: 0.5px;
}

.btn-primary {
	background: linear-gradient(135deg, var(--accent-cyan), var(--accent-magenta));
	color: #fff;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(0, 212, 212, 0.3);
}

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

.btn-secondary:hover {
	border-color: var(--accent-cyan);
	color: var(--accent-cyan);
}




/* Hero Screenshot */
/* Hero Screenshot Carousel */
.hero-screenshot {
    margin-top: 3rem;
}

.carousel-container {
    position: relative;
    width: 500px;
    height: 500px;
    max-width: 100%;
    margin: 0 auto;
}

.carousel-img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    border: 1px solid var(--border);
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); */
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    object-fit: cover;
}

.carousel-img.active {
    opacity: 1;
    z-index: 1;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s;
}

.dot:hover {
    background: var(--text-secondary);
}

.dot.active {
    background: var(--accent-cyan);
    width: 32px;
    border-radius: 6px;
}




/* About Section */
.about {
    padding: 6rem 2rem;
    background: var(--bg-dark);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.about h3 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.about-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.about-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-cyan);
}

.about-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}




/* Features */
.features {
	padding: 6rem 2rem;
	background: var(--bg-darker);
}

.features-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 3rem;
}

.feature {
	padding: 2rem;
	background: var(--bg-dark);
	border: 1px solid var(--border);
	border-radius: 12px;
	transition: transform 0.3s;
}

.feature:hover {
	transform: translateY(-5px);
	border-color: var(--accent-cyan);
}

.feature h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--accent-cyan);
}

.feature p {
	color: var(--text-secondary);
}




/* Guarantee Badge */
.guarantee-badge {
    max-width: 600px;
    margin: 0 auto 3rem auto;
    padding: 1.5rem 2rem;
    background: rgba(0, 212, 212, 0.05);
    border: 2px solid var(--accent-cyan);
    border-radius: 12px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.guarantee-badge p {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 6rem 2rem;
    background: var(--bg-darker);
}

.pricing-content {
    max-width: 1400px;
    margin: 0 auto;
}

.pricing h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.pricing-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: var(--bg-dark);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
}

.pricing-card.popular {
    border-color: var(--accent-cyan);
    transform: scale(1.05);
}

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

.pricing-note2 {
	font-size: 0.85rem;
	color: var(--text-secondary);
	margin-top: 1rem;
}

.pricing-note1 {
	font-size: 0.85rem;
	color: var(--accent-cyan);
	margin-top: 1rem;
	font-weight: 600;	
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-magenta));
    color: #fff;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.price {
    margin-bottom: 0.5rem;
}

.price .currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
    vertical-align: super;
}

.price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

.duration {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

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

.features-list li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

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

.pricing-card .btn {
    margin-top: 1.5rem;
    width: 100%;
}


















/* Footer */
footer {
	background: var(--bg-darker);
	border-top: 1px solid var(--border);
	padding: 4rem 2rem 2rem 2rem;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 3rem;
	margin-bottom: 3rem;
}

.footer-section h4 {
	color: var(--text-primary);
	font-size: 1.1rem;
	margin-bottom: 1rem;
	font-weight: 600;
}

.footer-section p {
	color: var(--text-secondary);
	font-size: 0.9rem;
	line-height: 1.6;
}

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

.footer-section ul li {
	margin-bottom: 0.5rem;
}

.footer-section ul li a {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.3s;
}

.footer-section ul li a:hover {
	color: var(--accent-cyan);
}

.footer-bottom {
	max-width: 1200px;
	margin: 0 auto;
	padding-top: 2rem;
	border-top: 1px solid var(--border);
	text-align: center;
}

.footer-bottom p {
	color: var(--text-secondary);
	font-size: 0.9rem;
}




/* Legal */

.legal-page {
	max-width: 900px;
	margin: 50px auto 4rem auto;
	padding: 2rem;
	background: radial-gradient(circle at center top, rgba(0, 212, 212, 0.05), transparent 70%);
}
	  
.legal-page h1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}
	  
.legal-page .updated {
	color: var(--text-secondary);
	margin-bottom: 3rem;
	font-size: 0.9rem;
}
	  
.legal-page h2 {
	font-size: 1.8rem;
	margin-top: 3rem;
	margin-bottom: 1rem;
	color: var(--accent-cyan);
}
	  
.legal-page h3 {
	font-size: 1.3rem;
	margin-top: 2rem;
	margin-bottom: 1rem;
}
	  
.legal-page p, .legal-page li {
	color: var(--text-secondary);
	line-height: 1.8;
	margin-bottom: 1rem;
}
	  
.legal-page ul {
	margin-left: 2rem;
	margin-bottom: 1.5rem;
}

.legal-page ol {
	margin-left: 2rem;
	margin-bottom: 1.5rem;
}
	  
.legal-page strong {
	color: var(--text-primary);
}
	  
.legal-page table {
	width: 100%;
	border-collapse: collapse;
	margin: 2rem 0;
}
	  
.legal-page table td {
	padding: 0.75rem;
	border: 1px solid var(--border);
}	  
.legal-page table td:first-child {
	font-weight: 600;
	color: var(--text-primary);
	width: 30%;
}		
.legal-page .notice-box {
	background: rgba(0, 212, 212, 0.05);
	border: 1px solid var(--accent-cyan);
	border-radius: 8px;
	padding: 1.5rem;
	margin: 2rem 0;
}

.legal-page .warning-box {
	background: rgba(255, 0, 255, 0.05);
	border: 1px solid var(--accent-magenta);
	border-radius: 8px;
	padding: 1.5rem;
	margin: 2rem 0;
}




/* Contact */
.contact-page {
    max-width: 1200px;
    margin: 50px auto 4rem auto;
    padding: 2rem;
	background: radial-gradient(circle at center top, rgba(0, 212, 212, 0.05), transparent 70%);
}

.contact-page h1 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.contact-page .intro {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    font-size: 1.2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: var(--bg-darker);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-cyan);
}

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-card .btn {
    display: inline-block;
    width: 100%;
    max-width: 300px;
}

.response-time {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.support-hours {
    background: var(--bg-darker);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.support-hours h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.support-hours p {
    color: var(--text-secondary);
}



/* Cookie */
#cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 420px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    z-index: 99999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    animation: slideIn 0.5s ease-out;
}

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

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

#cookie-banner h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: bold;
}

#cookie-banner p {
    margin: 0 0 15px 0;
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.95;
}

#cookie-banner a {
    color: #fff;
    text-decoration: underline;
    font-weight: bold;
}

#cookie-banner a:hover {
    opacity: 0.8;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.cookie-accept {
    background: white;
    color: #667eea;
}

.cookie-accept:hover,
.cookie-accept:active {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cookie-decline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-decline:hover,
.cookie-decline:active {
    background: rgba(255,255,255,0.15);
}





@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive */
@media (max-width: 768px) {
	h1 {
		font-size: 2.5rem;
	}
	
	.subtitle {
		font-size: 1.2rem;
	}
	
	/* Menu mobile plus petit */
	nav {
		padding: 0.75rem 1rem;
	}
	
	nav ul {
		gap: 0.75rem;
	}
	
	nav a {
		font-size: 0.85rem;
	}
	
	.logo {
		font-size: 1.2rem;
	}
	
	.hero-screenshot img {
		width: 100%;
		height: auto;
	}
	
	.footer-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.contact-grid {
        grid-template-columns: 1fr;
    }
	
	
	
	
	
	#cookie-banner {
        bottom: 0;
        right: 0;
        left: 0;
        max-width: 100%;
        border-radius: 15px 15px 0 0;
        padding: 20px;
    }
    
    #cookie-banner h3 {
        font-size: 16px;
    }
    
    #cookie-banner p {
        font-size: 13px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        padding: 14px;
        font-size: 15px;
    }
		
	@keyframes slideIn {
        from {
            transform: translateY(100%);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
    
    @keyframes slideOut {
        from {
            transform: translateY(0);
            opacity: 1;
        }
        to {
            transform: translateY(100%);
            opacity: 0;
        }
    }
	
}

/* Responsive carousel */
@media (max-width: 600px) {
    .carousel-container {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
    }
}