  #benef sup, #benef .benefit-info {
	display:none;
}

	#navSearch {
		display: none;
	}
/* ========== Variables et Reset ========== */
:root {
    --primary-color: #3B82F6;
    --primary-dark: #2563EB;
    --success-color: #10B981;
    --success-dark: #059669;
    --warning-color: #F59E0B;
    --danger-color: #EF4444;
    --text-dark: #1F2937;
    --text-muted: #6B7280;
    --bg-light: #F9FAFB;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

* { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--text-dark); padding-top:0px !important; }


/* ========== Hero Section ========== */
.hero-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 50%, #3b7ab8 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0 120px;
    margin: -15px -15px 0;
}

@media(max-width: 900px) {
	.hero-section {
		padding: 140px 0 120px;
	}

	.hero-title {
		margin-top: 50px !important;
	}
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

@media(min-width: 900px) {
	#demo-container {
		width:270px;
	}

	.hero-container {
		margin-bottom:-115px;
	}
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    color: #fff;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-badge .pulse {
    width: 8px; height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
	margin-top:0px;
    text-align:center;
}

.highlight {
    background: linear-gradient(120deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 2rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #fbbf24;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn-primary-xl {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #fff;
    font-size: 1.7rem;
    font-weight: 600;
    padding: 18px 36px;
    border-radius: 26px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.4);
    text-decoration: none;
}

.btn-primary-xl:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(16, 185, 129, 0.5);
    color: #fff;
    text-decoration: none;
}

.btn-secondary-link {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    text-decoration: none;
}

.btn-secondary-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* Hero Email Form */
.hero-email-form {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 6px;
    max-width: 100%;
    transition: all 0.3s ease;
}

.hero-email-form:focus-within {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.hero-email-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 12px 20px;
	border-radius:25px;
    font-size: 1.25rem;
    color: #fff;
    min-width: 0;
}

.hero-email-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.hero-email-form button {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hero-email-form button:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.hero-visual {
	text-align:center;
    position: relative;
}

.app-preview {
    width: 100%;
    max-width: 300px;
    margin: auto;
    border-radius: 24px;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
    overflow: hidden;
}


.app-preview:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.floating-card {
    position: absolute;
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 10%; left: -10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 20%; right: -15%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Wave separator */
.wave-separator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.wave-separator svg {
    width: 100%;
    height: 80px;
    display: block;
}

.wave-separator-top {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    line-height: 0;
    transform: translateY(-100%);
}

.wave-separator-top svg {
    width: 100%;
    height: 80px;
    display: block;
    margin-bottom: -1px;
}

/* ========== Social Proof Bar ========== */
.social-proof-bar {
    background: var(--bg-light);
    padding: 24px 0;
    border-bottom: none;
}

.social-proof-content {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 1.2rem;
}

.proof-item i {
    color: var(--success-color);
    font-size: 1.25rem;
}

.proof-item strong {
    color: var(--text-dark);
}

/* ========== Problem Section ========== */
.problem-section {
    padding: 80px 0;
}

.section-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.8rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.problem-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.problem-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.problem-card h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.problem-card p {
    color: var(--text-muted);
    font-size: 1.25rem;
    line-height: 1.6;
}

.learn-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    padding: 14px 28px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.15) 100%);
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.learn-more-link:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
    text-decoration: none;
}

.learn-more-link i {
    transition: transform 0.3s ease;
}

.learn-more-link:hover i {
    transform: translateX(4px);
}

/* ========== Solution/Features Section ========== */
.features-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}

.features-grid.reverse {
    direction: rtl;
}

.features-grid.reverse > * {
    direction: ltr;
}

.feature-content {
	zoom: 1.35;
}

.feature-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.feature-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1rem;
    color: var(--text-dark);
}

.feature-list .check-icon {
    flex-shrink: 0;
    color: var(--success-color);
    margin-top: 2px;
}

.feature-image {
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 100%;
}

.feature-visual {
    position: relative;
    text-align: center;
}

/* ========== Tools Grid ========== */
.tools-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #F9FAFB 0%, #fff 100%);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tool-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tool-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.tool-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: #fff;
}

.tool-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.tool-card p {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ========== Testimonials ========== */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);
}

.testimonials-section .section-label {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.testimonials-section .section-title {
    color: #fff;
}

.testimonials-section .section-subtitle {
    color: rgba(255,255,255,0.8);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-stars {
    color: #FBBF24;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.testimonial-text {
    color: #fff;
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
}

.author-info .name {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

.author-info .days {
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
}

/* ========== FAQ Section ========== */
.faq-section {
    padding: 80px 0;
    background: #fff;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #E5E7EB;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.faq-question:hover { color: var(--primary-color); }

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding-bottom: 24px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ========== CTA Section ========== */
.cta-section {
    padding: 100px 0;
    background: #10B981;
    text-align: center;
    position: relative;
    margin-top: 80px;
}

.cta-content {
    max-width: 700px;
    margin: auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}

.btn-white-xl {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #fff;
    color: #059669;
    font-size: 1.4rem;
    font-weight: 600;
    padding: 18px 40px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    text-decoration: none;
}

.btn-white-xl:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    text-decoration: none;
    color: #059669;
}

.cta-guarantee {
    margin-top: 24px;
    color: rgba(255,255,255,0.8);
    font-size: 1.25rem;
}

.cta-guarantee i {
    margin-right: 8px;
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
	.btn-header-login, .btn-header-register {
		width:100%;
		text-align:center;
		font-size: 1.6em !important;
	}
    .hero-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-stats { justify-content: center; }
    .hero-cta { align-items: center; }
    .hero-visual { order: 1; display: flex; justify-content: center; }
    .app-preview { max-width: 95%; margin: 0 auto; }
    .floating-card { display: none; }
    .problem-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; gap: 40px; }
    .features-grid.reverse { direction: ltr; }
    .tools-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
	.hero-text {
		padding: 15px;
	}

	.btn-primary-xl {
		width: 100%;
	}
	#demo-container {
		max-width:100%;
	}
    .hero-section { padding: 60px 0 100px; margin: -15px 0 0; }
    .hero-title { font-size: 3rem; }
    .hero-stats { flex-direction: column; gap: 20px; }
    .stat-item { text-align: center; }
    .section-title { font-size: 1.75rem; }
    .tools-grid { grid-template-columns: 1fr; }
    .social-proof-content { flex-direction: column; gap: 16px; }
    .cta-title { font-size: 1.75rem; }
	.app-preview { 
		width: 100% !important;
		max-width: 100% !important; 
		transform: none !important;
	}
}

/* ========== Utilities ========== */
.check-icon { color: var(--success-color); }
#bottomToolbar, #bottomFixedBanner + table, #cookiePolicy, #logoSwitch, .faction { display: none !important; }
.mobile-show { display: none; }
@media (max-width: 768px) {
    .mobile-show { display: block; }
    .mobile-hide { display: none !important; }
}

/* Loading animation */
.pageLoad {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.pageLoad.off { opacity: 0; visibility: hidden; pointer-events: none; }