:root {
	--bg-primary: #0a0a0a;
	--bg-elevated: #141414;
	--text-primary: rgba(255, 255, 255, 0.95);
	--text-secondary: rgba(255, 255, 255, 0.6);
	--accent-green: #10b981;
	--accent-emerald: #059669;
	--accent-teal: #14b8a6;
	--accent-cyan: #06b6d4;
	--accent-lime: #84cc16;
	--accent-orange: #f59e0b;
	--glass-bg: rgba(255, 255, 255, 0.05);
	--glass-border: rgba(255, 255, 255, 0.1);
}


#site-footer{
	display: none !important;
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	background: var(--bg-primary);
	color: var(--text-primary);
	line-height: 1.6;
	overflow-x: hidden;
}

.gradient-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background: radial-gradient(ellipse at top, #0f3a2e 0%, #0a0a0a 50%);
}

.gradient-bg::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: 
		radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(20, 184, 166, 0.15) 0%, transparent 50%),
		radial-gradient(circle at 40% 60%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
	animation: gradient-shift 20s ease infinite;
}

@keyframes gradient-shift {
	0%, 100% { transform: translate(0, 0); }
	50% { transform: translate(50px, 50px); }
}

.container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
}

#site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	backdrop-filter: blur(20px);
	background: rgba(10, 10, 10, 0.8);
	border-bottom: 1px solid var(--glass-border);
}

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

.site-title.show a  {
	font-size: 1.5rem;
	font-weight: 800;
	background: linear-gradient(135deg, var(--accent-green), var(--accent-teal));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.menu-item-object-custom a{
	padding: 0.75rem 1.75rem !important;
	background: linear-gradient(135deg, var(--accent-green), var(--accent-teal)) !important;
	border: none !important;
	border-radius: 50px !important;
	color: white !important;
	font-weight: 600 !important;
	cursor: pointer !important;
	transition: all 0.3s ease !important;
	text-decoration: none !important;
	display: inline-block !important;
}

.nav-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8rem 2rem 4rem;
	position: relative;
}

.hero-content {
	text-align: center;
	max-width: 1100px;
}

.hero-badge {
	display: inline-block;
	padding: 0.5rem 1.5rem;
	background: var(--glass-bg);
	backdrop-filter: blur(10px);
	border: 1px solid var(--glass-border);
	border-radius: 50px;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 2rem;
	animation: float 3s ease-in-out infinite;
}

@keyframes float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

.hero h1 {
	font-size: clamp(2.5rem, 7vw, 6rem);
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #FFFFFF, var(--accent-green), var(--accent-teal), var(--accent-cyan));
	background-size: 200% 200%;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: hero-gradient 8s ease infinite;
}

@keyframes hero-gradient {
	0%, 100% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
}

.hero p {
	font-size: clamp(1.1rem, 2vw, 1.4rem);
	color: var(--text-secondary);
	margin-bottom: 3rem;
	line-height: 1.8;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.hero-cta-group {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 2rem;
}

.btn-primary a, .btn-secondary a{
	padding: 1.2rem 2.5rem !important;
	font-size: 1.1rem !important;
	font-weight: 600 !important;
	border-radius: 50px !important;
	cursor: pointer !important;
	transition: all 0.3s ease !important;
	border: none !important;
	text-decoration: none !important;
	display: inline-block !important;
}

.btn-primary a{
	background: linear-gradient(135deg, var(--accent-green), var(--accent-teal)) !important;
	color: white !important;
	box-shadow: 0 8px 30px rgba(16, 185, 129, 0.3) !important;
}

.btn-primary a:hover {
	transform: translateY(-3px) !important;
	box-shadow: 0 12px 40px rgba(16, 185, 129, 0.5) !important;
}

.btn-secondary a{
	background: var(--glass-bg) !important;
	backdrop-filter: blur(10px) !important;
	border: 2px solid var(--glass-border) !important;
	color: var(--text-primary) !important;
}

.btn-secondary a:hover {
	background: rgba(255, 255, 255, 0.1) !important;
	border-color: var(--accent-green) !important;
	transform: translateY(-3px) !important;
}

.trust-badges {
	display: flex;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
	font-size: 0.95rem;
	color: var(--text-secondary);
}

.trust-badge {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.glass-card {
	background: var(--glass-bg);
	backdrop-filter: blur(10px);
	border: 1px solid var(--glass-border);
	border-radius: 20px;
	padding: 2.5rem;
	transition: all 0.4s ease;
	height: 100%;
}

.glass-card:hover {
	transform: translateY(-8px);
	background: rgba(255, 255, 255, 0.08);
	border-color: var(--accent-green);
	box-shadow: 0 20px 60px rgba(16, 185, 129, 0.3);
}

section {
	padding: 8rem 2rem;
}

.section-header {
	text-align: center;
	margin-bottom: 5rem;
}

.section-badge {
	display: inline-block;
	padding: 0.5rem 1.5rem;
	background: var(--glass-bg);
	backdrop-filter: blur(10px);
	border: 1px solid var(--glass-border);
	border-radius: 50px;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: var(--accent-green);
}

.section-header h2 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 800;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, white, var(--accent-green));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.section-header p {
	font-size: 1.2rem;
	color: var(--text-secondary);
	max-width: 700px;
	margin: 0 auto;
}

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

.benefit-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, var(--accent-green), var(--accent-teal));
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	margin-bottom: 1.5rem;
	transition: all 0.3s ease;
}

