/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Nunito",  sans-serif;
  --nav-font: "Inter",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #3d4348; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #3e5055; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #388da8; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #313336;  /* The default color of the main navmenu links */
  --nav-hover-color: #77b6ca; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #313336; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #77b6ca; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

:root {
	--primary: #2563eb;
	--secondary: #8b5cf6;
	--accent: #f59e0b;
	--dark: #1f2937;
	--light: #f8fafc;
	--bs-primary: #4f46e5;
    --bs-primary-dark: #4338ca;
    --bs-gradient: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-primary-dark) 100%);
}

body {
	font-family: 'Inter', sans-serif;
	color: #374151;
	line-height: 1.6;
}

.header {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
	padding: 1rem 0;
	transition: all 0.3s ease;
}

.header.scrolled {
	padding: 0.1rem 0;
}

.logo {
	font-weight: 800;
	font-size: 1.8rem;
	color: var(--primary);
	text-decoration: none;
}

.navmenu ul {
	display: flex;
	gap: 2rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.navmenu a {
	color: var(--dark);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
	position: relative;
}

.navmenu a:hover,
.navmenu a.active {
	color: var(--primary);
}

.navmenu a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary);
	transition: width 0.3s ease;
}

.navmenu a:hover::after,
.navmenu a.active::after {
	width: 100%;
}

.hero-section {
	position: relative;
	height: 100vh;
	overflow: hidden;
}

.hero-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.9) 0%, rgba(139, 92, 246, 0.8) 100%);
}

.hero-content {
	position: relative;
	z-index: 2;
}

.btn-primary {
	background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
	border: none;
	padding: 1rem 2.5rem;
	font-weight: 600;
	border-radius: 50px;
	transition: all 0.3s ease;
	box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
	color: #FFF;
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
}

.btn-consult {
    background: linear-gradient(135deg, #ff9f43 0%, #f39c12 100%);
    border: none;
	padding: 1rem 2.5rem;
	font-weight: 600;
	border-radius: 50px;
	transition: all 0.3s ease;
	box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
	color: #FFF;
}

.button-group-custom {
	display: flex;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
}

/* Адаптивность */
@media (max-width: 768px) {
	.button-group-custom {
		gap: 1.5rem;
	}
	
	.btn-primary,
	.btn-consult {
		padding: 0.875rem 2rem;
		font-size: 0.95rem;
	}
}

@media (max-width: 576px) {
	.button-group-custom {
		flex-direction: column;
		gap: 1rem;
		align-items: center;
	}
	
	.btn-primary,
	.btn-consult {
		width: 100%;
		max-width: 280px;
	}
}

.btn-consult:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
}

.badge {
	padding: 0.5rem 1.5rem;
	border-radius: 25px;
	font-weight: 500;
}

.section-title {
	position: relative;
	margin-bottom: 3rem;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
	border-radius: 2px;
}

.card {
	border: none;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 2rem;
	color: white;
}

.process-step {
	position: relative;
	padding: 2rem;
	background: white;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	margin-bottom: 2rem;
}

.step-number {
	position: absolute;
	top: -15px;
	left: -15px;
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.2rem;
}

