/* Navbar CSS */

.header-sticky {
	background-color: hsl(var(--white)) !important;
	border: 1px solid hsl(var(--border));
	top: 0;
	z-index: 1030;
	position: sticky;
}

.nav-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 0.5rem;
	background-color: hsl(var(--primary));
	border-radius: 0.5rem;
	width: 32px;
	height: 32px;
}

.logo {
    height:40px;
    width:40px;
}

.navbar-nav .nav-link:hover {
	color: hsl(var(--primary)) !important;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
	box-shadow: none;
}

.download-icon {
	color: currentColor;
	width: 1rem;
	height: 1rem;
	margin-top: -5px;
	margin-right: 3px;
}

.download-now {
	width: 1.2rem;
	height: 1.2rem;
}

/* Hero Section */

.hero-section {
	position: relative;
	min-height: 100vh;
	background: var(--gradient-hero);
	overflow: hidden;
	padding-top: 4rem;
}

.hero-background {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	border-radius: 9999px;
	filter: blur(64px);
}

.hero-bg-1 {
	top: 25%;
	left: 25%;
	width: 24rem;
	height: 24rem;
	background-color: hsl(var(--primary) / 0.2);
	animation-delay: 0s;
}

.hero-bg-2 {
	bottom: 25%;
	right: 25%;
	width: 20rem;
	height: 20rem;
	background-color: hsl(var(--primary) / 0.15);
	animation-delay: 2s;
}

.bg-circle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 9999px;
}

.bg-circle-1 {
	width: 600px;
	height: 600px;
	border: 1px solid hsl(var(--primary) / 0.1);
}

.bg-circle-2 {
	width: 800px;
	height: 800px;
	border: 1px solid hsl(var(--primary) / 0.05);
}

.hero-container {
	margin-left: auto;
	margin-right: auto;
	padding-left: 1rem;
	padding-right: 1rem;
	position: relative;
	z-index: 10;
}

.hero-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: calc(100vh - 64px);
	text-align: center;
	padding-top: 5rem;
	padding-bottom: 5rem;
}

.badge-icon-box {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding-left: 1rem;
	padding-right: 1rem;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	border-radius: 9999px;
	background-color: hsl(var(--primary) / 0.1);
	border: 1px solid hsl(var(--primary) / 0.2);
	margin-bottom: 2rem;
}

.badge-icon {
	width: 1rem;
	height: 1rem;
	color: hsl(var(--primary));
}

.badge-txt {
	font-size: 0.875rem;
	font-weight: 500;
	color: hsl(var(--primary-foreground) / 0.8);
}

.hero-title {
	font-family: var(--font-display);
	font-size: 2.25rem;
	font-weight: 700;
	color: hsl(var(--primary-foreground));
	margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
	.hero-title {
		font-size: 3.75rem;
	}
}

@media (min-width: 1024px) {
	.hero-title {
		font-size: 4.375rem;
	}
}

.hero-caption {
	font-size: 1.125rem;
	color: hsl(var(--primary-foreground) / 0.7);
	max-width: 42rem;
	margin-bottom: 2.5rem;
	animation: slideUp 0.6s ease-out forwards;
	animation-delay: 0.1s;
}

@media (min-width: 768px) {
	.hero-caption {
		font-size: 1.25rem;
	}
}

.hero-stat-title {
	font-family: var(--font-display);
	font-size: 1.875rem;
	font-weight: 700;
	color: hsl(var(--primary-foreground));
	margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
	.hero-stat-title {
		font-size: 2.25rem;
	}
}

.hero-stat-caption {
	font-size: 0.875rem;
	color: hsl(var(--primary-foreground) / 0.6);
}

.hero-rating {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.25rem;
}

.star-icon {
	width: 1.5rem;
	height: 1.5rem;
	fill: #fbbf24;
	color: #fbbf24;
}

.hero-border {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	overflow: hidden;
}

.hero-border-shape {
	width: 100%;
	display: block;
	margin-bottom: -1px;
}

.hero-border-path {
	fill: hsl(var(--background));
	stroke: white;
	stroke-width: 2;
}

/* Poweful Features */

.features {
	padding-top: 6rem;
	padding-bottom: 6rem;
	background-color: hsl(var(--background));
}

.feature-header {
	text-align: center;
	margin-bottom: 4rem;
}

