:root {
	--primary-color: #0077be;
	--secondary-color: #33d4c5;
	--accent-color: #007c6c;
	--background-dark: #001f54;
	--background-light: #e5f6fd;
	--highlight-color: #b2fef5;
	--text-color: #fff;
	--card-background: rgba(0, 31, 84, 0.8);
	--text-secondary: #e5f6fd
}

.teal-gradient {
	background: linear-gradient(45deg, #b2fef5, #33d4c5, #007c6c);
	background: radial-gradient(circle, #b2fef5, #33d4c5, #007c6c)
}

.blue-gradient {
	background: linear-gradient(45deg, #001f54, #0077be, #e5f6fd)
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "'Segoe UI'", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif
}

body {
	background: radial-gradient(circle, #001f54, #0077be, #e5f6fd);
	color: var(--text-color);
	line-height: 1.6
}

.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	padding: 1.5rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: rgba(0, 31, 84, 0.95) 0 0;
	z-index: 1000;
	background: rgba(0, 31, 84, 0.95);
	border-bottom: 1px solid rgba(229, 246, 253, 0.1);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2)
}

.nav-links {
	display: flex;
	gap: 2rem;
	align-items: center
}

.nav-links a {
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.3s ease;
	color: var(--text-secondary);
	font-weight: 500
}

.nav-links a:hover {
	color: #b2fef5
}

.cta-button {
	background: #33d4c5;
	padding: 0.8rem 1.5rem;
	border-radius: 4px;
	color: var(--text-color);
	cursor: pointer;
	transition: all 0.3s ease;
	background: #33d4c5;
	font-weight: 600;
	box-shadow: 0 4px 15px rgba(51, 212, 197, 0.2)
}

.hero {
	flex-direction: column;
	text-align: center;
	background: radial-gradient(circle at top right, rgba(30, 58, 47, 0.3), transparent);
	min-height: 100vh;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding: 2rem;
	background: radial-gradient(circle at center, rgba(0, 119, 190, 0.2), rgba(0, 31, 84, 1))
}

.hero h1 {
	background: linear-gradient(to right, #e5f6fd, #0077be);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: fadeIn 1s ease-out;
	font-size: 5rem;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	font-weight: 800
}

.hero p {
	max-width: 600px;
	font-size: 1.2rem;
	margin-bottom: 2rem;
	opacity: 0.8
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center
}

.primary-button,
.secondary-button {
	padding: 1rem 2rem;
	border-radius: 4px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease
}

.primary-button {
	background: var(--accent-green);
	border: none;
	padding: 1rem 2rem;
	border-radius: 4px;
	transition: all 0.3s ease;
	background: linear-gradient(45deg, #33d4c5, #007c6c);
	color: #fff;
	font-weight: 600;
	box-shadow: 0 4px 15px rgba(51, 212, 197, 0.3)
}

.secondary-button {
	background: transparent;
	padding: 1rem 2rem;
	border-radius: 4px;
	transition: all 0.3s ease;
	border: 2px solid rgba(229, 246, 253, 0.3);
	color: #fff;
	font-weight: 500
}

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

.process h2,
.services h2 {
	font-size: 3.5rem;
	margin-bottom: 3rem
}



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

.process-card {
	background: rgba(30, 30, 30, 0.5) 0;
	background: rgba(30, 30, 30, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem
}

.process-card:hover {
	transform: translateY(-5px)
}

.services {
	padding: 6rem 2rem;
	background: radial-gradient(circle at bottom left, rgba(30, 58, 47, 0.2), transparent)
}

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

.service-card {
	background: var(--card-background);
	border-radius: 12px;
	padding: 2rem;
	border: 1px solid rgba(255, 255, 255, 0.1)
}

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

.plans-grid {
	margin: 4rem auto 2rem;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	padding: 0 1rem;
	max-width: 1400px
}

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

.faq-list {
	max-width: 800px;
	margin: 0 auto
}

.footer {
	padding: 6rem 2rem 2rem;
	background: linear-gradient(to top, rgba(30, 58, 47, 0.2), transparent);
	background: linear-gradient(to top, rgba(0, 31, 84, 1), rgba(0, 31, 84, 0));
	border-top: 0px solid rgba(229, 246, 253, 0.1)
}

.contact h2 {
	font-size: 3.5rem;
	margin-bottom: 1rem
}

.email {
	color: var(--primary-color);
	text-decoration: none;
	font-size: 2rem
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

@media (max-width:768px) {
	.nav-links {
		display: none
	}

	.hero h1 {
		font-size: 2.5rem
	}

	.process h2,
	.services h2 .plans h2 {
		font-size: 2rem
	}

	.hero-buttons {
		flex-direction: column
	}

	.contact h2 {
		font-size: 2.5rem
	}

	.email {
		font-size: 1.5rem
	}
}

::-webkit-scrollbar {
	width: 8px
}

::-webkit-scrollbar-track {
	background: var(--background-dark)
}

::-webkit-scrollbar-thumb {
	background: var(--primary-color);
	border-radius: 4px
}

.process-card,
.service-card {
	cursor: pointer
}

.primary-button:hover,
.secondary-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3)
}

.about {
	padding: 6rem 2rem;
	background: radial-gradient(circle at center left, rgba(30, 58, 47, 0.3), transparent)
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center
}

.core-values {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	margin-top: 2rem
}

.value-item {
	background: var(--card-background);
	padding: 1.5rem;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: transform 0.3s ease
}

.value-item:hover {
	transform: translateY(-5px)
}

.value-icon {
	font-size: 2rem;
	margin-bottom: 1rem
}

.features {
	background: radial-gradient(circle at top right, rgba(30, 58, 47, 0.2), transparent);
	padding: 2rem;
	background: radial-gradient(circle at 70% 30%, rgba(255, 119, 85, 0.05), transparent);
	max-width: 1400px;
	margin: 0 auto
}

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

.feature-card {
	background: rgba(30, 30, 30, 0.5) 0;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 2.5rem;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
	animation: fadeInUp 0.6s ease-out;
	animation-fill-mode: both
}

.feature-icon {
	width: 50px;
	height: 50px;
	width: 80px;
	height: 80px;
	background: rgba(255, 119, 85, 0.1);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	margin-left: auto;
	margin-right: auto
}

.testimonials {
	padding: 6rem 2rem
}

.testimonials-slider {
	overflow: hidden;
	position: relative
}

.testimonial-card {
	background: var(--card-background);
	padding: 2rem;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	margin: 1rem;
	max-width: 600px
}

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

.testimonial-author img {
	width: 50px;
	height: 50px;
	border-radius: 50%
}

.results {
	padding: 6rem 2rem;
	background: radial-gradient(circle at bottom left, rgba(30, 58, 47, 0.2), transparent)
}

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

.result-card {
	text-align: center;
	padding: 2rem;
	background: var(--card-background);
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.1)
}

.result-number {
	font-size: 3rem;
	font-weight: bold;
	color: var(--primary-color);
	margin-bottom: 1rem
}

.integrations {
	padding: 6rem 2rem;
	overflow: hidden
}

.integrations-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 2rem;
	margin-top: 3rem
}

.integration-item {
	background: var(--card-background);
	border-radius: 12px;
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
	flex-shrink: 0;
	padding: 0 2rem
}

.integration-item:hover {
	transform: translateY(-5px);
	border-color: var(--primary-color)
}

.cta-section {
	background: rgba(0, 31, 84, 0.9);
	border: 1px solid rgba(229, 246, 253, 0.2);
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	padding: 2.5rem;
	text-align: center;
	transition: all 0.3s ease;
	margin: 2rem auto;
	max-width: 80%;
	position: relative;
	overflow: hidden
}

.cta-section h2 {
	font-size: 3rem;
	margin-bottom: 1.5rem;
	background: radial-gradient(circle, #b2fef5, #33d4c5, #007c6c);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent
}

.cta-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	margin-top: 2rem
}

.footer-main {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 4rem;
	margin-bottom: 4rem
}

.footer-sections {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem
}

.footer-section h4 {
	margin-bottom: 1.5rem;
	color: #33d4c5;
	font-weight: 600
}

.footer-section ul {
	list-style: none
}

.footer-section ul li {
	margin-bottom: 0.8rem
}

.footer-section ul li a {
	text-decoration: none;
	opacity: 0.8;
	transition: opacity 0.3s ease;
	color: var(--text-secondary)
}

.footer-section ul li a:hover {
	opacity: 1;
	color: #b2fef5
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1)
}

.footer-social {
	display: flex;
	gap: 1.5rem
}

.social-link {
	color: var(--text-color);
	text-decoration: none;
	opacity: 0.8;
	transition: opacity 0.3s ease
}

.social-link:hover {
	opacity: 1
}

@media (max-width:768px) {
	.about-grid {
		grid-template-columns: 1fr
	}

	.core-values {
		grid-template-columns: 1fr
	}

	.footer-main {
		grid-template-columns: 1fr
	}

	.footer-sections {
		grid-template-columns: 1fr
	}

	.cta-buttons {
		flex-direction: column
	}
}

.plan-card {
	background: rgba(10, 10, 10, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 2rem;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	background: radial-gradient(circle, rgba(51, 212, 197, 0.7) 30%, rgba(0, 124, 108, 0.8) 60%, rgba(0, 62, 54, 1) 100%)
}

.plan-card:hover {
	border-color: var(--primary-color);
	transform: translateY(-5px)
}

.plan-header {
	margin-bottom: 2rem
}

.plan-type {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem
}

.plan-type.red {
	font-size: 0.9rem;
	background: linear-gradient(45deg, #FF2D55, #FF7755);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-style: bold
}

.plan-name {
	font-size: 2.5rem;
	color: var(--primary-color);
	margin: 0.5rem 0
}

.plan-name.red {
	font-size: 2.5rem;
	margin: 0.5rem 0;
	background: linear-gradient(45deg, #F75, #FF2D55);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent
}

.plan-price {
	font-size: 2.5rem;
	font-weight: bold;
	color: #33d4c5;
	text-shadow: 0 0 10px rgba(51, 212, 197, 0.3)
}

.plan-price-period {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
	opacity: 0.7;
	margin-left: 4px
}

.plan-features {
	list-style: none;
	margin: 2rem 0
}

.plan-features li {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
	gap: 1rem
}

.check-icon {
	width: 20px;
	height: 20px;
	fill: var(--text-color)
}

.plan-features .included {
	opacity: 1;
    color: #e5f6fd;
    line-height: 1.6;
    font-size: 1.1rem;
    max-width: 100%;
    opacity: 0.9;
}

.plan-features .excluded {
	opacity: 0.5;
	text-decoration: line-through
}

.plan-cta {
	width: 100%;
	padding: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: transparent;
	color: var(--text-color);
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.3s ease
}

.plan-cta:hover {
	background: var(--primary-color);
	border-color: var(--primary-color)
}

.plan-cta-price {
	width: 100%;
	padding: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: transparent;
	color: var(--text-color);
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.3s ease
}

.plan-cta-price:hover {
	background: var(--primary-color);
	border-color: var(--primary-color)
}

.featured-tag {
	position: absolute;
	top: -12px;
	right: 20px;
	background: var(--primary-color);
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.8rem;
	display: inline-block;
	color: var(--text-color);
	margin-bottom: 1rem;
	box-shadow: 0 0 30px rgba(255, 45, 85, 1), 0 0 15px rgba(255, 45, 85, 0.4)
}

.featured {
	position: relative;
	border-color: var(--primary-color);
	transform: scale(1.05)
}

.price-container {
	margin-top: 1rem
}

.cross-icon {
	width: 20px;
	height: 20px;
	fill: rgba(255, 255, 255, 0.5)
}

.plan-cta.featured {
	background: linear-gradient(45deg, #33d4c5, #007c6c);
	border-color: var(--primary-color)
}


.plan-cta.featured:hover {
	transform: translateY(-2px);
	box-shadow: 0 0 30px rgba(255, 119, 85, 0.5)
}

.plan-card.featured:hover {
	transform: scale(1.08)
}

@media screen and (max-width:1024px) {
	.plans-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
		padding: 0 1.5rem
	}

	.plan-card.featured {
		grid-column: span 2;
		transform: scale(1)
	}

	.plan-card {
		max-width: 100%
	}

	.plan-name {
		font-size: 2rem
	}

	.plan-price {
		font-size: 2rem
	}
}

@media screen and (max-width:768px) {
	.plans {
		padding: 4rem 1rem
	}

	.plans h2 {
		font-size: 2rem;
		padding: 0 1rem
	}

	.plans-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
		margin-top: 2rem;
		padding: 0 1rem
	}

	.plan-card {
		padding: 1.5rem
	}

	.plan-card.featured {
		grid-column: span 1;
		transform: scale(1)
	}

	.plan-header {
		margin-bottom: 1.5rem
	}

	.plan-type {
		font-size: 0.8rem
	}

	.plan-name {
		font-size: 1.8rem
	}

	.plan-price {
		font-size: 1.8rem
	}

	.plan-features {
		margin: 1.5rem 0
	}

	.plan-features li {
		font-size: 0.9rem;
		margin-bottom: 0.8rem
	}

	.featured-tag {
		font-size: 0.7rem;
		padding: 3px 10px;
		right: 10px
	}

	.plan-cta {
		padding: 0.8rem;
		font-size: 0.9rem
	}
}

@media screen and (max-width:480px) {
	.plans h2 {
		font-size: 1.8rem
	}

	.plan-card {
		padding: 1.2rem
	}

	.plan-name {
		font-size: 1.5rem
	}

	.plan-price {
		font-size: 1.5rem
	}

	.plan-features li {
		font-size: 0.85rem;
		gap: 0.5rem
	}

	.check-icon,
	.cross-icon {
		width: 16px;
		height: 16px
	}

	.featured-tag {
		position: static;
		display: inline-block;
		margin-bottom: 0.5rem
	}
}

@media (hover:none) {
	.plan-card:hover {
		transform: none
	}

	.plan-card.featured:hover {
		transform: none
	}

	.plan-cta:hover {
		transform: none
	}
}

@media screen and (min-width:1440px) {
	.plans-grid {
		gap: 3rem
	}

	.plan-card {
		padding: 2.5rem
	}
}

@media screen and (max-height:800px) {
	.plans {
		padding: 3rem 1rem
	}

	.plan-features li {
		margin-bottom: 0.6rem
	}
}

.process h2 {
	font-size: 4rem;
	margin-bottom: 3rem
}

.plans h2 {
	font-size: 4rem;
	margin-bottom: 3rem
}

.process-grid-wide {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem
}

.card-image {
	width: 100%;
	height: 200px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 1rem
}

.card-image img {
	max-width: 100%;
	height: auto;
	border-radius: 8px
}

.feature-header h3 {
	font-size: 1.5rem;
	color: var(--secondary-color)
}

.process-card h3 {
	font-size: 1.5rem;
	color: var(--secondary-color)
}

.process-card p {
	color: #e5f6fd;
	line-height: 1.6
}

@media (max-width:1024px) {

	.process-grid,
	.process-grid-wide {
		grid-template-columns: repeat(2, 1fr)
	}
}

@media (max-width:768px) {
	.process h2 {
		font-size: 2.5rem
	}

	.process-grid,
	.process-grid-wide {
		grid-template-columns: 1fr
	}

	.card-image {
		height: 150px
	}
}

.faq h2 {
	font-size: 4rem;
	margin-bottom: 3rem;
	color: #fff
}

.faq-container {
	display: flex;
	flex-direction: column;
	gap: 1px
}

.faq-item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1)
}

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2rem 0;
	cursor: pointer;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	color: #fff;
	font-weight: 500
}

