
html, body{
	overflow-x: hidden;
	max-width: 100%;
}

body{

	font-family: 'Inter',-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;

	padding: 2px;
	background-color: white; 
}

#AnimatedIllustration{
	width: 45%;
	flex-shrink: 1;
	min-width: 0;
}

a:hover{
	text-decoration: none;
	color: grey;
}

.div{
	margin: auto;
}

h1{

	font-size: 5rem;
	font-weight: bold;

}

.banner{

	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding-right: 2px;
	padding-left: 2px;
	padding: 3px;
	max-width: 100%;
	box-sizing: border-box;
}

.BannerText{
	padding-left: 50px;
	width: 50%;
	flex-shrink: 1;
	min-width: 0;
}

.BannerText h1{
	font-size: 5rem;
}



#GridLandingContainer{
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 10px;
	gap: 15px;
	max-width: 450px;
}


/* Header nav button — compact, in line with nav links */
#BUYnav {
	font-size: 0.875rem;
	font-weight: 500;
	padding: 8px 18px;
	min-width: 0;
	height: auto;
	border-radius: 10px;
	background: var(--btn-primary, #0d9668);
	color: #fff;
	border: none;
	box-shadow: 0 1px 3px rgba(13, 150, 104, 0.25);
	transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}
#BUYnav:hover {
	background: var(--btn-primary-hover, #0b7d56);
	box-shadow: 0 2px 8px rgba(13, 150, 104, 0.35);
	color: #fff;
}

/* Primary CTA — hero download button: 2026-style */
.btn-success,
#downloadBtn {
	font-size: 1rem;
	font-weight: 600;
	padding: 14px 28px;
	min-width: 0;
	max-height: none;
	border-radius: 12px;
	background: var(--btn-primary, #0d9668);
	color: #fff;
	border: none;
	box-shadow: 0 2px 8px rgba(13, 150, 104, 0.25);
	letter-spacing: 0.01em;
	transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}
.btn-success:hover,
#downloadBtn:hover {
	background: var(--btn-primary-hover, #0b7d56);
	box-shadow: 0 4px 14px rgba(13, 150, 104, 0.35);
	color: #fff;
	transform: translateY(-1px);
}
.btn-success:active,
#downloadBtn:active {
	transform: translateY(0);
}

#BUY{
	font-size: 3em;
	min-width: 5em;
	background-color: white ;
	color: red;
	border-color: red ;
	max-height: 90px;
}



.ValueProposition{

	color: grey;

}

.trust-badges {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 8px;
}

.trust-badge {
	display: inline-flex;
	align-items: center;
	padding: 6px 14px;
	font-size: 0.8rem;
	color: #555;
	background-color: #f0f0f0;
	border-radius: 999px;
	white-space: nowrap;
}

/* Does this feel familiar by 6pm? — pain-point grid, optimised */
.do-you-experience-section {
	max-width: 720px;
	margin: 0 auto;
	padding: 56px 24px;
	text-align: center;
	background: #f5f6f7;
	border-radius: 20px;
}

/* Hiérarchie visuelle forte */
.do-you-experience-section .do-you-title {
	font-size: 2.35rem;
	font-weight: 800;
	color: #1a1a1a;
	margin-bottom: 10px;
	line-height: 1.25;
	letter-spacing: -0.02em;
}

.do-you-experience-section .do-you-subtitle {
	font-size: 0.95rem;
	color: #6b7280;
	margin: 0 0 20px 0;
	line-height: 1.5;
	font-weight: 400;
}

.do-you-experience-lead {
	font-size: 0.9rem;
	font-weight: 600;
	color: #374151;
	margin: 0 0 28px 0;
	line-height: 1.4;
}

.pain-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 28px;
}

/* Cartes: fond blanc, ombre douce, radius arrondi */
.pain-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	padding: 24px 20px;
	text-align: center;
	min-height: 120px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 12px rgba(0,0,0,0.04);
	transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.pain-card:hover {
	box-shadow: 0 6px 20px rgba(0,0,0,0.08);
	border-color: #d1d5db;
	transform: translateY(-2px);
}

/* 5e carte centrée, légèrement différente (appearance) */
.pain-card-wide {
	grid-column: 1 / -1;
	max-width: 380px;
	justify-self: center;
}

