/* Navbar CSS */

.header-sticky {
	background: hsl(var(--primary-foreground));
	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: 1.3rem;
    height: 1.3rem;
    margin-top: -5px;
    margin-right: 3px;
}

/* Hero Section CSS */

.hero-section {
	min-height: 100vh;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
}

.hero-container {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	position: relative;
	max-width: 900px;
}

.trust-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	padding: 0.625rem 1.5rem;
	margin-bottom: 2.5rem;
	border-radius: 9999px;

	background: linear-gradient(to right, hsl(var(--primary) / 0.15), hsl(var(--primary) / 0.05));

	backdrop-filter: blur(4px);
	border: 1px solid hsl(var(--primary) / 0.3);
	box-shadow: var(--shadow-sm);
}

.trust-badge-icon {
	width: 1.5rem;
	height: 1.5rem;
	color: hsl(var(--primary));
}

.trust-badge-text {
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: hsl(var(--primary));
}

.glow-orb {
	position: absolute;
	border-radius: 9999px;
	filter: blur(60px);
	animation: float 6s ease-in-out infinite;
}

.glow-orb-1 {
	position: absolute;
	top: 20px;
	left: -48px;
	height: 24rem;
	width: 24rem;
	background-color: hsl(var(--primary) / 0.2);
}

.glow-orb-2 {
	position: absolute;
	bottom: 20px;
	right: -36px;
	animation-delay: 2s;
	height: 18rem;
	width: 18rem;
	background-color: hsl(var(--primary) / 0.2);
}

.hero-title {
	font-family: "Plus Jakarta Sans", system-ui, sans-serif;
	font-weight: 700;
	font-size: 3rem;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: hsl(var(--primary-foreground));
	margin-bottom: 1rem;
}

@media (min-width: 640px) {
	.hero-title {
		font-size: 3.75rem;
	}
}

@media (min-width: 1024px) {
	.hero-title {
		font-size: 5rem;
	}
}

.hero-subtitle {
	font-family: "Plus Jakarta Sans", system-ui, sans-serif;
	font-weight: 600;
	font-size: 1.875rem;
	color: hsl(var(--foreground));
	margin-bottom: 2rem;
}

@media (min-width: 640px) {
	.hero-subtitle {
		font-size: 2.25rem;
	}
}

@media (min-width: 1024px) {
	.hero-subtitle {
		font-size: 2.8rem;
	}
}

.hero-caption {
	font-size: 1.1rem;
	font-weight: 300;
	max-width: 650px;
	margin-right: auto !important;
	margin-left: auto !important;
	margin-bottom: 1.5rem !important;
}

@media (max-width: 575.98px) {
	.hero-title {
		font-size: 2.5rem;
	}
	.hero-caption {
		font-size: 1rem;
	}
}

.stat-card {
	position: absolute;
	padding: 16px;
	border-radius: 1rem;
	backdrop-filter: blur(24px);
	background: hsl(var(--primary-foreground));
	border: 1px solid var(--border);
	box-shadow: var(--shadow-md);
	animation: float 4s ease-in-out infinite;
	min-width: 175px;
	display: none;
}

@media (min-width: 992px) {
	.stat-card {
		display: flex;
	}
}

.stat-card-1 {
	top: 0px;
	left: -20px;
	animation-delay: 0s;
}

.stat-card-2 {
	top: 20px;
	right: -24px;
	animation-delay: 1s;
}

.stat-card-3 {
	bottom: 10px;
	left: -16px;
	animation-delay: 2s;
}

.stat-card-4 {
	bottom: 0;
	right: -20px;
	animation-delay: 3s;
}

.stat-title {
	color: var(--bs-secondary-color) !important;
	font-size: 0.875rem !important;
}

.stat {
	font-size: 1.5rem;
	font-weight: 700;
}

.stat-icon-box {
	width: 2.5rem;
	height: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.75rem;
	background-color: hsl(var(--primary) / 0.1);
}