.feature-title {
	font-family: var(--font-display);
	font-size: 1.875rem;
	font-weight: 700;
	color: hsl(var(--foreground));
	margin-bottom: 1rem;
}

@media (min-width: 768px) {
	.feature-title {
		font-size: 2.25rem;
	}
}

.feature-caption {
	font-size: 1.125rem;
	color: hsl(var(--muted-foreground));
	max-width: 40rem;
	margin-left: auto;
	margin-right: auto;
}

.feature-card {
	display: flex;
	flex-direction: column;
	gap: 10px;
	height: 100%;
	padding: 1.5rem;
	border-radius: 1.25rem;
	background-color: hsl(var(--card));
	border: 1px solid hsl(var(--border));
	transition: all 0.3s ease;
}

.feature-card:hover {
	border-color: hsl(var(--primary) / 30);
	box-shadow: 0 4px 20px -4px hsl(var(--primary) / 15);
}

@media (min-width: 576px) {
	
	.feature-card {
		flex-direction: row;
	}

	.feature-card > :first-child {
		flex: 1;
	}

	.feature-card > :nth-child(2) {
		flex: 4;
	}

}

.feature-icon-box {
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 0.75rem;
	background-color: hsl(var(--secondary));
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
	transition: background-color 0.3s ease;
}

.feature-card:hover .feature-icon-box,
.feature-icon-box:hover {
	background-color: hsl(var(--primary) / 10);
}

.feature-icon {
	width: 1.75rem;
	height: 1.75rem;
	color: hsl(var(--primary));
}

.feature-card:hover .feature-icon,
.feature-icon-box:hover .feature-icon {
	color: hsl(var(--primary-foreground));
}

.feature-card-title {
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 600;
	color: hsl(var(--foreground));
	margin-bottom: 0.75rem;
}

.feature-card-description {
	font-size: 0.8rem;
	line-height: 1.625;
	color: hsl(var(--muted-foreground));
}

/* How Folder Lock Works */

.how-fl {
	padding-top: 6rem;
	padding-bottom: 6rem;
	background-color: hsl(var(--muted));
}

.how-header {
	text-align: center;
	margin-bottom: 4rem;
}

.how-title {
	font-family: var(--font-display);
	font-size: 1.875rem;
	font-weight: 700;
	color: hsl(var(--foreground));
	margin-bottom: 1rem;
}

@media (min-width: 768px) {
	.how-title {
		font-size: 3rem;
	}
}

.how-caption {
	font-size: 1.125rem;
	color: hsl(var(--muted-foreground));
	max-width: 42rem;
	margin-left: auto;
	margin-right: auto;
}

.step-card {
	width: 100%;
	text-align: left;
	padding: 1.5rem;
	border-radius: 1.5rem;
	border: 1px solid hsl(var(--border));
	background-color: hsl(var(--card) / 0.5);
	transition: all 0.3s ease;
	margin-bottom: 1rem;
}

.step-card.active,
.step-card:hover {
	background-color: hsl(var(--card));
	border-color: hsl(var(--primary));
	box-shadow: var(--shadow-card);
}