.pain-card-aesthetic {
	background: linear-gradient(180deg, #fafbfc 0%, #f3f4f6 100%);
	border: 1px solid rgba(13, 150, 104, 0.35);
	box-shadow: 0 2px 12px rgba(13, 150, 104, 0.06);
}

.pain-card-aesthetic:hover {
	box-shadow: 0 6px 20px rgba(13, 150, 104, 0.1);
	border-color: rgba(13, 150, 104, 0.5);
}

.pain-icon {
	display: block;
	font-size: 1.4rem;
	margin-bottom: 10px;
	line-height: 1;
}

.pain-text {
	font-size: 0.95rem;
	color: #374151;
	line-height: 1.45;
	margin: 0;
}

/* Closing line en couleur accent */
.do-you-experience-tagline {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--btn-primary, #0d9668);
	margin: 0;
	line-height: 1.4;
}

/* Transition narrative vers la solution */
.do-you-experience-divider {
	text-align: center;
	max-width: 560px;
	margin: 0 auto;
	padding: 32px 24px 24px;
}

.do-you-experience-divider-line {
	display: block;
	font-size: 1.5rem;
	color: #d1d5db;
	margin-bottom: 12px;
	letter-spacing: 0.2em;
}

.do-you-experience-divider-title {
	font-size: 1.4rem;
	font-weight: 600;
	color: #374151;
	margin: 0;
	line-height: 1.4;
}

@media (max-width: 500px) {
	.pain-grid { grid-template-columns: 1fr; }
	.pain-card-wide { max-width: none; }
	.do-you-experience-section { padding-left: 16px; padding-right: 16px; }
	.do-you-experience-section .do-you-title { font-size: 1.75rem; }
	.do-you-experience-lead { font-size: 0.85rem; }
}

/* Social proof — testimonial */
.social-proof-section {
	max-width: 620px;
	margin: 0 auto;
	padding: 56px 24px;
	text-align: center;
}

.social-proof-label {
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--btn-primary, #0d9668);
	margin: 0 0 8px 0;
}

.social-proof-section .social-proof-title {
	font-size: 2em;
	font-weight: bold;
	color: #333;
	margin: 0 0 36px 0;
}

.social-proof-card {
	position: relative;
	background: #fff;
	border: 1px solid #e8e8e8;
	border-left: 4px solid var(--btn-primary, #0d9668);
	border-radius: 16px;
	padding: 44px 40px 28px;
	text-align: center;
	box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
	transition: box-shadow 0.2s ease;
}

.social-proof-card:hover {
	box-shadow: 0 8px 32px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.06);
}

.social-proof-quote-mark {
	display: block;
	font-size: 3.5rem;
	font-weight: 700;
	color: var(--btn-primary, #0d9668);
	line-height: 1;
	margin-bottom: 4px;
	opacity: 0.9;
	font-family: Georgia, serif;
}

.social-proof-card blockquote {
	margin: 0 0 24px 0;
	font-size: 1.15rem;
	line-height: 1.75;
	color: #2d2d2d;
	font-style: italic;
	border: none;
	padding: 0;
}

.social-proof-footer {
	border-top: 1px solid #eee;
	padding-top: 18px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.social-proof-author-block {
	display: flex;
	align-items: center;
	gap: 10px;
}

.social-proof-card .social-proof-author {
	font-weight: 600;
	color: #333;
	font-size: 0.95rem;
	margin: 0;
}

.social-proof-source {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 500;
	color: #666;
	background: #f0f0f0;
	padding: 3px 8px;
	border-radius: 6px;
}

.social-proof-card .social-proof-link {
	color: var(--btn-primary, #0d9668);
	font-weight: 500;
	text-decoration: none;
	font-size: 0.9rem;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.social-proof-card .social-proof-link:hover {
	color: #0b7d56;
}

.social-proof-card .social-proof-link:hover .social-proof-arrow {
	transform: translateX(3px);
}

.social-proof-arrow {
	display: inline-block;
	transition: transform 0.2s ease;
}

@media (max-width: 500px) {
	.social-proof-card {
		padding: 32px 24px 24px;
	}
	.social-proof-footer {
		flex-direction: column;
		text-align: center;
	}
	.social-proof-author-block {
		justify-content: center;
	}
}

/* How it works — 3 steps */
.how-it-works-section {
	max-width: 900px;
	margin: 0 auto;
	padding: 40px 24px;
	text-align: center;
}

.how-it-works-title {
	font-size: 2em;
	font-weight: bold;
	margin-bottom: 32px;
	color: #333;
}

.how-it-works-steps {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 32px;
}

.how-it-works-step {
	flex: 1;
	min-width: 200px;
	max-width: 280px;
	padding: 24px 20px;
	background: #fafafa;
	border-radius: 12px;
	text-align: center;
}

.how-it-works-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	font-size: 1.4rem;
	font-weight: bold;
	color: #fff;
	background: #0d9668;
	border-radius: 50%;
	margin-bottom: 16px;
}

.how-it-works-step-title {
	font-size: 1.2em;
	font-weight: 600;
	margin-bottom: 8px;
	color: #333;
}

.how-it-works-step-desc {
	font-size: 0.95rem;
	color: #555;
	line-height: 1.5;
	margin: 0;
}

@media (max-width: 768px) {
	.how-it-works-steps { flex-direction: column; align-items: center; }
	.how-it-works-step { max-width: 100%; }
}

/* Comparison section — before pricing */
.comparison-section {
	max-width: 900px;
	margin: 0 auto;
	padding: 40px 24px;
	text-align: center;
}

.comparison-inner {
	width: 100%;
}

.comparison-title {
	font-size: 2em;
	font-weight: bold;
	margin-bottom: 12px;
	color: #333;
}

.comparison-subtitle {
	font-size: 1.2em;
	color: #555;
	margin-bottom: 24px;
}

.comparison-question {
	font-size: 1.4em;
	font-weight: 600;
	margin-bottom: 28px;
	color: #333;
}

.comparison-table-wrap {
	overflow-x: auto;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.comparison-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 1rem;
	background: #fff;
}

.comparison-table th,
.comparison-table td {
	padding: 14px 16px;
	text-align: center;
	border-bottom: 1px solid #eee;
}

.comparison-table th {
	background: #f8f9fa;
	font-weight: 600;
	color: #333;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
	text-align: left;
	padding-left: 20px;
}

.comparison-table th.col-highlight {
	background: rgba(13, 150, 104, 0.12);
	color: #0d9668;
}

.comparison-table td.col-highlight {
	background: rgba(13, 150, 104, 0.05);
	font-weight: 500;
	color: #0d9668;
}

.comparison-table tbody tr:hover {
	background: #f5f5f5;
}

.comparison-cta {
	margin-top: 28px;
	text-align: center;
}

.comparison-cta .btn {
	padding: 12px 32px;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 12px;
}

@media (max-width: 768px) {
	.comparison-title { font-size: 1.5em; }
	.comparison-table { font-size: 0.9rem; }
	.comparison-table th,
	.comparison-table td { padding: 10px 8px; }
}


.card-line{

	display: flex;
	flex-direction: row;
	justify-content: space-around;
	flex-wrap: wrap;
}




.card{
	margin: auto;
	text-align: center;
	border: 0;
}

.card-title{
	font-size: 2.5rem;
}

.bi-bi-cloud-slash{

	display: block;
	margin: auto;

}
.logolock{

	display: block;
	margin: auto;

}
.bi-bi-battery{

	display: block;
	margin: auto;

}


#PricingCard{
	width: 25em;
}











.GridFeaturesContainer{
display: grid;
margin-right: 50px;
margin-left: 50px;
grid-template-columns: auto auto;
	padding: 80px;
	justify-content: space-around;
	grid-row-gap: 400px;



}



.BeforeAfter{
	margin: auto;

}


.Why{
	width: 40%;
	margin: 15px;

	display: flex;
  	justify-content: center;
  	flex-direction: column;

}

.WhyTitle{	
	font-size: 3.5em;
}

.BeforeAfterimg{
	margin: auto;
	width: 40vw;
}




.Why2{
	width: 40%;
	margin: 15px;

	display: flex;
  	justify-content: center;
  	flex-direction: column;

}

.WhyTitle2{	
	font-size: 3em;
}

.BeforeAfterimg2{
	margin: auto;
	width: 40vw;


}




.descriptionFeature{
	font-size: 1.5em;
	color: grey;
	max-width: 200px;
}





.AboutUs{

	max-width: 800px; 
	margin: auto;
	text-align: center;

}

.AboutUsText{
	font-size: 1.1em;
  	text-justify: inter-word;
	text-align: justify;
}

@media screen and (max-width: 400px){

	*{font-size: 0.8em;}
}




/* Pricing section — single card */
.pricing-section {
	max-width: 420px;
	margin: 0 auto;
	padding: 24px 20px 48px;
}

.pricing-card {
	text-align: center;
	background: #fafafa;
	border: 1px solid #eee;
	border-radius: 16px;
	padding: 40px 32px;
	box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.pricing-heading {
	font-size: 1.5rem;
	font-weight: 700;
	color: #333;
	margin: 0 0 8px 0;
	letter-spacing: -0.02em;
}

.pricing-plan {
	font-size: 1rem;
	color: #666;
	margin: 0 0 4px 0;
}

.pricing-price {
	font-size: 2.5rem;
	font-weight: 700;
	color: #0d9668;
	margin: 0 0 8px 0;
	letter-spacing: -0.03em;
}

.pricing-subtitle {
	font-size: 0.9rem;
	color: #666;
	margin: 0 0 24px 0;
}

.pricing-features {
	list-style: none;
	padding: 0;
	margin: 0 0 28px 0;
	font-size: 0.95rem;
	color: #555;
	line-height: 1.8;
}

.pricing-features li::before {
	content: "✓ ";
	color: #0d9668;
	font-weight: bold;
}

#Pricing span{
	margin: auto;
	margin-top: 10px;
	margin-bottom: 20px;
	font-size: 1.5em;
}
#Pricing h1{
	margin: auto;
}

.ButtonDiv{
	margin: auto;
}


.PriceFeature{

	text-align: center;
	min-width: 5em;
}


#Try2{

	font-size: 3em;
	min-width: 5em;
	margin-right: 0px;
	margin-bottom: 0.5em;

}





.PricingLine{
	margin: auto;
	text-align: center;
	
}
.PricingLine a{
	color: blue;
	margin-bottom: 10px;
	text-decoration: none;
}
.PricingLine a:hover{
	
	text-decoration: underline;
}




.PricingFeatures{
	text-align: center;
	color:  #808080	;
	line-height: 2;
}

.pricing-ctas {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
}
.pricing-cta-primary {
	display: block;
	width: 100%;
	max-width: 280px;
	padding: 14px 24px;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	text-align: center;
	border-radius: 12px;
	transition: background 0.2s ease, box-shadow 0.2s ease;
}
.pricing-cta-secondary {
	display: block;
	width: 100%;
	max-width: 280px;
	padding: 12px 24px;
	font-size: 0.95rem;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	border: 2px solid #333;
	color: #333;
	background: transparent;
	border-radius: 12px;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.pricing-cta-secondary:hover {
	background: #333;
	color: #fff;
	text-decoration: none;
	border-color: #333;
}
#BUY2.pricing-cta-secondary {
	background: transparent;
	color: #333;
	font-size: 0.95rem;
	min-width: 0;
	max-width: 280px;
	height: auto;
}
.pricing-quote {
	font-size: 0.85rem;
	color: #999;
	font-style: italic;
	margin: 0;
	line-height: 1.4;
}






@media (max-width:400px) { 

	body{
		font-size: 1.6em;
		padding: 8px;
	}
	

	.banner{

		flex-wrap: wrap;

	}

	.BannerText{
		padding-left: 5px; 
		width: 98%;

	}

	#GridLandingContainer{
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 5px;
		gap: 10px;
		margin-right: 0px;
		max-width: 100%;
	}


	.GridFeaturesContainer{
		
		grid-template-columns: auto;
		padding: 5px;
		justify-content: space-around;
		grid-row-gap: 100px;
	
	
	
	}

	.BeforeAfterimg2{
		width: 80vw;
	}
	.BeforeAfterimg{
		width: 80vw;
	}
	.text-dark{
		display: none;
	}
	#BUYnav{
		display: none;
	}
	#BUY{
		margin-left: 4px;
	}
	.card-text{
		font-size: 1.8em;
		margin-bottom: 40px;
	}
} 

