.stat-icon {
	height: 1.25rem;
	width: 1.25rem;
	color: hsl(var(--primary));
}

.hero-buttons {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

@media (min-width: 576px) {
	.hero-buttons {
		flex-direction: row;
	}
}

.button {
	width: auto;
	height: 3.5rem;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.75rem;
	padding-left: 2.5rem;
	padding-right: 2.5rem;
	border-radius: 0.75rem;
	border: none;
}

.btn-free {
	color: hsl(var(--primary-foreground));
	border-radius: 9999px;
	transition: all 300ms ease;
	box-shadow: var(--shadow-lg), var(--shadow-primary);
}

.btn-free:hover {
	background-color: hsl(var(--primary) / 0.9);
	box-shadow: var(--shadow-xl), var(--shadow-primary-md);
	transform: translateY(-0.125rem);
}

.btn-pro {
	color: hsl(var(--foreground));
	background-color: hsl(var(--primary-foreground));
	border-radius: 9999px;
	border: none;
}

.btn-pro:hover {
	color: hsl(var(--primary-foreground));
	background-color: hsl(var(--primary));
}

/* Feature CSS */

.feature-section {
	padding-top: 6rem;
	padding-bottom: 6rem;
    background-color: hsl(var(--secondary) / 0.3);
}

.feature-title {
	font-weight: 700;
	font-size: 3rem;
	margin-bottom: 1rem;
}

.feature-description {
	color: hsl(var(--muted-foreground));
	font-size: 1.1rem;
	line-height: 1.5rem;
}

@media (max-width: 575.98px) {
	.feature-title {
		font-size: 2em;
	}
	.feature-description {
		font-size: 1rem;
	}
}

#feaures-wrapper {
	max-width: 900px;
	margin: 0px;
	margin-right: auto;
	margin-left: auto;
}

.feature-card {
	padding: 1.5rem;
	height: 100%;
	background-color: hsl(var(--card));
	border: 1px solid hsl(var(--border));
	border-radius: 0.75rem;
    transition: all 0.35s ease;
}

.feature-card:hover {
	box-shadow: var(--shadow-lg);
}

.feature-icon-box {
	width: 3rem;
	height: 3rem;
	border-radius: 0.75rem;
	background: linear-gradient(to bottom right, hsl(var(--primary) / 0.2), hsl(var(--accent) / 0.1));
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
}

.feature-icon {
	width: 28px;
	height: 28px;
	color: hsl(var(--primary));
}

.feature-card:hover .feature-icon-box {
	background-color: hsl(var(--primary));
}

.feature-card:hover .feature-icon {
    color: hsl(var(--primary-foreground));
}

/* Encryption Demo */

.encryption-step-wrapper {
  background-color: hsl(var(--background));
  padding: 2rem;
  border: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-sm);
}

.encryption-step-title {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  text-align: center;
  margin-bottom: 2rem;
}

.encryption-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.encryption-step  .icon-box {
  width: 4rem;
  height: 4rem;
  margin-bottom: 0.75rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: hsl(var(--cyan) / 0.1);
}

.encryption-step .icon {
  width: 2rem;
  height: 2rem;
  color: hsl(var(--primary));
}

.encryption-step .title {
    font-weight: 500;
    color: hsl(var(--foreground));
}

.encryption-step .caption {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.encryption-step-arrow {
  font-size: 1.5rem;
  color: hsl(var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(90deg);
  height: 100%;
}

@media (min-width: 768px) {
  .encryption-step-arrow {
    transform: rotate(0deg);
  }
}

/* Platform  CSS */

#platforms{
    padding: 5rem 1.5rem;
    background: hsl(var(--navy));
}

.platform-title {
    color: hsl(var(--primary-foreground));
    font-weight: 700 !important;
}

.platform-wrapper {
    max-width: 900px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
}

.platform-card{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: hsl(var(--primary));
    padding: 0.75rem 1.5rem;
    border-radius: 50rem;
    min-width: 120px;
    background-color: hsl(var(--primary) / 0.2);
}

.platform-card:hover{
  color: hsl(var(--primary-foreground));
  background-color: hsl(var(--primary));
}

.platform-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: hsl(var(--primary));
}