.step-card-inner {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.step-icon-box {
	width: 3rem;
	height: 3rem;
	border-radius: 0.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: background-color 0.3s ease;
	background-color: hsl(var(--secondary));
}

.step-icon-box:hover,
.step-card.active .step-icon-box {
	background: var(--gradient-primary);
}

.step-icon {
	width: 1.5rem;
	height: 1.5rem;
	color: hsl(var(--primary));
}

.step-icon-box:hover .step-icon,
.step-card.active .step-icon-box .step-icon {
	color: hsl(var(--background));
}

.step-content {
	flex: 1;
}

.step-number-box {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
}

.step-number {
	font-size: 0.75rem;
	font-weight: 600;
	color: hsl(var(--primary));
}

.step-title {
	font-family: var(--font-display);
	font-size: 1.125rem;
	font-weight: 600;
	color: hsl(var(--foreground));
	margin-bottom: 0.25rem;
}

.step-caption {
	font-size: 0.875rem;
	color: hsl(var(--muted-foreground));
}

.process-container {
	padding: 2rem;
	border-radius: 1.875rem;
	background: var(--gradient-hero);
	color: hsl(var(--primary-foreground));
}

.process-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.process-icon-box {
	width: 4rem;
	height: 4rem;
	border-radius: 0.5rem;
	background-color: hsl(var(--primary) / 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
}

.process-icon {
	width: 2rem;
	height: 2rem;
	color: hsl(var(--primary-foreground));
}

.process-number {
	display: block;
	font-size: 0.875rem;
	font-weight: 600;
	color: hsl(var(--primary) / 0.8);
}

.process-title {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0;
}

.process-caption {
	color: hsl(var(--background) / 0.8);
	margin-bottom: 1.5rem;
	line-height: 1.75;
}

.process-body {
	padding: 1.5rem;
	border-radius: 1.5rem;
	background-color: hsl(var(--background) / 0.1);
	backdrop-filter: blur(10px);
}

.process-step-container {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 2rem;
}

.process-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
}

.process-icon {
	width: 2.5rem;
	height: 2.5rem;
}

.process-text {
	font-size: 0.75rem;
	line-height: 1rem;
}

.process-arrow {
	width: 1.5rem;
	height: 1.5rem;
	color: hsl(var(--primary));
}

@media (max-width: 768px) {
	.process-step-container {
		flex-direction: column;
	}

	.process-arrow {
		transform: rotate(90deg);
	}
}

/* Avaliable Platforms */

.platform {
	padding-top: 5rem;
	padding-bottom: 5rem;
	background-color: hsl(var(--background));
}

.platform-header {
	text-align: center;
	margin-bottom: 3rem;
}

.platform-title {
	font-family: var(--font-display);
	font-size: 1.875rem;
	font-weight: 700;
	color: hsl(var(--foreground));
	margin-bottom: 1rem;
}

@media (min-width: 768px) {
	.platform-title {
		font-size: 2.25rem;
	}
}

.platform-caption {
	font-size: 1.125rem;
	color: hsl(var(--muted-foreground));
}

.platform-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 3rem;
}

.platform-card {
	display: flex;
	align-items: center;
	gap: 1rem;
	min-width: 160px;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	padding-top: 1rem;
	padding-bottom: 1rem;
	border-radius: 1.25rem;
	background-color: hsl(var(--card));
	border: 1px solid hsl(var(--border));
	transition: all 0.3s ease;
}

.platform-card:hover {
	border-color: hsl(var(--primary) / 30);
	box-shadow: 0 4px 20px -4px hsl(var(--primary) / 15);
}

.platform-icon-box {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 1rem;
	background-color: hsl(var(--secondary));
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease;
}

.platform-icon-box:hover {
	background-color: hsl(var(--primary) / 10);
}

.platform-icon {
	width: 1.25rem;
	height: 1.25rem;
	color: hsl(var(--primary));
}

.platform-icon-box:hover .platform-icon {
	color: hsl(var(--primary-foreground));
}

/* Encryption Demo */

.file-card {
	max-width: 48rem;
	margin: 0 auto;
	background: hsl(var(--card));
	border: 1px solid hsl(var(--border));
	border-radius: 1.5rem;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.file-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem;
	background: rgba(0, 0, 0, 0.02);
	border-bottom: 1px solid var(--border);
}

.file-info {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.mac-dots {
	display: flex;
	gap: 0.375rem;
}

.mac-dot {
	width: 0.75rem;
	height: 0.75rem;
	border-radius: 50%;
}

.mac-dot.red {
	background: rgba(239, 68, 68, 0.6);
}

.mac-dot.yellow {
	background: rgba(234, 179, 8, 0.6);
}

.mac-dot.green {
	background: rgba(99, 102, 241, 0.6);
}

.file-name {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--foreground);
}

.file-status {
	display: flex;
	align-items: center;
}

.status-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	padding: 0.25rem 0.75rem;
	font-size: 0.75rem;
	font-weight: 500;
	border-radius: 999px;
}

.unprotected {
	background: rgba(239, 68, 68, 0.1);
	color: rgb(239, 68, 68);
}

.protected {
	background: rgba(34, 197, 94, 0.1);
    color: rgb(34, 197, 94);
}

.status-badge-icon {
	width: 0.75rem;
	height: 0.75rem;
}

.file-content {
	padding: 1.5rem;
	height: 200px;
}

.decrypt-content {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
}