.faq-question span {
	flex: 1
}

.arrow {
	font-size: 1.2rem;
	transition: transform 0.3s ease;
	opacity: 0.7
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
	opacity: 0
}

.faq-answer p {
	padding: 0 0 2rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.6
}

.faq-item.active .faq-question {
	color: #b2fef5
}

.faq-item.active .arrow {
	transform: rotate(45deg);
	opacity: 1
}

.faq-item.active .faq-answer {
	max-height: 300px;
	opacity: 1
}

.faq-question:hover {
	color: #33d4c5
}

.faq-question:hover .arrow {
	opacity: 1
}

@media (max-width:1024px) {
	.faq {
		padding: 2rem
	}

	.faq h2 {
		font-size: 3rem
	}
}

@media (max-width:768px) {
	.faq {
		padding: 3rem 1.5rem
	}

	.faq h2 {
		font-size: 2.5rem;
		margin-bottom: 2rem
	}

	.faq-question {
		padding: 1.5rem 0;
		font-size: 1rem
	}

	.arrow {
		font-size: 1rem
	}
}

@media (max-width:480px) {
	.faq {
		padding: 2rem 1rem
	}

	.faq h2 {
		font-size: 2rem
	}

	.faq-question {
		padding: 1.25rem 0;
		font-size: 0.9rem
	}
}