.faq-item {
	border: none;
	border-radius: 15px;
	margin-bottom: 1rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.faq-button {
	padding: 1.5rem;
	font-weight: 600;
	color: var(--dark);
	text-decoration: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: white;
	border-radius: 15px;
	transition: all 0.3s ease;
}

.faq-button:hover {
	color: var(--primary);
}

.faq-button[aria-expanded="true"] {
	color: var(--primary);
	background: var(--light);
}

.pricing-card {
	border: 2px solid transparent;
	transition: all 0.3s ease;
}

.pricing-card.featured {
	border-color: var(--primary);
	transform: scale(1.05);
}

.pricing-card.featured .pricing-header {
	background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
	color: white;
}

.footer {
	background: var(--dark);
	color: white;
	padding: 4rem 0 2rem;
}

.footer a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer a:hover {
	color: white;
}

.social-links a {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	text-decoration: none;
}

.social-links a:hover {
	background: var(--primary);
	transform: translateY(-3px);
}

/* Анимации */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.animate {
	animation: fadeInUp 0.6s ease-out;
}

/* Адаптивность */
@media (max-width: 768px) {
	.navmenu ul {
		flex-direction: column;
		gap: 1rem;
	}
	
	.hero-content h1 {
		font-size: 2.5rem;
	}
	
	.pricing-card.featured {
		transform: scale(1);
		margin: 1rem 0;
	}
}
		
		
/*--------------------------------------------------------------
# SEO
--------------------------------------------------------------*/


.hero-section {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	color: white;
}
.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
	pointer-events: none;
}
.hero-content {
	position: relative;
	z-index: 2;
}
.hero-badge {
	background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
	color: white;
	padding: 12px 25px;
	border-radius: 30px;
	font-size: 1.1rem;
	font-weight: 600;
	display: inline-block;
	margin: 30px 0px;
	animation: pulse 2s infinite;
}
.hero-title {
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 20px;
	background: linear-gradient(135deg, #ffffff 0%, #e6e6e6 100%);
	-webkit-background-clip: text;
	background-clip: text;
	font-family: var(--heading-font);
}
.hero-subtitle {
	font-size: 1.4rem;
	opacity: 0.9;
	margin-bottom: 40px;
	line-height: 1.6;
}
.hero-stats {
	display: flex;
	gap: 30px;
	margin-bottom: 50px;
	flex-wrap: wrap;
}
.stat-item {
	text-align: center;
}
.stat-number {
	font-size: 2.5rem;
	font-weight: 800;
	background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
}
.stat-label {
	font-size: 0.9rem;
	opacity: 0.8;
	margin-top: 5px;
}
.btn-hero {
	padding: 18px 40px;
	font-size: 1.2rem;
	font-weight: 600;
	border-radius: 50px;
	transition: all 0.3s ease;
	margin-right: 20px;
	margin-bottom: 20px;
}

.btn-outline-light {
	border: 3px solid rgba(255, 255, 255, 0.3);
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
}
.btn-outline-light:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.5);
}
.hero-image {
	position: relative;
	animation: float 6s ease-in-out infinite;
}
.hero-platforms {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-top: 30px;
	flex-wrap: wrap;
}
.platform-item {
	background: rgba(255, 255, 255, 0.1);
	padding: 10px 20px;
	border-radius: 25px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}
.floating-elements {
	position: absolute;
	width: 100%;
	height: 100%;
	pointer-events: none;
}
.floating-element {
	position: absolute;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	animation: float 6s ease-in-out infinite;
}
.element-1 {
	width: 80px;
	height: 80px;
	top: 20%;
	left: 10%;
	animation-delay: 0s;
}
.element-2 {
	width: 50px;
	height: 50px;
	top: 60%;
	left: 15%;
	animation-delay: 2s;
}
.element-3 {
	width: 70px;
	height: 70px;
	top: 30%;
	right: 10%;
	animation-delay: 4s;
}
.element-4 {
	width: 40px;
	height: 40px;
	top: 70%;
	right: 20%;
	animation-delay: 1s;
}
@keyframes float {
	0%, 100% { transform: translateY(0px) rotate(0deg); }
	50% { transform: translateY(-20px) rotate(10deg); }
}
@keyframes pulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.05); }
}
.scroll-indicator {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	animation: bounce 2s infinite;
}
@keyframes bounce {
	0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
	40% { transform: translateX(-50%) translateY(-10px); }
	60% { transform: translateX(-50%) translateY(-5px); }
}
@media (max-width: 768px) {
	.hero-title {
		font-size: 2.5rem;
	}
	.hero-subtitle {
		font-size: 1.1rem;
	}
	.hero-stats {
		gap: 20px;
	}
	.stat-number {
		font-size: 2rem;
	}
}
/*--------------------------------------------------------------
# Блок болей
--------------------------------------------------------------*/
 .pain-points {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	position: relative;
	overflow: hidden;
}
.pain-points h2 {
	color: #FFF;
}
.pain-points::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100" opacity="0.05"><circle cx="50" cy="50" r="40" fill="white"/></svg>');
	pointer-events: none;
}
.pain-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 20px;
	transition: all 0.3s ease;
	height: 100%;
	position: relative;
	overflow: hidden;
	color: white;
}
.pain-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	transition: left 0.5s ease;
}
.pain-card:hover::before {
	left: 100%;
}
.pain-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	background: rgba(255, 255, 255, 0.15);
}
.problem-icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 2rem;
	background: rgba(255, 255, 255, 0.2);
	border: 2px solid rgba(255, 255, 255, 0.3);
}
.problem-number {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 4rem;
	font-weight: 900;
	opacity: 0.1;
	line-height: 1;
}
.card-title {
	font-weight: 700;
	margin-bottom: 1rem;
	position: relative;
	padding-bottom: 10px;
}
.card-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 3px;
	background: linear-gradient(90deg, #ff6b6b, #ee5a24);
	border-radius: 2px;
}
.stats-badge {
	background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
	color: white;
	padding: 8px 15px;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 600;
	display: inline-block;
	margin-bottom: 15px;
}
.solution-hint {
	background: rgba(39, 174, 96, 0.2);
	border-left: 4px solid #27ae60;
	padding: 15px;
	border-radius: 8px;
	margin-top: 20px;
	font-size: 0.9rem;
}
.pulse-animation {
	animation: pulse 2s infinite;
}
@keyframes pulse {
	0% { transform: scale(1); }
	50% { transform: scale(1.05); }
	100% { transform: scale(1); }
} 
.roi-calculator {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}
.calculator-card {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	border-radius: 25px;
	padding: 40px;
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
	color: #2c3e50;
}
.form-range {
	height: 12px;
	border-radius: 10px;
}
.form-range::-webkit-slider-thumb {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border: none;
	height: 25px;
	width: 25px;
}
.form-range::-moz-range-thumb {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border: none;
	height: 25px;
	width: 25px;
}
.result-card {
	background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
	color: white;
	border-radius: 20px;
	padding: 30px;
	text-align: center;
	margin-top: 30px;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.5s ease;
}
.result-card.show {
	opacity: 1;
	transform: translateY(0);
}
.roi-value {
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1;
	margin: 10px 0;
}
.comparison-badge {
	background: rgba(255, 255, 255, 0.2);
	padding: 8px 15px;
	border-radius: 20px;
	font-size: 0.9rem;
	margin: 10px 0;
}
.input-group {
	background: rgba(255, 255, 255, 0.15);
	border-radius: 15px;
	padding: 15px;
	margin-bottom: 20px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	overflow: hidden;
	transition: all 0.3s ease;
}
.input-group:focus-within {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.3);
	transform: translateY(-2px);
}
.input-label {
	font-weight: 600;
	margin-bottom: 5px;
}
.input-icon {
	width: 50px;
	height: 50px;
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.2rem;
}
.scenario-buttons {
	display: flex;
	gap: 10px;
	margin-bottom: 20px;
}
.scenario-btn {
	flex: 1;
	border: 2px solid #667eea;
	background: transparent;
	color: #667eea;
	border-radius: 15px;
	padding: 10px;
	transition: all 0.3s ease;
}
.scenario-btn.active {
	background: #667eea;
	color: white;
	transform: scale(1.05);
}
.negative-roi {
	background: linear-gradient(135deg, #ff4757 0%, #ff6b81 100%) !important;
}



.usp {
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	position: relative;
	overflow: hidden;
}
.usp::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100" opacity="0.03"><circle cx="50" cy="50" r="40" fill="%23667eea"/></svg>');
	pointer-events: none;
}
.usp-item {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 30px;
	margin-bottom: 30px;
	height: 100%;
	transition: all 0.4s ease;
	border: 1px solid rgba(255, 255, 255, 0.8);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	position: relative;
	overflow: hidden;
}
.usp-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #667eea, #764ba2);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}
.usp-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.usp-item:hover::before {
	transform: scaleX(1);
}
.usp-icon {
	width: 70px;
	height: 70px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	margin-bottom: 20px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	transition: all 0.3s ease;
}
.usp-item:hover .usp-icon {
	transform: scale(1.1) rotate(5deg);
}