.decrypt-icon {
	width: 1.5rem;
	height: 1.5rem;
}

.decrypt-text {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--foreground);
}

.content-text {
	font-family: monospace;
	font-size: 0.875rem;
	line-height: 1.6;
	color: hsl(var(--foreground));
}

.file-footer {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 1rem;
	background: rgba(0, 0, 0, 0.02);
	border-top: 1px solid hsl(var(--border));
	gap: 1rem;
}

.footer-buttons {
	display: flex;
	gap: 0.75rem;
}

.encrypt-btn {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	background-color: hsl(var(--primary));
	border: 1px solid hsl(var(--border));
	color: hsl(var(--primary-foreground));
	transition: all 0.25s ease;
	cursor: pointer;
}

.encrypt-btn:hover {
	opacity: 0.9;
}

.footer-note {
	margin-top: 1.5rem;
	text-align: center;
	font-size: 0.75rem;
	color: hsl(var(--muted-foreground));
}

.footer-note .icon {
	width: 1rem;
	height: 1rem;
	vertical-align: middle;
	margin-right: 0.25rem;
}

/* Why Folder Lock */

.why {
	padding-top: 6rem;
	padding-bottom: 6rem;
	background-color: hsl(var(--muted));
}

.why-header {
	text-align: center;
	margin-bottom: 4rem;
}

.why-title {
	font-family: var(--font-display);
	font-size: 1.875rem;
	font-weight: 700;
	color: hsl(var(--foreground));
	margin-bottom: 1rem;
}

@media (min-width: 768px) {
	.why-title {
		font-size: 3rem;
	}
}

.why-caption {
	font-size: 1.125rem;
	color: hsl(var(--muted-foreground));
	max-width: 42rem;
	margin-left: auto;
	margin-right: auto;
}

.benefit-icon {
	width: 2rem;
	height: 2rem;
	color: hsl(var(--primary-foreground));
}

.benefit-title {
	position: relative;
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 700;
	color: hsl(var(--foreground));
	margin-bottom: 0.75rem;
}

.benefit-description {
	position: relative;
	color: hsl(var(--muted-foreground));
	line-height: 1.625;
}

.benefit-card {
	height: 100%;
	padding: 2rem;
	border-radius: 1.5rem;
	background-color: hsl(var(--card));
	border: 1px solid hsl(var(--border));
	overflow: hidden;
	transition: all 0.5s ease;
}

.benefit-card:hover {
	box-shadow: var(--shadow-card);
}