.features h2 {
	font-size: 4rem;
	margin-bottom: 4rem
}

.feature-card:hover {
	transform: translateY(-5px);
	border-color: var(--primary-color);
	box-shadow: 0 10px 30px rgba(255, 119, 85, 0.1)
}

.feature-number {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	font-size: 1.2rem;
	opacity: 0.8;
	color: #33d4c5;
	font-weight: 700;
	text-shadow: 0 0 10px rgba(51, 212, 197, 0.3)
}

.feature-content {
	display: flex;
	flex-direction: column;
	gap: 1.5rem
}

.feature-icon img {
	width: 60px;
	height: 60px
}

.feature-card h3 {
	font-size: 1.5rem;
	color: var(--secondary-color)
}


.feature-details {
	display: flex;
	flex-direction: column;
	gap: 1rem
}

.feature-details p {
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6
}

.feature-benefits {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem
}

.feature-benefits li {
	background: rgba(51, 212, 197, 0.15) 0;
	border-radius: 20px;
	font-size: 0.9rem;
	background: rgba(51, 212, 197, 0.15);
	color: #b2fef5;
	font-weight: 500
}

.feature-stats {
	margin-top: auto;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1)
}

.stat {
	display: flex;
	flex-direction: column;
	gap: 0.25rem
}