.platform-card:hover .platform-icon{
  color: hsl(var(--primary-foreground));
}

/* technical deep dive */

.tech-fl {
	padding-top: 5rem;
	padding-bottom: 5rem;
	background-color: hsl(var(--secondary) / 0.3);
	color: hsl(var(--foreground));
}

.tech-header {
	text-align: center;
	margin-bottom: 4rem;
}

.tech-title {
	font-size: 2.25rem;
	font-weight: bold;
	margin-bottom: 1rem;
}

@media (min-width: 768px) {
	.tech-title {
		font-size: 3rem;
	}
}

.tech-caption {
	color: hsl(var(--muted-foreground));
	font-size: 1.125rem;
	max-width: 42rem;
	margin-left: auto;
	margin-right: auto;
}

/* tech Accordian */

.tech-btn {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.tech-icon-box {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 0.5rem;
	background-color: hsl(var(--primary) / 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease;
}

.tech-icon {
	width: 1.25rem;
	height: 1.25rem;
	color: hsl(var(--primary));
}

.tech-btn-title {
	font-weight: 600;
	color: hsl(var(--foreground));
}

.tech-btn-caption {
	font-size: 0.875rem;
	line-height: 1.25rem;
	color: hsl(var(--muted-foreground));
	margin-bottom: 0px;
}

.tech-icon-box:hover {
	background-color: hsl(var(--primary) / 0.2);
}

.tech-list {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: hsl(var(--muted-foreground));
	opacity: 1;
}

.tech-list-icon {
	width: 1rem;
	height: 1rem;
	color: hsl(var(--primary));
	flex-shrink: 0;
	margin-top: 0.125rem;
}

#techAccordion .accordion-item {
	border-radius: 0.375rem;
	margin-bottom: 1rem;
}

#techAccordion .accordion-button {
	padding: 1.5rem;
	box-shadow: none !important;
	background: none !important;
}

#techAccordion .accordion-item.active {
	border: 1px solid hsl(var(--primary)) !important;
}

#techAccordion .accordion-item.active .accordion-button {
	border-bottom: 1px solid hsl(var(--primary)) !important;
}

#techAccordion .accordion-item.active .tech-icon-box {
	background-color: hsl(var(--primary));
}

#techAccordion .accordion-item.active .tech-icon {
	color: hsl(var(--primary-foreground));
}

/* tech cards */

.card-container {
	background: hsl(var(--navy));
	border-radius: 1rem;
	padding: 2rem;
	opacity: 1;
	transform: none;
	height: 100%;
}

.card-icon {
	width: 3rem;
	height: 3rem;
	color: hsl(var(--primary));
	margin: 0 auto 0.75rem auto;
}

.card-title {
	font-size: 1.125rem;
	font-weight: 600;
	color: hsl(var(--primary-foreground));
}

.card-caption {
	font-size: 0.875rem;
	color: hsl(var(--primary-foreground) / 0.6);
	margin-top: 0.25rem;
}

/* tech card 1 */