.investment-comparison {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border-radius: 20px;
	padding: 40px;
	margin: 50px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.comparison-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 15px 0;
	padding: 15px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	backdrop-filter: blur(10px);
}
.progress-bar {
	height: 8px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 4px;
	overflow: hidden;
	margin: 10px 0;
}
.progress-fill {
	height: 100%;
	background: linear-gradient(90deg, #ff6b6b, #ee5a24);
	border-radius: 4px;
	transition: width 1.5s ease;
}
.btn-investment {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border: none;
	padding: 15px 40px;
	font-weight: 600;
	border-radius: 25px;
	transition: all 0.3s ease;
	box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}
.btn-investment:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}
.guarantee-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background: rgba(255, 255, 255, 0.2);
	padding: 10px 20px;
	border-radius: 25px;
	font-size: 0.9rem;
	font-weight: 600;
	backdrop-filter: blur(10px);
}

.cta-form {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	position: relative;
	overflow: hidden;
	color: white;
}
.cta-form::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
	pointer-events: none;
}
.cta-content {
	position: relative;
	z-index: 2;
}
.cta-content h5 {
	color: #FFF;
}
.audit-badge {
	background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
	color: white;
	padding: 12px 30px;
	border-radius: 30px;
	font-size: 1.1rem;
	font-weight: 600;
	display: inline-block;
	margin-bottom: 30px;
	animation: pulse 2s infinite;
}
.form-card {
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(20px);
	border-radius: 30px;
	padding: 50px;
	margin-top: 40px;
	border: 2px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}