.stat-number {
	font-size: 2rem;
	font-weight: 700;
	color: #69bbeb
}

.stat-label {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.6)
}

@media (max-width:1024px) {
	.features-grid {
		grid-template-columns: 1fr
	}

	.features h2 {
		font-size: 3rem
	}
}

@media (max-width:768px) {
	.features {
		padding: 4rem 1rem
	}

	.features h2 {
		font-size: 2.5rem;
		margin-bottom: 2rem
	}

	.feature-card {
		padding: 1.5rem
	}

	.feature-benefits {
		flex-direction: column
	}
}

.feature-card:nth-child(2) {
	animation-delay: 0.2s
}

.feature-card:nth-child(3) {
	animation-delay: 0.4s
}

.feature-card:nth-child(4) {
	animation-delay: 0.6s
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

.integrations h2 {
	text-align: center;
	margin-bottom: 3rem
}

.marquee {
	width: 100%;
	overflow: hidden;
	position: relative
}

.marquee-content {
	display: flex;
	animation: marquee 30s linear infinite
}

.integration-item img {
	height: 40px;
	width: auto;
	object-fit: contain;
	filter: grayscale(1) brightness(2)
}

@keyframes marquee {
	0% {
		transform: translateX(0)
	}

	100% {
		transform: translateX(-50%)
	}
}

@media (max-width:768px) {
	.integration-item {
		padding: 0 1rem
	}

	.integration-item img {
		height: 30px
	}
}

@media (prefers-reduced-motion:reduce) {
	.marquee-content {
		animation-duration: 60s
	}
}

.hero-background {
	z-index: 1;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden
}

.grid {
	background-image: linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
	background-size: 50px 50px;
	transform: perspective(500px) rotateX(45deg);
	animation: grid-move 11s linear infinite;
	position: absolute;
	width: 200%;
	height: 200%;
	transform-style: preserve-3d;
	animation: grid-move 20s linear infinite
}

.gradient-overlay {
	background: radial-gradient(circle at 50% 50%, rgba(0, 119, 190, 0.3), rgba(0, 31, 84, 0.95));
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 50% 50%, rgba(0, 31, 84, 0) 0%, rgba(0, 31, 84, 0.8) 60%, rgba(0, 31, 84, 0.95) 100%);
	mix-blend-mode: multiply
}

.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 80%;
	animation: float 15s ease-in-out infinite
}

.gradient-text {
	background: linear-gradient(45deg, #F75, #FF2D55);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent
}

@keyframes grid-move {
	0% {
		transform: perspective(500px) rotateX(45deg) translateY(0)
	}

	100% {
		transform: perspective(500px) rotateX(45deg) translateY(-50%)
	}
}

.primary-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 0 30px rgba(255, 119, 85, 0.5)
}

.secondary-button:hover {
	background: rgba(51, 212, 197, 0.15) 0;
	background: rgba(51, 212, 197, 0.15)
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0)
	}

	50% {
		transform: translateY(-20px)
	}
}

@media (max-width:768px) {
	.hero h1 {
		font-size: 3rem
	}

	.hero-buttons {
		flex-direction: column
	}
}

.process-card,
.feature-card,
.plan-card {
    background: linear-gradient(
        45deg,
        rgba(0, 31, 84, 0.95) 0%,
        rgba(0, 49, 133, 0.9) 100%
    );
	border: 1px solid rgba(229, 246, 253, 0.2);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2)
}

h2,
h3 {
	color: #fff;
	font-weight: 700
}

p {
	color: var(--text-secondary)
}

.section-transition {
	position: relative
}

.section-transition::before,
.section-transition::after {
	content: '';
	position: absolute;
	left: 0;
	width: 100%;
	height: 150px;
	pointer-events: none
}

.section-transition::before {
	top: 0;
	background: linear-gradient(to bottom, rgba(0, 31, 84, 1), rgba(0, 31, 84, 0))
}

.section-transition::after {
	bottom: 0;
	background: linear-gradient(to top, rgba(0, 31, 84, 1), rgba(0, 31, 84, 0))
}

.gradient-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background: linear-gradient(45deg, rgba(0, 31, 84, 1), rgba(0, 119, 190, 0.8), rgba(51, 212, 197, 0.4));
	background-size: 400% 400%;
	animation: gradient 15s ease infinite
}

@keyframes gradient {
	0% {
		background-position: 0% 50%
	}

	50% {
		background-position: 100% 50%
	}

	100% {
		background-position: 0% 50%
	}
}

.noise {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: 0.05;
	background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyBAMAAADsEZWCAAAAGFBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE6d/iAAAAB3RSTlMAGwQIFQwSEQwV1AAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAAodEVYdERlc2NyaXB0aW9uAENyZWF0ZWQgd2l0aCBTa2V0Y2ggQmV0YSA0LjIQ/Qj5AAAAKHRFWHRDb3B5cmlnaHQAQ3JlYXRlZCB3aXRoIFNrZXRjaCBCZXRhIDQuMi41H0yiAAAAQklEQVQ4y2NgQAX8DIxg4M3AwAhmMDAw8DEwMDAyMDAwMzAw8DKAmQwMzEAGIwMDEwOYDWIwghhgNogBYoAY3AwMAACuNgfoYe8sLwAAAABJRU5ErkJggg==')
}