.glass-card:hover .benefit-icon {
	transform: rotate(10deg) scale(1.1);
}

.glass-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	font-weight: 700;
}

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

.problems-grid {
	display: grid;
	gap: 2.5rem;
}

.problem-card {
	background: var(--glass-bg);
	backdrop-filter: blur(10px);
	border: 1px solid var(--glass-border);
	border-left: 4px solid var(--accent-green);
	border-radius: 15px;
	padding: 3rem;
	transition: all 0.3s ease;
	display: flex;
	flex-flow: column;
	justify-content: start;
/* 	gap: 1em; */
}

.problem-card:hover {
	background: rgba(255, 255, 255, 0.08);
	transform: translateX(10px);
}

.problem-card h3 {
	font-size: 1.6rem;
	color: var(--text-primary);
	font-weight: bold !important;
}
.problem-card h3, .problem-card p{
    text-align: start;
	min-width: 100%;
}

.problem-quote {
	color: #ef4444 !important;
	font-style: italic !important;
	margin-bottom: 1rem !important;
	font-size: 1.3rem !important;
	font-weight: 500 !important;
}

.solution-label {
	color: var(--accent-green) !important;
	font-weight: 700 !important;
	margin-bottom: 0.5rem !important;
	font-size: 1.3rem !important;
}

.solution-text {
	color: var(--text-secondary);
	line-height: 1.8;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2.5rem;
}

.service-number {
	font-size: 4rem;
	font-weight: 900;
	background: linear-gradient(135deg, var(--accent-green), var(--accent-teal));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	opacity: 0.3;
	margin-bottom: -1rem;
}

.testimonials {
	background: linear-gradient(180deg, rgba(16, 185, 129, 0.05), transparent);
}

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

.testimonial-quote {
	color: var(--text-secondary);
	line-height: 1.8;
	margin-bottom: 2rem;
	font-style: italic;
	font-size: 1.1rem;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.author-avatar {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--accent-green), var(--accent-teal));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
}

.author-info h4 {
	font-weight: 600;
	margin-bottom: 0.25rem;
}

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

.faq-grid {
	max-width: 900px !important;
	margin: 0 auto !important;
}

.faq-item {
/* 	margin-bottom: 2rem; */
	padding: 2rem;
	background: var(--glass-bg);
	backdrop-filter: blur(10px);
	border: 1px solid var(--glass-border);
	border-radius: 15px;
	transition: all 0.3s ease;
}

.faq-item:hover {
	background: rgba(255, 255, 255, 0.08);
}

.faq-question {
	font-size: 1.3rem !important;
	font-weight: 700 !important;
	margin-bottom: 1rem;
	color: var(--text-primary) !important;
}

.faq-answer {
	color: var(--text-secondary);
	line-height: 1.8;
}

.cta-section {
	padding: 8rem 2rem;
}

.cta-card {
	max-width: 900px;
	margin: 0 auto;
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(20, 184, 166, 0.1));
	backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 30px;
	padding: 5rem 3rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: -773px -550px;
    background: conic-gradient(from 0deg, transparent, rgba(16, 185, 129, 0.3), transparent);
    animation: rotate 4s linear infinite;
    width: 2000px;
    height: 2000px;
    border-radius: 100px;
}

@keyframes rotate {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.cta-content {
	position: relative;
	z-index: 1;
}

.cta-card h2 {
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-weight: 800;
	margin-bottom: 1.5rem;
}

.cta-card p {
	font-size: 1.2rem;
	color: var(--text-secondary);
	margin-bottom: 2.5rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

footer {
	background: var(--bg-elevated);
	border-top: 1px solid var(--glass-border);
	padding: 4rem 2rem 2rem;
}

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

.footer-column h3 {
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
}

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

.footer-column a:hover {
	color: var(--accent-green);
}

.footer-bottom {
	border-top: 1px solid var(--glass-border);
	padding-top: 2rem;
	text-align: center;
	color: var(--text-secondary);
}

@media (max-width: 768px) {
	.hero h1 {
		font-size: 2.5rem;
	}
	
	.container{
		padding: 0;
	}
	
	.glass-card{
		padding: 1.5em !important;
	}
	
	.cta-card{
		padding: 2.5rem 1rem;
	}

	.hero-cta-group {
		flex-direction: column;
	}

	.btn-primary, .btn-secondary, .btn-primary a, .btn-secondary a{
		width: 100% !important;
	}

	.benefits-grid, .services-grid, .testimonials-grid {
		grid-template-columns: 1fr;
	}

	section {
		padding: 4rem 1.5rem;
	}

	.trust-badges {
		justify-content: center;
		align-items: center;
		flex-direction: column;
		gap: 1rem;
	}
	.site-title.show{
		display: flex !important;
	}
	.problem-card{
		padding: 2em;
	}
	.problem-quote, .solution-label{
		font-size: 1em !important;
	}
	
	.cta-card::before{
		inset: -806px -888px;
	}
}








/*===================================
 *            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;
	}
}