.input-icon {
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	color: #667eea;
	z-index: 5;
	font-size: 1.2rem;
}
.input-with-icon {
	padding-left: 60px !important;
}
.btn-audit {
	background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
	border: none;
	border-radius: 15px;
	padding: 18px 35px;
	font-size: 1.2rem;
	font-weight: 600;
	transition: all 0.4s ease;
	width: 100%;
	position: relative;
	overflow: hidden;
	color: #FFF;
}
.btn-audit::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.7s ease;
}
.btn-audit:hover::before {
	left: 100%;
}
.btn-audit:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 30px rgba(255, 107, 107, 0.4);
}
.guarantee-text {
	margin-top: 25px;
	font-size: 0.95rem;
	opacity: 0.9;
}
.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 25px;
	margin: 40px 0;
}
.benefit-item {
	text-align: center;
	padding: 25px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.15);
}
.benefit-icon {
	font-size: 2.5rem;
	color: #ff6b6b;
	margin-bottom: 15px;
}

@media (max-width: 768px) {
	.form-card {
		padding: 30px;
	}
	.benefits-grid {
		grid-template-columns: 1fr;
	}
}


.faq {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	position: relative;
	overflow: hidden;
}
.section-title {
	text-align: center;
	margin-bottom: 60px;
}
.section-title h2 {
	font-size: 3rem;
	font-weight: 800;
	color: #2c3e50;
	margin-bottom: 20px;
}
.basic{
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.faq-container {
	background: white;
	border-radius: 25px;
	padding: 50px;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
}
.faq-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #667eea, #764ba2, #ff6b6b, #ee5a24);
	animation: gradientFlow 3s ease-in-out infinite;
}
.faq-item {
	background: rgba(102, 126, 234, 0.05);
	border-radius: 15px;
	margin-bottom: 20px;
	padding: 25px 30px;
	border-left: 4px solid #667eea;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}
.faq-item:hover {
	background: rgba(102, 126, 234, 0.1);
	transform: translateX(5px);
}
.faq-item.active {
	background: rgba(102, 126, 234, 0.15);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.faq-item h3 {
	font-size: 1.3rem;
	font-weight: 600;
	color: #2c3e50;
	margin: 0;
	padding-right: 40px;
	cursor: pointer;
	transition: color 0.3s ease;
}
.faq-item:hover h3 {
	color: #667eea;
}
.faq-content {
	max-height: 0;
	overflow: hidden;
	transition: all 0.4s ease;
}
.faq-item.active .faq-content {
	max-height: 500px;
	margin-top: 20px;
}
.faq-content p {
	color: #6c757d;
	line-height: 1.7;
	margin: 0;
	font-size: 1.1rem;
}
.faq-toggle {
	position: absolute;
	right: 25px;
	top: 25px;
	font-size: 1.5rem;
	color: #667eea;
	transition: all 0.3s ease;
	cursor: pointer;
}
.faq-item.active .faq-toggle {
	transform: rotate(90deg);
	color: #ff6b6b;
}

.support-card {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border-radius: 20px;
	padding: 40px;
	text-align: center;
	margin-top: 50px;
}
.support-icon {
	font-size: 3rem;
	margin-bottom: 20px;
	color: #ff6b6b;
}
@keyframes gradientFlow {
	0%, 100% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
}
.floating-shapes {
	position: absolute;
	width: 100%;
	height: 100%;
	pointer-events: none;
}
.shape {
	position: absolute;
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
	border-radius: 50%;
	animation: float 8s ease-in-out infinite;
}
.shape-1 {
	width: 100px;
	height: 100px;
	top: 10%;
	left: 5%;
	animation-delay: 0s;
}
.shape-2 {
	width: 70px;
	height: 70px;
	bottom: 15%;
	right: 5%;
	animation-delay: 3s;
}
@keyframes float {
	0%, 100% { transform: translateY(0px) rotate(0deg); }
	50% { transform: translateY(-20px) rotate(10deg); }
}
@media (max-width: 768px) {
	.faq-container {
		padding: 30px;
	}
	.faq-item {
		padding: 20px;
	}
	.faq-item h3 {
		font-size: 1.1rem;
	}
	.section-title h2 {
		font-size: 2.5rem;
	}
	.shape {
		display: none;
	}
}




        .process-container {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        
        .process-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            width: 380px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            display: flex;
            flex-direction: column;
            transform: translateY(50px);
        }
        
   
        
        .card-header {
            padding: 35px 35px 25px;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .card-1 .card-header {
            background: linear-gradient(135deg, #4361ee 0%, #5a70f1 100%);
        }
        
        .card-2 .card-header {
            background: linear-gradient(135deg, #7209b7 0%, #8a2be2 100%);
        }
        
        .card-3 .card-header {
            background: linear-gradient(135deg, #f72585 0%, #ff4d9a 100%);
        }
        
        .card-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.1;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23000000' fill-opacity='1' fill-rule='evenodd'/%3E%3C/svg%3E");
        }
        
        .card-icon {
            font-size: 3.5rem;
            margin-bottom: 20px;
            display: block;
            background: rgba(255, 255, 255, 0.2);
            width: 90px;
            height: 90px;
            line-height: 90px;
            border-radius: 50%;
            margin: 0 auto 25px;
            position: relative;
            z-index: 2;
        }
        
        .card-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 12px;
            position: relative;
            z-index: 2;
        }
        
        .card-subtitle {
            font-size: 1.1rem;
            opacity: 0.9;
            font-weight: 500;
            position: relative;
            z-index: 2;
        }
        
        .card-body {
            padding: 30px 35px;
            flex-grow: 1;
        }
        
        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .feature-list li {
            padding: 14px 0;
            display: flex;
            align-items: center;
            border-bottom: 1px solid #f1f5f9;
            transition: all 0.2s ease;
        }
        
        .feature-list li:hover {
            background-color: #f8fafc;
            padding-left: 15px;
        }
        
        .feature-list li:last-child {
            border-bottom: none;
        }
        
        .feature-list i {
            font-size: 1.3rem;
            margin-right: 15px;
            min-width: 25px;
            text-align: center;
        }
        
        .card-1 .feature-list i {
            color: #4361ee;
        }
        
        .card-2 .feature-list i {
            color: #7209b7;
        }
        
        .card-3 .feature-list i {
            color: #f72585;
        }
        
        .card-footer {
            padding: 25px 35px;
            background: #f8f9fa;
            text-align: center;
            border-top: 1px solid #e9ecef;
        }
        
        .duration {
            display: inline-block;
            padding: 10px 25px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .card-1 .duration {
            background: linear-gradient(135deg, #4361ee 0%, #5a70f1 100%);
            color: white;
        }
        
        .card-2 .duration {
            background: linear-gradient(135deg, #7209b7 0%, #8a2be2 100%);
            color: white;
        }
        
        .card-3 .duration {
            background: linear-gradient(135deg, #f72585 0%, #ff4d9a 100%);
            color: white;
        }
        
        
        @media (max-width: 1200px) {
            .process-container {
                flex-direction: column;
                align-items: center;
            }
            
            .process-card {
                width: 100%;
                max-width: 600px;
            }
            
            .section-title {
                font-size: 2.8rem;
            }
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 2.4rem;
            }
            
            .section-subtitle {
                font-size: 1.1rem;
            }
            
            .card-body {
                padding: 25px;
            }
        }























.process-step {
	position: relative;
	text-align: center;
	padding: 25px 15px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
	height: 100%;
}
.process-step:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.step-number {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #4e54c8, #8f94fb);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 1.5rem;
	margin: 0 auto 20px;
	position: relative;
}
.step-icon {
	font-size: 2.5rem;
	margin-bottom: 15px;
	background: linear-gradient(135deg, #4e54c8, #8f94fb);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.process-wrapper {
	position: relative;
}


.pricing {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	position: relative;
	overflow: hidden;
}
.pricing-item {
	background: white;
	border-radius: 25px;
	padding: 40px;
	text-align: center;
	height: 100%;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	border: 2px solid transparent;
}
.pricing-item:hover {
	transform: translateY(-15px);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
	border-color: #667eea;
}
.pricing-item.featured {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	transform: scale(1.05);
	border: none;
}
.pricing-item.featured:hover {
	transform: scale(1.05) translateY(-15px);
}
.popular {
	position: absolute;
	top: 20px;
	right: -35px;
	background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
	color: white;
	padding: 8px 40px;
	font-size: 0.9rem;
	font-weight: 600;
	transform: rotate(45deg);
	box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}
.pricing-item h3 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 10px;
	color: #2c3e50;
}
.pricing-item.featured h3 {
	color: white;
}
.description {
	color: #6c757d;
	font-size: 1.1rem;
	margin-bottom: 25px;
}
.pricing-item.featured .description {
	color: rgba(255, 255, 255, 0.9);
}
.price {
	font-size: 3.5rem;
	font-weight: 800;
	color: #667eea;
	margin: 20px 0;
	line-height: 1;
}
.pricing-item.featured .price {
	color: white;
}
.price span {
	font-size: 1.2rem;
	font-weight: 400;
	color: #6c757d;
}
.pricing-item.featured .price span {
	color: rgba(255, 255, 255, 0.8);
}
.features-list {
	list-style: none;
	padding: 0;
	margin: 20px 0;
	text-align: left;
}
.features-list li {
	padding: 5px 0;
	display: flex;
	align-items: center;
	gap: 15px;
}
.features-list li:last-child {
	border-bottom: none;
}
.features-list .check {
	color: #28a745;
	font-size: 1.2rem;
	width: 25px;
}
.features-list .times {
	color: #dc3545;
	font-size: 1.2rem;
	width: 25px;
	opacity: 0.6;
}
.features-list .na {
	opacity: 0.5;
}
.cta-btn {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 15px 40px;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 600;
	display: inline-block;
	transition: all 0.3s ease;
	border: none;
	width: 100%;
	text-align: center;
}
.pricing-item.featured .cta-btn {
	background: white;
	color: #667eea;
	box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}
.cta-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}
.pricing-item.featured .cta-btn:hover {
	box-shadow: 0 10px 25px rgba(255, 255, 255, 0.4);
}

.value-badge {
	background: rgba(40, 167, 69, 0.1);
	color: #28a745;
	padding: 5px 12px;
	border-radius: 15px;
	font-size: 0.8rem;
	font-weight: 600;
	margin-left: 10px;
}
.floating-shapes {
	position: absolute;
	width: 100%;
	height: 100%;
	pointer-events: none;
}
.shape {
	position: absolute;
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
	border-radius: 50%;
	animation: float 8s ease-in-out infinite;
}
.shape-1 {
	width: 100px;
	height: 100px;
	top: 10%;
	left: 5%;
	animation-delay: 0s;
}
.shape-2 {
	width: 70px;
	height: 70px;
	bottom: 15%;
	right: 5%;
	animation-delay: 3s;
}
@keyframes float {
	0%, 100% { transform: translateY(0px) rotate(0deg); }
	50% { transform: translateY(-20px) rotate(10deg); }
}
@media (max-width: 768px) {
	.pricing-item.featured {
		transform: scale(1);
		margin: 20px 0;
	}
	.pricing-item.featured:hover {
		transform: translateY(-15px);
	}
	.section-title h2 {
		font-size: 2.5rem;
	}
}



.chatbot-section {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	position: relative;
	overflow: hidden;
}
.chatbot-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
	pointer-events: none;
}
.chatbot-content {
	position: relative;
	z-index: 2;
}

.chatbot-content h5 {
	color: #FFF;
}

.chatbot-card {
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(20px);
	border-radius: 30px;
	padding: 50px;
	margin: 40px auto;
	max-width: 1200px;
	border: 2px solid rgba(255, 255, 255, 0.2);
	position: relative;
	overflow: hidden;
}
.chatbot-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #ff6b6b, #ee5a24, #667eea, #764ba2);
	animation: gradientFlow 3s ease-in-out infinite;
}
.btn-chatbot {
	background: linear-gradient(135deg, #00b4db 0%, #0083b0 100%);
	border: none;
	border-radius: 25px;
	padding: 20px 50px;
	font-size: 1.3rem;
	font-weight: 600;
	color: white;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 180, 219, 0.4);
}
.btn-chatbot::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.7s ease;
}
.btn-chatbot:hover::before {
	left: 100%;
}
.btn-chatbot:hover {
	transform: translateY(-5px) scale(1.05);
	box-shadow: 0 15px 40px rgba(0, 180, 219, 0.6);
}
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 25px;
	margin: 40px 0;
}
.feature-item {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	padding: 25px;
	border-radius: 20px;
	text-align: center;
	border: 2px solid rgba(255, 255, 255, 0.15);
	transition: all 0.3s ease;
}
.feature-item:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.15);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.feature-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 2rem;
	color: white;
}
.floating-bot {
	position: absolute;
	top: 50%;
	right: 10%;
	transform: translateY(-50%);
	font-size: 8rem;
	opacity: 0.1;
	animation: float 6s ease-in-out infinite;
}
.chat-messages {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin: 30px 0;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.5s ease;
}
.chat-messages.show {
	opacity: 1;
	transform: translateY(0);
}
.message {
	padding: 15px 25px;
	border-radius: 25px;
	max-width: 70%;
	animation: messageSlide 0.5s ease-out;
}
.message-bot {
	background: rgba(255, 255, 255, 0.2);
	align-self: flex-start;
	border-bottom-left-radius: 5px;
}
.message-user {
	background: linear-gradient(135deg, #00b4db 0%, #0083b0 100%);
	align-self: flex-end;
	border-bottom-right-radius: 5px;
}
@keyframes float {
	0%, 100% { transform: translateY(-50%) rotate(0deg); }
	50% { transform: translateY(-60%) rotate(5deg); }
}
@keyframes pulse {
	0%, 100% { transform: scale(1); opacity: 1; }
	50% { transform: scale(1.05); opacity: 0.9; }
}
@keyframes gradientFlow {
	0%, 100% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
}
@keyframes messageSlide {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}
.typing-indicator {
	display: none;
	align-items: center;
	gap: 10px;
	margin-top: 20px;
}
.typing-dot {
	width: 10px;
	height: 10px;
	background: #00b4db;
	border-radius: 50%;
	animation: typing 1.4s infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
	0%, 60%, 100% { transform: scale(1); opacity: 0.5; }
	30% { transform: scale(1.5); opacity: 1; }
}
@media (max-width: 768px) {
	.chatbot-card {
		padding: 30px;
		margin: 20px;
	}
	.floating-bot {
		display: none;
	}
	.btn-chatbot {
		padding: 15px 30px;
		font-size: 1.1rem;
	}
}


.final-cta {
	background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
	position: relative;
	overflow: hidden;
	perspective: 1000px;
}
.final-cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 40%),
		radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.2) 0%, transparent 40%);
	pointer-events: none;
}
.cta-content {
	position: relative;
	z-index: 2;
}
.cta-badge {
	background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
	color: white;
	padding: 12px 30px;
	border-radius: 30px;
	font-size: 1.1rem;
	font-weight: 600;
	display: inline-block;
	margin-bottom: 20px;
	animation: pulse 2s infinite;
	box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.bonus-item {
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(20px);
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 20px;
	padding: 25px;
	text-align: center;
	min-width: 200px;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}
.bonus-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.7s ease;
}
.bonus-item:hover::before {
	left: 100%;
}
.bonus-item:hover {
	transform: translateY(-8px);
	background: rgba(255, 255, 255, 0.25);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.bonus-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
	font-size: 2rem;
	color: white;
	transition: all 0.4s ease;
}
.bonus-item:hover .bonus-icon {
	transform: scale(1.1) rotate(10deg);
	background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}