.plan-card.featured {
	background: radial-gradient(circle, rgba(0, 119, 190, 0.7) 30%, rgba(0, 77, 140, 0.8) 60%, rgba(0, 31, 84, 1) 85%, rgba(0, 15, 41, 1) 100%);
	box-shadow: 0 0 15px rgba(255, 45, 85, 1), 0 0 5px rgba(255, 45, 85, 1);
	border-radius: 10px
}

.plan-card.featured .plan-type {
	color: #fff
}

.plan-card.featured .plan-name {
	color: var(--text-color)
}

.plan-card.featured .plan-price {
	color: var(--highlight-color)
}

.plan-card.featured .plan-price-period {
	color: var(--text-color)
}

.plan-card.featured .included {
	opacity: 1;
    color: #e5f6fd;
    line-height: 1.6;
    font-size: 1.1rem;
    max-width: 100%;
    opacity: 0.9;
}

.plan-card .plan-type {
	color: #fff
}

.plan-card .plan-name {
	color: var(--text-color)
}

.plan-card .plan-price {
	color: var(--highlight-color)
}

.plan-card .plan-price-period {
	color: var(--text-color)
}

.plan-card .included {
	opacity: 1;
    color: #e5f6fd;
    line-height: 1.6;
    font-size: 1.1rem;
    max-width: 100%;
    opacity: 0.9;
}

.cta-section:hover {
	transform: translateY(-5px);
	border-color: var(--primary-color);
	box-shadow: 0 10px 30px rgba(255, 119, 85, 0.1)
}

.cta-buttons a {
	padding: 0.75rem 2rem;
	background-color: var(--primary-color);
	color: #fff;
	text-decoration: none;
	border-radius: 8px;
	transition: background-color 0.3s ease, transform 0.3s ease
}

.cta-buttons a:hover {
	background-color: rgba(255, 119, 85, 1);
	transform: scale(1.05)
}

@media (max-width:768px) {
	.cta-section {
		padding: 2rem 1.5rem;
		max-width: 90%
	}

	.cta-section h2 {
		font-size: 2.5rem;
		margin-bottom: 1.5rem
	}

	.cta-buttons {
		flex-direction: column;
		gap: 1rem
	}

	.cta-buttons a {
		width: 100%;
		text-align: center
	}

	body>section.hero.fade-in.visible>div.hero-content>h1 {
		font-size: 35px !important
	}

	body>section.hero.fade-in.visible>div.hero-content>div:nth-child(2)>p {
		font-size: 15px !important
	}
}

.grid::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(rgba(51, 212, 197, 0.15) 1px, transparent 1px), linear-gradient(90deg, rgba(51, 212, 197, 0.15) 1px, transparent 1px);
	background-size: 50px 50px;
	transform: perspective(1000px) rotateX(60deg);
	animation: pulse 4s ease-in-out infinite
}

.grid::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(rgba(0, 119, 190, 0.1) 2px, transparent 2px), linear-gradient(90deg, rgba(0, 119, 190, 0.1) 2px, transparent 2px);
	background-size: 100px 100px;
	transform: perspective(1000px) rotateX(60deg) translateZ(-50px);
	animation: pulse 4s ease-in-out infinite reverse
}

.particles {
	position: absolute;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 50% 50%, rgba(51, 212, 197, 0.1) 0%, transparent 10%), radial-gradient(circle at 80% 80%, rgba(0, 119, 190, 0.1) 0%, transparent 20%);
	animation: float 10s ease-in-out infinite
}

@keyframes grid-move {
	0% {
		transform: translateY(0) translateZ(0)
	}

	100% {
		transform: translateY(-50%) translateZ(0)
	}
}

@keyframes pulse {

	0%,
	100% {
		opacity: 0.5
	}

	50% {
		opacity: 1
	}
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0) scale(1)
	}

	50% {
		transform: translateY(-20px) scale(1.1)
	}
}

.card-image.siroka {
	width: 80%;
	height: auto;
	display: block;
	justify-content: center !important;
	align-items: center !important;
	margin-bottom: 1rem;
	margin-left: auto;
	margin-right: auto;
	text-align: center
}

.logo img {
	width: 150px;
	height: auto;
	display: block
}


.animated-container {
    height: 200px;
    width: 100%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0, 31, 84, 0.9);
    margin-bottom: 1.5rem;
}

.animated-container.wide {
    height: 250px;
}

/* Analysis Animation Styles */
.analysis-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
}

.scanning-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #33d4c5, transparent);
    animation: scan 2s linear infinite;
}

.data-points {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* Data Collection Animation Styles */
.data-streams {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* Neural Network Animation Styles */
.neural-network {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* Automation Flow Animation Styles */
.automation-flow {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* Optimization Graph Animation Styles */
.optimization-graph {
    position: absolute;
    width: 100%;
    height: 100%;
}

@keyframes scan {
    0% { transform: translateY(0); }
    100% { transform: translateY(200px); }
}

.process-card {
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(51, 212, 197, 0.2);
}

#optimization {
    position: relative;
}

.optimization-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.animation-canvas {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 12px;
}

.animated-container {
    position: relative;
    height: 200px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0, 31, 84, 0.9);
    margin-bottom: 1.5rem;
}

.animated-container.wide {
    height: 250px;
}

#aiProcessing, #automation {
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
}

#aiProcessingContainer, #automationContainer {
    position: relative;
}