/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
	width: 100%; /* Full width */
	padding: 12px; /* Some padding */ 
	border: 1px solid #ccc; /* Gray border */
	border-radius: 4px; /* Rounded borders */
	box-sizing: border-box; /* Make sure that padding and width stays in place */
	margin-top: 6px; /* Add a top margin */
	margin-bottom: 16px; /* Bottom margin */
	resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
  }
  input[type=email], select, textarea {
	width: 100%; /* Full width */
	padding: 12px; /* Some padding */ 
	border: 1px solid #ccc; /* Gray border */
	border-radius: 4px; /* Rounded borders */
	box-sizing: border-box; /* Make sure that padding and width stays in place */
	margin-top: 6px; /* Add a top margin */
	margin-bottom: 16px; /* Bottom margin */
	resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
  }
  
  /* Style the submit button with a specific background color etc */
  input[type=submit] {
	background-color: #4CAF50;
	color: white;
	padding: 12px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
  }
  
  /* When moving the mouse over the submit button, add a darker green color */
  input[type=submit]:hover {
	background-color: #45a049;
  }
  
  /* Add a background color and some padding around the form */
  .container1{
	border-radius: 5px;
	background-color: white;
	padding: 20px;
	max-width: 500px;
	margin: auto;
  }


.paymentH1{
	font-size: 2.2em;
}

  #SuccessfulPayment{
	  display: none;
	  margin: auto;
	  text-align: center;
  }