.bonuses-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin: 50px 0;
}
.bonus-title {
	font-size: 1.4rem;
	font-weight: 700;
	color: white;
	margin-bottom: 15px;
}
.bonus-description {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.1rem;
	line-height: 1.5;
}

.input-group-text {
	background: transparent;
	border: none;
	color: #ff6b6b;
	font-size: 1.1rem;
	padding: 0 10px 0 20px;
}
.btn-cta {
	background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
	border: none;
	border-radius: 20px;
	padding: 29px;
	font-size: 1.2rem;
	font-weight: 600;
	color: white;
	width: 100%;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}
.btn-cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.7s ease;
}
.btn-cta:hover::before {
	left: 100%;
}
.btn-cta:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}
.guarantee-text {
	margin-top: 25px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.95rem;
	text-align: center;
}
.floating-elements {
	position: absolute;
	width: 100%;
	height: 100%;
	pointer-events: none;
}
.floating-element {
	position: absolute;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	animation: float 8s ease-in-out infinite;
}
.element-1 {
	width: 80px;
	height: 80px;
	top: 15%;
	left: 10%;
	animation-delay: 0s;
}
.element-2 {
	width: 50px;
	height: 50px;
	top: 65%;
	left: 15%;
	animation-delay: 3s;
}
.element-3 {
	width: 70px;
	height: 70px;
	top: 25%;
	right: 10%;
	animation-delay: 6s;
}
@keyframes float {
	0%, 100% { transform: translateY(0px) rotate(0deg); }
	50% { transform: translateY(-20px) rotate(10deg); }
}
@keyframes pulse {
	0%, 100% { transform: scale(1); opacity: 1; }
	50% { transform: scale(1.05); opacity: 0.9; }
}
.cta-forma {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(15px);
	padding: 40px;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	position: relative;
	overflow: hidden;
}