.plan-card.featured {
    background: radial-gradient(
        circle,
        rgba(0, 119, 190, 0.7) 30%,  /* Medium blue center */
        rgba(0, 77, 140, 0.8) 60%,   /* Slightly darker blue mid-way */
        rgba(0, 31, 84, 1) 85%,      /* Dark blue outer edge */
        rgba(0, 15, 41, 1) 100%      /* Almost black edge */
      );
      
      box-shadow: 0 0 15px rgba(255, 45, 85, 1), /* Red glow */
      0 0 5px rgba(255, 45, 85, 1); /* Softer inner red glow */

border-radius: 10px; /* Optional for rounded edges */
}
.plan-card {
    background: radial-gradient(
        circle,
        rgba(51, 212, 197, 0.7) 30%,  /* Medium teal center */
        rgba(0, 124, 108, 0.8) 60%,  /* Dark teal towards mid */
        rgba(0, 62, 54, 1) 100%      /* Almost black edge */
    );

}

.plan-card.featured .plan-type {
    color: white
    }

.plan-card.featured .plan-name {
    color: var(--text-color)
    }

.plan-card.featured .plan-price {
    color: var(--highlight-color)
    }

.plan-card.featured .plan-price-period {
    color: var(--text-color)
    }
    
.plan-card.featured .included {
	opacity: 1;
    color: #e5f6fd;
    line-height: 1.6;
    font-size: 1.1rem;
    max-width: 100%;
    opacity: 0.9;
}



    
.plan-card .plan-type {
    color: white
    }

.plan-card .plan-name {
    color: var(--text-color)
    }

.plan-card .plan-price {
    color: var(--highlight-color)
    }

.plan-card .plan-price-period {
    color: var(--text-color)
    }
    
.plan-card .included {
	opacity: 1;
    color: #e5f6fd;
    line-height: 1.6;
    font-size: 1.1rem;
    max-width: 100%;
    opacity: 0.9;
}



.plan-card .plan-type {
    color: white
    }


    .featured-tag {
        background: var();
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-size: 0.8rem;
        display: inline-block;
        color: var(--text-color);
        margin-bottom: 1rem;
        box-shadow: 0 0 30px rgba(255, 45, 85, 1), /* Red glow */
        0 0 15px rgba(255, 45, 85, 0.4);
    }
    
    .hero {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        padding: 2rem;
    }
    
    #hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        max-width: 80%;
    }


.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center,
        rgba(0, 31, 84, 0) 0%,
        rgba(0, 31, 84, 0.2) 50%,
        rgba(0, 31, 84, 0.8) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Adjust the hero content z-index to appear above the overlay */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 80%;
}


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

.features-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-block {
    background: rgba(0, 31, 84, 0.7);
    border: 1px solid rgba(51, 212, 197, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(51, 212, 197, 0) 0%,
        rgba(51, 212, 197, 0.5) 50%,
        rgba(51, 212, 197, 0) 100%
    );
}

.feature-block:hover {
    transform: translateY(-5px);
    border-color: rgba(51, 212, 197, 0.4);
    box-shadow: 0 10px 30px rgba(51, 212, 197, 0.1);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-header i {
    font-size: 2rem;
    color: #33d4c5;
}

.feature-header h3 {
	font-size: 1.5rem;
	color: var(--secondary-color)
}

.feature-description p {
    color: #e5f6fd;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-metrics {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.metric-circle {
    position: relative;
    width: 60px;
    height: 60px;
}

.circular-chart {
    width: 60px;
    height: 60px;
}

.circle-bg {
    fill: none;
    stroke: rgba(51, 212, 197, 0.2);
    stroke-width: 2.8;
}

.circle {
    fill: none;
    stroke: #33d4c5;
    stroke-width: 2.8;
    stroke-linecap: round;
    animation: progress 1s ease-out forwards;
}

.percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1rem;
    font-weight: bold;
    color: #33d4c5;
}

.metric-label {
    color: #e5f6fd;
    font-size: 0.9rem;
    opacity: 0.8;
}