.dots-wrapper {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.dot {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s ease;
	background-color: hsl(var(--secondary) / 0.4);
}

.encryption-container {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.encryption-card {
	padding: 1rem;
	padding: 0.75rem 1rem;
	background-color: hsl(var(--primary) / 0.2);
	border: 1px solid hsl(var(--primary) / 0.3);
	width: 48%;
	/* flex: 1 1 48%; */
	width: 48%;
}

.encryption-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: hsl(var(--primary));
	font-family: monospace;
}

.encryption-caption {
	font-size: 0.75rem;
	color: hsl(var(--primary-foreground) / 0.6);
}

/* tech card 2 */

.device-card {
	padding: 1rem;
	border-radius: 1rem;
	background-color: hsl(var(--primary) / 0.1);
	border: 2px solid hsl(var(--primary));
	margin-bottom: 1rem;
	box-shadow: hsl(var(--primary) / 0.2) 0px 0px 13.7px 3.42px;
}

.device-header {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
}

.device-icon {
	width: 1.25rem;
	height: 1.25rem;
	color: hsl(var(--primary));
}

.device-title {
	font-weight: 600;
	color: hsl(var(--primary-foreground));
}

.device-badge {
	margin-left: auto;
	padding: 0.125rem 0.5rem;
	font-size: 0.75rem;
	border-radius: 0.375rem;
	background-color: hsl(var(--primary) / 0.2);
	color: hsl(var(--primary));
}

.device-features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.5rem;
}

.device-feature-card {
	padding: 0.5rem;
	border-radius: 0.5rem;
	background-color: hsl(var(--primary) / 0.2);
	text-align: center;
}

.device-feature-icon {
	width: 1rem;
	height: 1rem;
	color: hsl(var(--primary));
	display: block;
	margin: 0 auto 0.25rem auto;
}

.device-feature-label {
	font-size: 0.75rem;
	color: hsl(var(--primary-foreground) / 0.6);
}