.cta-forma::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #ff6b6b, #ee5a24);
}
.countdown-timer {
	background: rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(10px);
	padding: 20px;
	border-radius: 20px;
	margin-top: 25px;
	display: inline-block;
	border: 2px solid rgba(255, 255, 255, 0.4);
}
.timer-text {
	font-size: 1rem;
	margin-bottom: 8px;
	color: #2c3e50;
	font-weight: 600;
}
.timer-numbers {
	font-size: 1.5rem;
	font-weight: 700;
	color: #ff6b6b;
}
.form-control {
	background: transparent;
	border: none;
	color: white;
	padding: 15px;
	font-size: 1rem;
}

.form-control::placeholder {
	color: rgba(255, 255, 255, 0.85);
}
.form-control::-webkit-input-placeholder { color: rgba(255, 255, 255, 0.85); }
.form-control::-moz-placeholder { color: rgba(255, 255, 255, 0.85); }
.form-control:-ms-input-placeholder { color: rgba(255, 255, 255, 0.85); }
.form-control:-moz-placeholder { color: rgba(255, 255, 255, 0.85); }

.form-control:focus {
	background: transparent;
	box-shadow: none;
	color: white;
}
.guarantees-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 25px;
	margin-top: 40px;
}
.guarantee-item {
	text-align: center;
	padding: 25px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 20px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(10px);
}
.guarantee-icon {
	font-size: 2.5rem;
	color: #3a7bd5;
	margin-bottom: 15px;
}
.guarantee-item h5 {
	color: #2c3e50;
	font-weight: 700;
}
.guarantee-item p {
	color: #2c3e50;
	opacity: 0.9;
}
@media (max-width: 768px) {
	.section-title h2 {
		font-size: 2.5rem;
	}
	
	.section-title p {
		font-size: 1.1rem;
	}
	
	.bonuses-container {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.cta-form {
		padding: 30px 20px;
	}
	
	.bonus-item {
		padding: 30px 20px;
	}
	
	.bonus-icon {
		width: 70px;
		height: 70px;
		font-size: 1.8rem;
	}
}
.bgg-gradient {
	background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
}

.feature-box {
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
	height: 100%;
}
.feature-box:hover {
	transform: translateY(-10px);
}
.cta-section {
	background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
	color: white;
	padding: 80px 0;
	text-align: center;
}
.icon-box {
	width: 70px;
	height: 70px;
	background: var(--secondary);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 28px;
}

.risk-section {
	background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
	position: relative;
	overflow: hidden;
}

.risk-section::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: 
	radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.03) 0%, transparent 20%),
	radial-gradient(circle at 90% 80%, rgba(239, 68, 68, 0.03) 0%, transparent 20%);
	animation: float 20s ease-in-out infinite;
}