.metric-value {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.value {
    font-size: 2rem;
    font-weight: bold;
    color: #33d4c5;
}

.multiplier-animation {
    width: 40px;
    height: 4px;
    background: rgba(51, 212, 197, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.multiplier-bar {
    height: 100%;
    width: 100%;
    background: #33d4c5;
    animation: slide 2s infinite;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(51, 212, 197, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.pulse {
    width: 8px;
    height: 8px;
    background: #33d4c5;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.text {
    color: #33d4c5;
    font-weight: bold;
    font-size: 0.9rem;
}

@keyframes progress {
    0% {
        stroke-dasharray: 0 100;
    }
}

@keyframes slide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 1024px) {
    .features-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .features-new {
        padding: 2rem 1rem;
    }
    
    .feature-block {
        padding: 1.5rem;
    }
}


.feature-block {
    background: linear-gradient(
        145deg,
        rgba(0, 31, 84, 0.95) 0%,
        rgba(0, 49, 133, 0.9) 100%
    );
    border: 1px solid rgba(51, 212, 197, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Updated header styling */
.feature-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    width: 100%;
}

.feature-header i {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #33d4c5, #0077be);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.feature-header h3 {
	font-size: 1.5rem;
	color: var(--secondary-color)
}

/* Wave animation for AI Personalization */
.wave-container {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.wave-text {
    position: absolute;
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    z-index: 1;
}

.wave {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(45deg, #33d4c5, #0077be);
    opacity: 0.6;
    animation: wave 2s infinite;
}

.wave:nth-child(2) {
    animation-delay: 0.3s;
}

.wave:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes wave {
    0% {
        transform: scale(0.8);
        opacity: 0.6;
    }
    50% {
        opacity: 0.2;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* Updated metric label styling */
.metric-label {
    color: #e5f6fd;
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 1rem;
    font-weight: 500;
}

/* Updated feature description */
.feature-description {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

p {
    color: #e5f6fd;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
    max-width: 100%;
    opacity: 0.9;
}

.feature-description p {
    color: #e5f6fd;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
    max-width: 80%;
    opacity: 0.9;
}



/* Hover effect refinement */
.feature-block:hover {
    transform: translateY(-5px);
    border-color: rgba(51, 212, 197, 0.4);
    box-shadow: 0 10px 30px rgba(51, 212, 197, 0.1),
                0 0 0 1px rgba(51, 212, 197, 0.2);
}

/* Updated container spacing */
.features-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
    padding: 0 1rem;
}




/* Update existing feature block styles for left alignment */
.feature-block {
    background: linear-gradient(
        145deg,
        rgba(0, 31, 84, 0.95) 0%,
        rgba(0, 49, 133, 0.9) 100%
    );
    border: 1px solid rgba(51, 212, 197, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-description {
    text-align: left;
}

.feature-description p {
    margin-bottom: 2rem;
    max-width: 100%;
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Common styles for all metric containers */
.wave-container,
.bars-container,
.rings-container,
.pulse-container {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

/* Bars Animation (Lead Research) */
.bars-container {
    position: relative;
}

.bars {
    display: flex;
    gap: 6px;
    align-items: flex-end;
    height: 60px;
}

.bar {
    width: 8px;
    background: linear-gradient(to top, #33d4c5, #0077be);
    border-radius: 4px;
    animation: barHeight 1.5s ease-in-out infinite;
}

.bar:nth-child(1) { height: 30%; animation-delay: 0s; }
.bar:nth-child(2) { height: 60%; animation-delay: 0.2s; }
.bar:nth-child(3) { height: 90%; animation-delay: 0.4s; }
.bar:nth-child(4) { height: 100%; animation-delay: 0.6s; }

.bar-text {
    position: absolute;
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Rings Animation (Brand Voice) */
.rings {
    position: relative;
    width: 100%;
    height: 100%;
}

.ring {
    position: absolute;
    border: 2px solid transparent;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    border-image: linear-gradient(45deg, #33d4c5, #0077be) 1;
    animation: ringPulse 2s ease-out infinite;
}

.ring:nth-child(2) { animation-delay: 0.5s; }
.ring:nth-child(3) { animation-delay: 1s; }

.rings-text {
    position: absolute;
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    z-index: 1;
}

/* Pulse Animation (Analytics) */
.pulse-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.pulse-rings {
    position: relative;
    width: 60px;
    height: 60px;
}

.pulse-ring {
    position: absolute;
    border: 2px solid transparent;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    border-image: linear-gradient(45deg, #33d4c5, #0077be) 1;
    animation: pulsate 2s ease-out infinite;
}

.pulse-dots {
    display: flex;
    gap: 6px;
    margin-top: 10px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(45deg, #33d4c5, #0077be);
    animation: dotPulse 1.5s ease-in-out infinite;
}

.pulse-dot:nth-child(2) { animation-delay: 0.2s; }
.pulse-dot:nth-child(3) { animation-delay: 0.4s; }

.pulse-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

/* Animations */
@keyframes barHeight {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.8); }
}

@keyframes ringPulse {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(1.2); opacity: 0; }
}

@keyframes pulsate {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .feature-block {
        padding: 2rem;
    }
    
    .wave-container,
    .bars-container,
    .rings-container,
    .pulse-container {
        width: 100px;
        height: 100px;
    }
    
    .feature-header h3 {
        font-size: 1.5rem;
    }
}



/* Update the features container */
.features-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
    padding: 0 1rem;
}

/* Responsive breakpoints */
@media (max-width: 1200px) {
    .features-container {
        gap: 2rem;
        margin-top: 3rem;
    }

    .feature-block {
        padding: 2rem;
    }

    .feature-header h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 992px) {
    .features-container {
        grid-template-columns: 1fr;
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
    }

    .feature-block {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .features-new {
        padding: 3rem 1rem;
    }

    .features-new h2 {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .features-container {
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .feature-block {
        padding: 2rem;
    }

    .feature-header {
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }

    .feature-header i {
        font-size: 2rem;
    }

    .feature-header h3 {
        font-size: 1.4rem;
    }

    .feature-description p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    /* Adjust metric containers size */
    .wave-container,
    .bars-container,
    .rings-container,
    .pulse-container {
        width: 100px;
        height: 100px;
    }

    .wave-text,
    .bar-text,
    .rings-text,
    .pulse-text {
        font-size: 1.5rem;
    }

    .metric-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .features-new {
        padding: 2rem 1rem;
    }

    .features-new h2 {
        font-size: 2rem;
    }

    .features-container {
        gap: 1.25rem;
        margin-top: 1.5rem;
    }

    .feature-block {
        padding: 1.5rem;
    }

    .feature-header i {
        font-size: 1.75rem;
    }

    .feature-header h3 {
        font-size: 1.25rem;
    }

    .feature-description p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    /* Further adjust metric containers for very small screens */
    .wave-container,
    .bars-container,
    .rings-container,
    .pulse-container {
        width: 90px;
        height: 90px;
    }

    .wave-text,
    .bar-text,
    .rings-text,
    .pulse-text {
        font-size: 1.25rem;
    }

    .metric-label {
        font-size: 0.85rem;
    }

    /* Adjust animation sizes */
    .bars {
        height: 50px;
    }

    .bar {
        width: 6px;
    }

    .pulse-dots {
        gap: 4px;
    }

    .pulse-dot {
        width: 6px;
        height: 6px;
    }
}

/* Touch device optimizations */
@media (hover: none) {
    .feature-block:hover {
        transform: none;
        box-shadow: none;
    }
}

/* Prevent layout shifts during animation */
.feature-block {
    contain: layout style paint;
}

/* Improve performance for animations on mobile */
@media (prefers-reduced-motion: reduce) {
    .wave,
    .bar,
    .ring,
    .pulse-ring,
    .pulse-dot {
        animation-duration: 3s;
    }
}

/* Safe area insets for modern mobile devices */
@supports (padding: max(0px)) {
    .features-new {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }
}

/* Optimize for different pixel ratios */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .feature-block {
        border-width: 0.5px;
    }
}

/* Improve touch targets for mobile */
.feature-block {
    touch-action: manipulation;
}

/* Add momentum scrolling for iOS */
.features-container {
    -webkit-overflow-scrolling: touch;
}

/* Prevent text size adjustment on orientation change */
.features-new {
    -webkit-text-size-adjust: 100%;
}

h2 {
    font-size: 3.5rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #fff;
    position: relative;
}

.highlight {
    background: linear-gradient(
        120deg,
        #33d4c5 0%,
        #b2fef5 45%,
        #33d4c5 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    position: relative;
    display: inline-block;
    /* Add subtle glow */
    filter: drop-shadow(0 0 8px rgba(51, 212, 197, 0.3));
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        rgba(51, 212, 197, 0) 0%,
        rgba(178, 254, 245, 0.8) 50%,
        rgba(51, 212, 197, 0) 100%
    );
    transform: scaleX(0.9);
}

/* Optional: Add a subtle animation on hover */
.highlight:hover {
    filter: drop-shadow(0 0 12px rgba(51, 212, 197, 0.4));
    transition: filter 0.3s ease;
}

@media (max-width: 768px) {
    h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    margin: 15% auto;
    padding: 20px;
    width: 90%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: white;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.close-modal {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: white;
}

.contact-btn {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border: 1px solid #333;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    transform: translateY(-2px);
}

.email-form {
    margin-top: 20px;
}

.email-form.hidden {
    display: none;
}

.form-group {
    margin-bottom: 15px;
}

.form-input {
    width: 100%;
    padding: 10px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    color: white;
}

.form-input:focus {
    outline: none;
    border-color: #666;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(145deg, #3a3a3a, #2a2a2a);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: linear-gradient(145deg, #2a2a2a, #3a3a3a);
    transform: translateY(-2px);
}


/* Modal Base Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 31, 84, 0.8);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    background: linear-gradient(
        145deg,
        rgba(0, 31, 84, 0.95) 0%,
        rgba(0, 49, 133, 0.9) 100%
    );
    margin: 10% auto;
    padding: 2.5rem;
    width: 90%;
    max-width: 500px;
    border-radius: 16px;
    border: 1px solid rgba(51, 212, 197, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
                0 0 100px rgba(51, 212, 197, 0.1);
    color: var(--text-color);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.modal-header h5 {
    font-size: 1.5rem;
    color: #33d4c5;
    font-weight: 600;
}

.close-modal {
    color: rgba(229, 246, 253, 0.6);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: #33d4c5;
    transform: rotate(90deg);
}

/* Contact Buttons */
.contact-btn {
    width: 100%;
    padding: 1rem;
    margin: 0.75rem 0;
    background: rgba(51, 212, 197, 0.1);
    border: 1px solid rgba(51, 212, 197, 0.2);
    border-radius: 12px;
    color: #e5f6fd;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-btn:hover {
    background: rgba(51, 212, 197, 0.2);
    transform: translateY(-2px);
    border-color: rgba(51, 212, 197, 0.4);
    box-shadow: 0 5px 15px rgba(51, 212, 197, 0.1);
}

/* Email Form */
.email-form {
    margin-top: 2rem;
}

.email-form h6 {
    color: #33d4c5;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-input {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 31, 84, 0.5);
    border: 1px solid rgba(51, 212, 197, 0.2);
    border-radius: 12px;
    color: #e5f6fd;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #33d4c5;
    box-shadow: 0 0 0 2px rgba(51, 212, 197, 0.1);
}

.form-input::placeholder {
    color: rgba(229, 246, 253, 0.5);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, #33d4c5, #007c6c);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(51, 212, 197, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .modal-content {
        margin: 5% auto;
        padding: 1.5rem;
    }

    .modal-header h5 {
        font-size: 1.25rem;
    }

    .contact-btn {
        padding: 0.875rem;
    }
}


.fade-in {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}



@media (max-width: 768px) {
	.mobile-menu-button {
		display: block;
	}

	.nav-links {
		position: fixed;
		top: 80px;
		left: 0;
		width: 100%;
		background: var(--background-dark);
		flex-direction: column;
		padding: 2rem;
		transform: translateY(-100%);
		transition: transform 0.3s ease;
	}

	.nav-links.active {
		transform: translateY(0);
	}
}


.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(51, 212, 197, 0.2);
    background: rgba(0, 31, 84, 0.7);
    color: #e5f6fd;
}

.social-button i {
    font-size: 1.2rem;
}

.social-button.linkedin {
    background: linear-gradient(
        145deg,
        rgba(0, 119, 181, 0.1),
        rgba(0, 119, 181, 0.2)
    );
}

.social-button.twitter {
    background: linear-gradient(
        145deg,
        rgba(29, 161, 242, 0.1),
        rgba(29, 161, 242, 0.2)
    );
}

.social-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(51, 212, 197, 0.1);
    border-color: rgba(51, 212, 197, 0.4);
    color: #33d4c5;
}

.social-button.linkedin:hover {
    background: linear-gradient(
        145deg,
        rgba(0, 119, 181, 0.2),
        rgba(0, 119, 181, 0.3)
    );
}

.social-button.twitter:hover {
    background: linear-gradient(
        145deg,
        rgba(29, 161, 242, 0.2),
        rgba(29, 161, 242, 0.3)
    );
}

@media (max-width: 768px) {
    .social-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .social-button i {
        font-size: 1rem;
    }
}

.legal-content {
    max-width: 800px;
    margin: 80px auto;
    padding: 20px;
    color: #fff;
}

.legal-content h1 {
    margin-bottom: 40px;
    font-size: 2.5em;
}

.legal-text h2 {
    margin: 30px 0 15px;
    font-size: 1.5em;
    color: #fff;
}

.legal-text p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}