.cloud-card {
	padding: 1rem;
	border-radius: 1rem;
	background-color: hsl(var(--primary) / 0.2);
	border: 1px solid hsl(var(--primary) / 0.3);
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.cloud-header {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.5rem;
}

.cloud-icon {
	width: 1.25rem;
	height: 1.25rem;
	color: hsl(var(--primary-foreground) / 0.6);
}

.cloud-title {
	font-weight: 600;
	color: hsl(var(--primary-foreground));
}

.cloud-badge {
	margin-left: auto;
	padding: 0.125rem 0.5rem;
	font-size: 0.75rem;
	border-radius: 0.375rem;
	background-color: hsl(var(--primary) / 0.3);
	color: hsl(var(--primary-foreground) / 0.6);
}

.cloud-content {
	font-family: monospace;
	font-size: 0.75rem;
	color: hsl(var(--primary-foreground) / 0.6);
	word-break: break-all;
}

/* tech card 3 */

.key-item {
	padding: 0.75rem;
	border-radius: 0.5rem;
	background-color: hsl(var(--primary) / 0.2);
	border: 1px solid hsl(var(--primary) / 0.3);
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.key-label {
	font-size: 0.75rem;
	color: hsl(var(--primary-foreground) / 0.6);
}

.key-value {
	font-family: monospace;
	color: hsl(var(--primary-foreground));
}

.key-method {
	display: flex;
	justify-content: center;
	margin: 1rem 0;
}

.key-iteration {
	padding: 0.25rem 0.75rem;
	border-radius: 0.375rem;
	background-color: hsl(var(--primary) / 0.2);
	color: hsl(var(--primary));
	font-family: monospace;
	font-size: 0.875rem;
	text-align: center;
}

.key-salt {
	padding: 0.75rem;
	border-radius: 0.5rem;
	background-color: hsl(var(--primary) / 0.2);
	border: 1px solid hsl(var(--primary) / 0.3);
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.key-salt .key-label {
	font-size: 0.75rem;
	color: hsl(var(--primary-foreground) / 0.6);
	margin-bottom: 0.25rem;
}

.key-salt .key-value {
	font-family: monospace;
	color: hsl(var(--primary-foreground));
	font-size: 0.75rem;
}

.iteration-box {
	display: flex;
	justify-content: center;
	margin: 1rem 0;
}

.iteration-icon {
	width: 1.5rem;
	height: 1.5rem;
	color: hsl(var(--primary));
	animation: bounce 1s infinite;
}

@keyframes bounce {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-0.25rem);
	}
}

.key-derived {
	padding: 0.75rem;
	border-radius: 0.5rem;
	background-color: hsl(var(--primary) / 0.1);
	border: 2px solid hsl(var(--primary));
	box-shadow: hsl(var(--primary) / 0.173) 0px 0px 8.5px 1.7px;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	animation: bounce-shadow 1s infinite;
}

.key-derived .key-label {
	font-size: 0.75rem;
	color: hsl(var(--primary));
	margin-bottom: 0.25rem;
}

.key-derived .key-value {
	font-family: monospace;
	font-size: 0.75rem;
	color: hsl(var(--primary-foreground));
}

@keyframes bounce-shadow {
	0%,
	100% {
		box-shadow: hsl(var(--primary) / 0.298) 0px 0px 15px 3px;
	}
	50% {
		box-shadow: hsl(var(--primary) / 0.094) 0px 0px 4.7px 0.94px;
	}
}

/* tech card 4 */

.protection-item {
	padding: 1rem;
	border-radius: 0.75rem;
	background-color: hsl(var(--secondary) / 0.2);
	border: 1px solid hsl(var(--secondary) / 0.3);
	margin-bottom: 10px;
}

.item-1 {
	background-color: hsl(var(--primary) / 0.2);
	border-color: hsl(var(--primary) / 0.4);
}

.item-2 {
	background-color: hsl(var(--primary) / 0.3);
	border-color: hsl(var(--primary) / 0.5);
}

.item-3 {
	background-color: hsl(var(--primary) / 0.4);
	border-color: hsl(var(--primary) / 0.6);
}

.item-4 {
	background-color: hsl(var(--primary) / 0.5);
	border-color: hsl(var(--primary) / 0.7);
}

.item-5 {
	background-color: hsl(var(--primary) / 0.6);
	border-color: hsl(var(--primary) / 0.8);
}

.protection-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.protection-content .title {
	font-weight: 500;
	color: hsl(var(--primary-foreground));
}

.protection-content .caption {
	font-size: 0.75rem;
	color: hsl(var(--primary-foreground) / 0.6);
	font-family: monospace;
}

.protection-caption {
	font-size: 0.75rem;
	text-align: center;
	color: hsl(var(--primary-foreground) / 0.6);
}

/* Why folder lock */

.why {
    padding-top: 6rem;
    padding-bottom: 6rem;
    color: hsl(var(--primary-foreground));
    background-color: hsl(var(--navy));
}

.why-header {
    text-align: center;
    margin-bottom: 4rem;
}

.why-title {
    font-size: 2.25rem;
    font-weight: bold;
    color: hsl(var(--white));
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .why-title {
        font-size: 3rem;
    }
}

.why-caption {
    color: hsl(var(--primary-foreground) / 0.7);
    font-size: 1.125rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.why-card {
    height: 100%;
    background-color: hsl(var(--navy-light) / 0.5);
    border: 1px solid hsl(var(--primary-foreground) / 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.why-card:hover {
    border-color: hsl(var(--primary) / 0.5);
    background-color: hsl(var(--navy-light) / 0.7);
}

.why-card .icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: hsl(var(--navy) / 0.5);
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s;
}

.why-card:hover .icon-box,
.why-card .icon-box:hover {
	rotate: 5deg;
}

.icon {
    width: 2rem;
    height: 2rem;
    color: hsl(var(--primary-foreground));
}

.why-card .title {
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(var(--primary-foreground));
    margin-bottom: 0.75rem;
}

.why-card .caption {
    color: hsl(var(--primary-foreground) / 0.7);
    line-height: 1.625;
}


/* Pricing */

.pricing {
	padding-top: 6rem;
	padding-bottom: 6rem;
	background-color: hsl(var(--secondary) / 0.3);
}

.pricing .container {
	max-width: 900px;
}

.price-title {
	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-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-size: 2.25rem;
	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 {
    color: hsl(var(--primary-foreground));
    border-radius: 9999px;
    transition: all 300ms ease;
    box-shadow: var(--shadow-lg), var(--shadow-primary);
}

.price-btn-pro:hover {
    box-shadow: var(--shadow-xl), var(--shadow-primary-md);
    transform: translateY(-0.125rem);
}

.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);
}

/* FAQS */

.faq {
	padding: 6rem;
}

.faq-title {
	font-weight: 700;
	font-size: 2.5rem;
	color: #1a1a1a;
	letter-spacing: -0.5px;
}

.faq-title span {
	color: hsl(var(--primary));
}

.faq-subtitle {
	color: hsl(var(--muted-foreground));
	font-size: 1.1rem;
	margin-bottom: 3rem;
}

.accordion-item {
	background-color: hsl(var(--card));
	border: 1px solid hsl(var(--border)) !important;
	border-radius: var(--radius) !important;
	margin-bottom: 1.5rem;
	box-shadow: var(--shadow-soft);
	overflow: hidden;
	transition: transform 0.2s ease;
}

.accordion-item:hover {
	transform: translateY(-2px);
}

.accordion-button {
	padding: 1.25rem 1.5rem;
	font-weight: 500;
	color: hsl(var(--navy));
	background-color: transparent !important;
	box-shadow: none !important;
	display: flex;
	align-items: center;
}

.accordion-button:not(.collapsed) {
	color: hsl(var(--navy));
}

.accordion-button::after {
	display: none;
}

.accordion-button::before {
	content: "\F285";
	font-family: "bootstrap-icons";
	margin-right: 15px;
	font-size: 0.8rem;
	color: hsl(var(--navy));
	transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::before {
	transform: rotate(90deg);
	color: hsl(var(--navy));
}

.accordion-body {
	padding: 0 1.5rem 1.5rem 3.2rem;
	color: hsl(var(--muted-foreground));
	line-height: 1.6;
}

@media (max-width: 768px) {
	.faq-title {
		font-size: 2rem;
	}
}

.faq-note {
	font-weight: 600;
	color: hsl(var(--navy));
}

/* Clients */

.clients {
	background-color: hsl(var(--secondary) / 0.3);
	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;
	color: hsl(var(--muted-foreground));
}

.clients-row {
	display: flex;
	justify-content: space-between;
	white-space: nowrap;
}

.company-logo-text {
	font-size: 1.125rem;
	line-height: 1.6;
	font-weight: 600 !important;
	transition: color 0.3s ease;
	color: hsl(var(--muted-foreground) / 0.6);
}

.company-logo-text:hover {
	text-decoration: none;
	color: hsl(var(--muted-foreground)) !important;
}

/* Call to Action */

.cta {
	padding-top: 6rem;
	padding-bottom: 6rem;
	position: relative;
}

.floating-background {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
}

.circle-1 {
	position: absolute;
	top: 25%;
	left: 50%;
	transform: translateX(-50%);
	width: 800px;
	height: 800px;
	border-radius: 50%;
	background: radial-gradient(circle, hsl(var(--primary) / 0.25) 0%, transparent 60%);
}

.circle-2 {
	position: absolute;
	top: 0;
	right: 0;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(26, 162, 230, 0.08) 0%, transparent 60%);
}

.circle-3 {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(153, 51, 204, 0.05) 0%, transparent 60%);
}

.circle-4 {
	position: absolute;
	inset: 0;
	opacity: 0.03;
	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: 60px 60px;
}

.float-ball {
	position: absolute;
	width: 0.25rem;
	height: 0.25rem;
	border-radius: 9999px;
	background-color: hsl(var(--primary) / 0.3);
}

.ball-1 {
	top: 77.1964%;
	left: 97.647%;
	animation: 7.48591s ease-in-out 0.262735s infinite normal none running float;
}

.ball-2 {
	top: 32.4401%;
	left: 16.9495%;
	animation: 5.27646s ease-in-out 1.15334s infinite normal none running float;
}

.ball-3 {
	top: 80.8776%;
	left: 63.3764%;
	animation: 6.5212s ease-in-out 1.62014s infinite normal none running float;
}

.ball-4 {
	top: 17.9564%;
	left: 65.8219%;
	animation: 4.08814s ease-in-out 1.63142s infinite normal none running float;
}

.ball-5 {
	top: 56.9209%;
	left: 77.4412%;
	animation: 5.62354s ease-in-out 1.2263s infinite normal none running float;
}

.ball-6 {
	top: 48.6864%;
	left: 85.1559%;
	animation: 4.8489s ease-in-out 1.29365s infinite normal none running float;
}

.ball-7 {
	top: 79.8114%;
	left: 80.1187%;
	animation: 5.97966s ease-in-out 1.61563s infinite normal none running float;
}

.ball-8 {
	top: 27.4496%;
	left: 11.7178%;
	animation: 5.49171s ease-in-out 1.78403s infinite normal none running float;
}

.ball-9 {
	top: 87.3451%;
	left: 0.430479%;
	animation: 5.08229s ease-in-out 0.188217s infinite normal none running float;
}

.ball-10 {
	top: 14.4642%;
	left: 0.383618%;
	animation: 6.95165s ease-in-out 1.38143s infinite normal none running float;
}

.ball-11 {
	top: 37.4511%;
	left: 44.6668%;
	animation: 5.09384s ease-in-out 0.86188s infinite normal none running float;
}

.ball-12 {
	top: 45.9702%;
	left: 62.5593%;
	animation: 6.39928s ease-in-out 1.54111s infinite normal none running float;
}

.ball-13 {
	top: 15.6592%;
	left: 60.6254%;
	animation: 4.10641s ease-in-out 1.04339s infinite normal none running float;
}

.ball-14 {
	top: 90.5281%;
	left: 89.0328%;
	animation: 7.16984s ease-in-out 0.041545s infinite normal none running float;
}

.ball-15 {
	top: 21.2101%;
	left: 60.881%;
	animation: 4.20712s ease-in-out 0.283809s infinite normal none running float;
}

.ball-16 {
	top: 9.89849%;
	left: 50.0189%;
	animation: 7.4082s ease-in-out 0.753249s infinite normal none running float;
}

.ball-17 {
	top: 90.7422%;
	left: 13.9897%;
	animation: 7.68514s ease-in-out 0.402133s infinite normal none running float;
}

.ball-18 {
	top: 43.7718%;
	left: 1.65364%;
	animation: 4.53034s ease-in-out 0.982138s infinite normal none running float;
}

.ball-19 {
	top: 32.9365%;
	left: 79.0472%;
	animation: 6.06447s ease-in-out 0.172795s infinite normal none running float;
}

.ball-20 {
	top: 69.9697%;
	left: 57.9887%;
	animation: 7.44362s ease-in-out 0.152057s infinite normal none running float;
}

.cta-title {
	font-size: 3.5rem;
	font-weight: 700;
	color: hsl(var(--primary-foreground));
	margin-bottom: 1.5rem;
}

.cta-caption {
	font-size: 1.25rem;
	color: hsl(var(--primary-foreground) / 0.8);
	margin-bottom: 2.5rem;
	margin-left: auto;
	margin-right: auto;
	max-width: 600px;
}

@media (max-width: 575.98px) {
	.cta-title {
		font-size: 2.5rem !important;
	}
	.cta-caption {
		font-size: 1rem !important;
	}
}

.cta-stats {
	margin-top: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap !important;
	gap: 1.5rem;
	color: hsl(var(--primary-foreground) / 0.7);
}

.stat-item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem !important;
}

.cta-stat-icon {
	width: 1.25rem;
	height: 1.25rem;
}

.cta-buttons {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

@media (min-width: 576px) {
	.cta-buttons {
		flex-direction: row;
	}
}

/* Footer CSS */

.footer {
	padding: 3rem 1rem;
	color: hsl(var(--primary-foreground));
	background-color: hsl(var(--foreground));
}

.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;
}