.site-footer, .site-header{
	display: none;
}

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

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	line-height: 1.6;
	color: #333;
	font-size: 18px !important;
}

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

/* Hero Section */
.hero {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 100px 20px 80px;
	text-align: center;
}

.hero h1 {
	font-size: 3em !important;
	margin-bottom: 20px;
	line-height: 1.2;
	font-weight: 700 !important;
}

.hero .subheadline {
	font-size: 1.4em !important;
	margin-bottom: 30px;
	font-weight: 300 !important;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.cta-button a{
	display: inline-block !important;
	background: #ff6b6b !important;
	color: white !important;
	padding: 18px 40px !important;
	font-size: 1.2em !important;
	text-decoration: none !important;
	border-radius: 50px !important;
	font-weight: 600 !important;
	transition: transform 0.3s, box-shadow 0.3s !important;
/* 	margin: 10px !important; */
}

.cta-button a:hover {
	transform: translateY(-2px) !important;
	box-shadow: 0 10px 25px rgba(0,0,0,0.2) !important;
}

.cta-secondary a{
	background: transparent !important;
	border: 2px solid white !important;
}

.trust-line {
	margin-top: 30px;
	font-size: 1em !important;
	opacity: 0.95;
}

/* Section Styles */
section {
	padding: 80px 20px;
}

.section-title {
	text-align: center;
	font-size: 2.5em !important;
	margin-bottom: 50px;
	color: #2c3e50;
}

.section-light {
	background: #f8f9fa;
}

/* Differentiators */
.diff-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
}
.elementor-widget-html:has(.diff-card), .elementor-widget-html:(.service-card){
	height: 100%;
}
.diff-card {
	background: white;
	padding: 40px 30px;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
	transition: transform 0.3s;
	height: 100%;
}

.diff-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.diff-icon {
	font-size: 3.5em !important;
	margin-bottom: 20px;
}

.diff-card h3 {
	font-size: 1.5em !important;
	margin-bottom: 15px;
	color: #667eea;
}

.diff-card p {
	color: #666;
	line-height: 1.8;
}

/* Problems Section */
.problem-item {
	margin-bottom: 50px;
	padding: 40px;
	border-left: 5px solid #667eea;
	background: white;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.problem-item h3 {
	font-size: 1.8em !important;
	color: #2c3e50;
	margin-bottom: 15px;
}

.problem-text {
	font-style: italic;
	color: #e74c3c;
	margin-bottom: 20px;
	font-size: 1.15em !important;
	font-weight: 500 !important;
}

.solution-text {
	color: #27ae60;
	font-weight: 700;
	margin-bottom: 10px;
	font-size: 1.1em !important;
}

.solution-details {
	color: #555;
	line-height: 1.9 !important;
}

/* Services Grid */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 35px;
	margin-top: 50px;
}

.service-card {
	background: white;
	padding: 40px;
	border-radius: 12px;
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
	height: 100%;
}

.service-card h3 {
	font-size: 1.6em !important;
	color: #667eea;
	margin-bottom: 15px;
}

.service-card p {
	color: #666;
	line-height: 1.8 !important;
	margin-bottom: 15px;
}

.service-card strong {
	color: #2c3e50;
}

/* Testimonials */
.testimonials {
	background: #667eea;
	color: white;
}

.testimonials .section-title {
	color: white;
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.testimonial-card {
	background: rgba(255,255,255,0.1);
	padding: 35px;
	border-radius: 12px;
	backdrop-filter: blur(10px);
	height: 100%;
}

.testimonial-text {
	font-size: 1.1em !important;
	margin-bottom: 25px;
	line-height: 1.8 !important;
}

.testimonial-author {
	font-weight: 600 !important;
	font-size: 1.1em !important;
}

.testimonial-company {
	opacity: 0.9;
	font-size: 0.95em !important;
}

/* FAQ Section */
.faq-item {
	margin-bottom: 30px;
	padding: 30px;
	background: white;
	border-radius: 10px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.faq-question {
	font-size: 1.4em !important;
	color: #2c3e50;
	font-weight: 700 !important;
	margin-bottom: 15px;
}

.faq-answer {
	color: #555;
	line-height: 1.9 !important;
}

/* Final CTA */
.final-cta {
	padding: 100px 20px;
	background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
	color: white;
	text-align: center;
}

.final-cta h2 {
	font-size: 2.8em !important;
	margin-bottom: 25px;
}

.final-cta p {
	font-size: 1.3em !important;
	margin-bottom: 35px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

/* Footer */
footer {
	background: #2c3e50;
	color: white;
	padding: 40px 20px;
	text-align: center;
}

footer a {
	color: #667eea;
	text-decoration: none;
}

footer p {
	margin: 10px 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.hero h1 {
		font-size: 2.2em !important;
	}

	.hero .subheadline {
		font-size: 1.15em !important;
	}

	.section-title {
		font-size: 2em !important;
	}

	.cta-button {
		padding: 15px 30px;
		font-size: 1.1em !important;
	}

	body {
		font-size: 16px !important;
	}

	.diff-grid, .services-grid, .testimonial-grid {
		grid-template-columns: 1fr;
	}
	
	.problem-item h3, .service-card h3, .diff-card h3{
		font-size: 1.4em !important;
	}
	.problem-text{
		font-size: 1.2em !important;
	}
	.cta-button a{
		padding: 20px 0 !important;
	}
	
}

















/*===================================
 *            Modal
 * ================================*/
.bbwdModalToggle:hover{
	cursor: pointer;
}
#bbwdModal{
    position: fixed;
    top: 0;
    z-index: 9999999;
    width: 100%;
    background: rgba(0, 0, 0, .7);
    height: 100vh;
}
#bbwdModInner{
	width: 50%;
    max-width: 50%;
	max-height: 60vh;
	/*overflow-y: scroll;*/
    padding: 50px 60px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 5px 10px -3px;
	gap: 20px;
}
#bbwdCloseModal{
    margin-top: -45px;
    margin-right: -55px;
}
#bbwdCloseModal button{
	border-radius: 100px;
	padding: 5px 8px;
	line-height: 1;
	font-size: 15px;
	color: grey;
	border-color: grey;
}
#bbwdCloseModal button:hover{
	color: white;
	background: grey;
}
#bbwdModalContent{
	width: 100%;
}
.bbwdToModal{
	display: none;
}
#bbwdModalContent .bbwdToModal{
	display: inherit;
}
 /**end modal**/
/*===================================
 *          Cookie Notice
 * ================================*/
#bbwdCookieNotice{
	position: fixed;
    bottom: -250px;
    left: 0px;
    width: 100%;
    background: white;
    padding: 30px 5px;
    box-shadow: 0 0 20px -5px rgba(0, 0, 0, .15);
    z-index: 9999;
}
#bbwdInnerCookie{
	margin: auto;
}
#bbwdInnerCookie p{
	margin: 0;
}

#bbwdInnerCookie a{
	text-align: center;
	font-size: 12px;
}




/*===================================
 *          Tablet
 * ================================*/
@media only screen and (max-width: 1024px) {
}

/*===================================
 *          Mobile
 * ================================*/
@media only screen and (max-width: 767px) {
	#bbwdCookieNotice{
		bottom: -440px;
	}
  #bbwdInnerCookie{
		flex-flow: column;
		justify-content: stretch;
		align-items: stretch;
		gap: 0;
	}
}