.benefit-icon-box {
	width: 4rem;
	height: 4rem;
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.benefit-icon-box.icon-box-1 {
	background: linear-gradient(to bottom right, #8a2be2, #800080);
	animation-delay: 0s;
}

.benefit-icon-box.icon-box-2 {
	background: linear-gradient(to bottom right, #ffbf00, #ff6f00);
	animation-delay: 0.3s;
}

.benefit-icon-box.icon-box-3 {
	background: linear-gradient(to bottom right, #00bcd4, #2196f3);
	animation-delay: 0.6s;
}

/* Pricing */

.pricing {
	padding-top: 6rem;
	padding-bottom: 6rem;
	background-color: hsl(var(--background));
}

.price-title {
	font-family: var(--font-display);
	font-size: 1.875rem;
	font-weight: 700;
	color: hsl(var(--foreground));
	margin-bottom: 1rem;
}

@media (min-width: 768px) {
	.price-title {
		font-size: 3rem;
	}
}

.price-caption {
	font-size: 1.125rem;
	color: hsl(var(--muted-foreground));
	max-width: 42rem;
	margin-left: auto;
	margin-right: auto;
}

.price-card {
	padding: 2rem;
	border-radius: 1.5rem;
	border: 1px solid hsl(var(--border));
	background-color: hsl(var(--card));
}

.price-card-free {
	border-color: hsl(var(--border));
}

.price-card-pro {
	position: relative;
	border-color: hsl(var(--primary));
	box-shadow: 0 8px 30px -8px hsl(var(--primary) / 0.1);
}

.price-tag-box {
	position: absolute;
	top: -1rem;
	left: 50%;
	transform: translateX(-50%);
}

.price-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	padding-left: 1rem;
	padding-right: 1rem;
	padding-top: 0.375rem;
	padding-bottom: 0.375rem;
	border-radius: 9999px;
	background: var(--gradient-primary);
	color: hsl(var(--primary-foreground));
	font-size: 0.875rem;
	font-weight: 600;
	box-shadow: 0 4px 20px -4px hsl(var(--primary) / 0.15);
}

.price-icon {
	width: 1rem;
	height: 1rem;
	color: hsl(var(--primary-foreground));
}

.price-card-header {
	text-align: center;
	margin-bottom: 2rem;
}

.price-card-title {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 700;
	color: hsl(var(--foreground));
	margin-bottom: 0.5rem;
}

.price-card-badge {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 0.25rem;
	margin-bottom: 0.5rem;
}

.price-card-value {
	font-family: var(--font-display);
	font-size: 3.125rem;
	font-weight: 700;
	color: hsl(var(--foreground));
}

.price-card-caption {
	font-size: 0.875rem;
	color: hsl(var(--muted-foreground));
}

.price-btn {
	font-size: 1rem;
	font-weight: 600;
	height: 3rem;
	width: 100%;
	padding-left: 2rem;
	padding-right: 2rem;
	border: none;
	border-radius: 0.75rem;
	margin-bottom: 2rem;
}

.price-btn-free {
	border: 1px solid hsl(var(--input));
	background-color: hsl(var(--background));
}

.price-btn-free:hover {
	background-color: hsl(var(--accent));
	color: hsl(var(--accent-foreground));
}

.price-btn-pro {
	background: var(--gradient-primary);
	color: hsl(var(--primary-foreground));
	box-shadow: 0 10px 20px -4px hsl(var(--primary) / 0.2);
}

.price-btn-pro:hover {
	box-shadow: 0 0 40px hsl(var(--primary) / 0.3);
	transform: scale(1.02);
}

.price-btn-pro:active {
	transform: scale(1);
}

.pricing-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 0.625rem;
	padding-bottom: 0.625rem;
	border-bottom: 1px solid hsl(var(--border));
}

.pricing-row:last-child {
	border-bottom: none;
}

.feature-name {
	font-size: 0.875rem;
	color: hsl(var(--muted-foreground));
}

.feature-details {
	font-size: 0.875rem;
	font-weight: 500;
	color: hsl(var(--foreground));
}

.icon-check {
	width: 1.25rem;
	height: 1.25rem;
	color: hsl(var(--primary));
}

.icon-cross {
	width: 1.25rem;
	height: 1.25rem;
	color: hsl(var(--muted-foreground) / 0.5);
}

/* Clients */

.clients {
	background-color: hsl(var(--foreground));
	padding-top: 3rem !important;
	padding-bottom: 3rem !important;
}

.client-title {
	font-size: 1rem;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 3rem;
	letter-spacing: 0.1em;
}

.clients-row {
	display: flex;
	justify-content: space-between;
	white-space: nowrap;
}

.company-logo-text {
	font-size: 1.5rem;
	font-weight: 700 !important;
	color: hsl(var(--background) / 0.7);
	transition: color 0.3s ease;
}
.company-logo-text:hover {
	color: hsl(var(--white)) !important;
	text-decoration: none;
}

/* Frequently Asked Questions */

.faq {
	padding-top: 6rem;
	padding-bottom: 6rem;
	background-color: hsl(var(--background));
}

.faq-header {
	text-align: center;
	margin-bottom: 4rem;
}

.faq-title {
	font-family: var(--font-display);
	font-size: 1.875rem;
	font-weight: 700;
	color: hsl(var(--foreground));
	margin-bottom: 1rem;
}

@media (min-width: 768px) {
	.faq-title {
		font-size: 3rem;
	}
}

.faq-description {
	font-size: 1.125rem;
	color: hsl(var(--muted-foreground));
	max-width: 42rem;
	margin-left: auto;
	margin-right: auto;
}

.accordion-wrapper {
	max-width: 50rem;
	margin: auto;
}

.accordion-button:focus,
.accordion-button:not(.collapsed) {
	background-color: transparent;
	color: inherit;
	border: none;
	box-shadow: none;
}

.faq-icon-box {
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background-color: hsl(var(--secondary));
	display: flex;
	align-items: center;
	justify-content: center;
}

.faq-icon {
	width: 1rem;
	height: 1rem;
	color: hsl(var(--primary));
}

.faq-content {
	padding-top: 0;
	padding-bottom: 1.25rem;
	padding-left: 2.75rem;
	padding-right: 1rem;
	color: hsl(var(--muted-foreground));
	line-height: 1.625;
}

.faq-note {
	color: hsl(var(--dark));
	font-weight: bolder;
}

/* Call to Action */

.cta-section {
	padding-top: 6rem;
	padding-bottom: 6rem;
	position: relative;
	overflow: hidden;
}

.cta-bg {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.circle-1 {
	position: absolute;
	top: 25%;
	left: 25%;
	width: 24rem;
	height: 24rem;
	background-color: hsl(var(--primary) / 0.1);
	border-radius: 9999px;
	filter: blur(64px);
}

.circle-2 {
	position: absolute;
	bottom: 25%;
	right: 25%;
	width: 20rem;
	height: 20rem;
	background-color: hsl(var(--primary) / 0.05);
	border-radius: 9999px;
	filter: blur(64px);
}

.cta-container {
	margin-left: auto;
	margin-right: auto;
	padding-left: 1rem;
	padding-right: 1rem;
	position: relative;
	z-index: 10;
}

.cta-header {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	gap: 0.5rem;
	margin-bottom: 2rem;
}

@media (min-width: 576px) {
	.cta-header {
		flex-direction: row;
	}
}

.user-icon-box {
	width: 2rem;
	height: 2rem;
	border-radius: 9999px;
	background-color: hsl(var(--primary) / 0.3);
	border: 2px solid hsl(var(--background));
	display: flex;
	align-items: center;
	justify-content: center;
}

.user-icon {
	width: 1rem;
	height: 1rem;
	color: hsl(var(--primary-foreground) / 0.7);
}

.cta-badge {
	font-size: 0.875rem;
	color: hsl(var(--primary-foreground) / 0.7);
	margin-left: 0.5rem;
}

.cta {
	text-align: center;
	max-width: 48rem;
	margin-left: auto;
	margin-right: auto;
}

.cta-title {
	font-family: var(--font-display);
	font-size: 1.875rem;
	font-weight: 700;
	color: hsl(var(--primary-foreground));
	margin-bottom: 1.5rem;
}

.cta-caption {
	font-size: 1rem;
	color: hsl(var(--primary-foreground) / 0.7);
	margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
	.cta-title {
		font-size: 3rem;
	}
	.cta-caption {
		font-size: 1.125rem;
	}
}

.download-buttons {
	display: flex;
	gap: 1rem;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

@media (min-width: 640px) {
	.download-buttons {
		flex-direction: row;
	}
}

.download-btn {
	height: 3rem;
	padding: 0 2rem;
	border: none;
	border-radius: 10px;
	font-size: 1.125rem;
	font-weight: 500;
	white-space: nowrap;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.download-btn-free {
	color: hsl(var(--primary-foreground));
	background: var(--gradient-primary);
	box-shadow: 0 10px 15px -3px hsl(var(--primary) / 0.3), 0 4px 6px -4px hsl(var(--primary) / 0.2);
}

.download-btn-free:hover {
	box-shadow: 0 0 40px hsl(var(--primary) / 0.3);
	transform: scale(1.05);
}

.download-icon {
	width: 1.2rem;
	height: 1.2rem;
}

.group:hover .cta-download-icon {
	transform: translateX(0.25rem);
}

.download-btn-pro {
	border: 2px solid hsl(var(--primary) / 0.3);
	color: hsl(var(--primary-foreground));
	background-color: transparent;
}

.download-btn-pro:hover {
	background-color: hsl(var(--primary) / 0.1);
	border-color: hsl(var(--primary) / 0.5);
}

/* Footer CSS */

.footer {
	padding: 3rem 1rem;
	color: hsl(var(--white));
	background-color: hsl(var(--dark));
}

.contact-info {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: hsl(var(--white) / 0.5);
}

.contact-info:hover {
	color: hsl(var(--white) / 0.5) !important;
}

.copy-rights-container {
	margin-top: 1.5rem !important;
	padding-top: 1.5rem !important;
	border-top: 1px solid rgba(var(--bs-secondary-rgb));
}

.copy-rights {
	color: hsl(var(--white) / 0.5);
	font-size: 0.875em;
}