.guarantee-card {
	background: white;
	border: none;
	border-radius: 20px;
	padding: 2.5rem;
	height: 100%;
	position: relative;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.guarantee-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ef4444);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.guarantee-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.guarantee-card:hover::before {
	opacity: 1;
}

.guarantee-icon {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 2rem auto;
	background: linear-gradient(135deg, #3b82f6, #8b5cf6);
	color: white;
	font-size: 2.2rem;
	transition: all 0.4s ease;
	position: relative;
}

.guarantee-icon::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: linear-gradient(135deg, #3b82f6, #8b5cf6);
	opacity: 0.2;
	transform: scale(1.1);
	z-index: -1;
}

.guarantee-card:hover .guarantee-icon {
	transform: rotate(15deg) scale(1.1);
	background: linear-gradient(135deg, #ef4444, #f59e0b);
}

.guarantee-card h3 {
	color: #1e293b;
	font-weight: 700;
	margin-bottom: 1rem;
	font-size: 1.4rem;
}

.guarantee-card p {
	color: #64748b;
	line-height: 1.6;
	font-size: 1.1rem;
}
.stats-number {
	font-size: 2.5rem;
	font-weight: 800;
	background: linear-gradient(135deg, #3b82f6, #ef4444);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
	margin-bottom: 0.5rem;
}

.stats-label {
	color: #64748b;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 600;
}
.cta-button {
	background: linear-gradient(135deg, #3b82f6, #ef4444);
	border: none;
	padding: 1.2rem 3rem;
	border-radius: 50px;
	font-weight: 700;
	font-size: 1.1rem;
	color: white;
	transition: all 0.3s ease;
	box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
	color: white;
}
.guarantee-badge-context {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	background: linear-gradient(135deg, #10b981, #059669);
	color: white;
	padding: 0.5rem 1.2rem;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}
@media (max-width: 768px) {
	.guarantee-card {
		padding: 2rem;
		margin-bottom: 2rem;
	}
	
	.guarantee-icon {
		width: 70px;
		height: 70px;
		font-size: 1.8rem;
	}
	
	.stats-number {
		font-size: 2rem;
	}
}
.features-section {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}     
.feature-card {
	transition: all 0.3s ease;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.5);
	height: 100%;
	position: relative;
	overflow: hidden;
}
.feature-card:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--bs-gradient);
	opacity: 0;
	transition: opacity 0.3s ease;
}
.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.15);
}
.feature-card:hover:before {
	opacity: 1;
}
.feature-icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	background: var(--bs-gradient);
	color: white;
	font-size: 1.8rem;
	transition: all 0.3s ease;
}
.feature-card:hover .feature-icon {
	transform: scale(1.1);
	box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}
.feature-card h3 {
	font-weight: 600;
	color: #1e293b;
}
@media (max-width: 576px) {
	.row-cols-2 {
		row-gap: 1rem;
	}
	
	.feature-icon {
		width: 60px;
		height: 60px;
		font-size: 1.4rem;
	}
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}
.service-card {
	background: white;
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	text-align: center;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
	width: 70px;
	height: 70px;
	background: rgba(44, 111, 209, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	color: var(--primary);
	font-size: 28px;
}

.service-card h3 {
	margin-bottom: 15px;
	color: var(--secondary);
}