/* Navbar CSS */

.header-sticky {
	background-color: hsl(var(--white)) !important;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	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;
}

.btn-primary {
	color: hsl(var(--primary-foreground));
	font-weight: 600;
	font-size: 0.875rem;
	padding-right: 1.5rem !important;
	padding-left: 1.5rem !important;
	padding-top: 0.5rem !important;
	padding-bottom: 0.5rem !important;
	border: none;
}

.download-icon {
	color: currentColor;
	width: 1.25rem;
	height: 1.25rem;
	margin-top: -5px;
	margin-right: 3px;
}

/* Hero Section */

.hero-section {
	padding: 7rem 0 5rem;
	background: var(--hero-bg);
	overflow: hidden;
}

.hero-card {
	background: hsl(var(--background));
	border-radius: 1.75rem;
	padding: 3rem;
	box-shadow: var(--shadow-card);
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	border-radius: 999px;
	background: hsl(var(--primary) / 0.15);
	color: hsl(var(--primary));
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	margin-bottom: 2rem;
}

.hero-badge-dot {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: hsl(var(--primary));
	animation: pulse 1.5s infinite;
}

.hero-title {
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1.1;
	color: hsl(var(--foreground));
	margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
	.hero-title {
		font-size: 3rem;
	}
}

@media (min-width: 1024px) {
	.hero-title {
		font-size: 3.75rem;
	}
}

.hero-description {
	font-size: 1.1rem;
	color: hsl(var(--muted-foreground));
	line-height: 1.7;
	margin-bottom: 2.5rem;
}

.download-buttons {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 2.5rem;
}

.download-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	border: 0px;
	border-radius: 9999px;
	padding: 0.75rem 1.5rem;
	min-width: 180px;
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.25s ease;
}

.download-btn.btn-free {
	color: hsl(var(--foreground));
	background: hsl(var(--background));
	border: 1px solid hsl(var(--border));
}

.download-btn.btn-free:hover {
	color: hsl(var(--primary-foreground));
	background: hsl(var(--primary));
}

.download-btn.btn-pro {
	font-weight: 700;
	color: hsl(var(--primary-foreground));
	background: hsl(var(--primary));
	box-shadow: var(--shadow-glow);
}

.download-btn.btn-pro:hover {
	transform: translateY(-2px);
}

.hero-stats {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.stat-card {
	flex: 1;
	min-width: 120px;
	padding: 1rem;
	border-radius: 1rem;
	background: hsl(var(--secondary));
	border: 1px solid hsl(var(--border));
}

.stat-label {
	display: block;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: hsl(var(--muted-foreground));
	margin-bottom: 0.25rem;
}

.stat-value {
	font-size: 1.1rem;
	font-weight: 800;
	color: hsl(var(--foreground));
}

.hero-visual {
	position: relative;
	height: 420px;
}

.hero-ring {
	position: absolute;
	border-radius: 50%;
	border: 1px solid hsl(var(--white) / 0.08);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.hero-ring-sm {
	width: 260px;
	height: 260px;
}

.hero-ring-lg {
	width: 360px;
	height: 360px;
	border-color: hsl(var(--white) / 0.05);
}

.hero-icon-box {
	position: relative;
	z-index: 1;
	top: 150px;
	width: 130px;
	height: 130px;
	border-radius: 1.5rem;
	background: var(--gradient-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	box-shadow: var(--shadow-glow);
	animation: float 4s ease-in-out infinite;
}

.hero-icon {
	width: 64px;
	height: 64px;
	stroke: hsl(var(--white));
	fill: none;
}

/* Features */

.features {
	padding: 6rem 1rem;
}

.feature-header {
	text-align: center;
	margin-bottom: 4rem;
}

.feature-title {
	font-size: 1.875rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

@media (min-width: 768px) {
	.feature-title {
		font-size: 2.25rem;
	}
}

.feature-caption {
	max-width: 42rem;
	margin: 0 auto;
	color: hsl(var(--muted-foreground));
}

.feature-card {
	height: 100%;
	padding: 1.5rem;
	border-radius: 1.5rem;
	background-color: hsl(var(--background));
	border: 1px solid hsl(var(--border));
	transition: all 0.3s;
}

.feature-card:hover {
	border-color: hsl(var(--primary) / 0.2);
	box-shadow: var(--shadow-card);
}

.feature-inner {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.feature-card .icon-box {
	width: 3rem;
	height: 3rem;
	border-radius: 0.75rem;
	background-color: hsl(var(--primary) / 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: color 0.3s, background-color 0.3s;
}

.feature-card:hover .icon-box {
	background-color: hsl(var(--primary));
	color: hsl(var(--primary-foreground));
}

.feature-card .icon-box .icon {
	width: 1.5rem;
	height: 1.5rem;
}

.feature-content .caption {
	font-size: 0.75rem;
	font-weight: 600;
	color: hsl(var(--primary));
	margin-bottom: 0.25rem;
	display: block;
}

.feature-content .title {
	font-weight: 600;
	font-size: 1.125rem;
	margin-bottom: 0.5rem;
}

.feature-content .description {
	font-size: 0.875rem;
	color: hsl(var(--muted-foreground));
	line-height: 1.625;
}

/* Advance protection */

.advanced-protection {
	background-color: hsl(var(--surface-dark));
	padding: 2rem;
}

@media (min-width: 768px) {
	.advanced-protection {
		padding: 3rem;
	}
}

.advanced-protection .header {
	text-align: center;
	margin-bottom: 2.5rem;
}

.advanced-protection .header .title {
	font-size: 1.5rem;
	font-weight: 700;
	color: hsl(var(--surface-dark-foreground));
	margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
	.advanced-protection .header .title {
		font-size: 1.875rem;
	}
}

.advanced-protection .description {
	max-width: 36rem;
	margin: 0 auto;
	color: hsl(var(--surface-dark-foreground) / 0.7);
}

.advanced-protection .grid {
	display: grid;
	gap: 1.5rem;
}

@media (min-width: 640px) {
	.advanced-protection .grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.advanced-protection .grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.advanced-protection .card {
	padding: 1.5rem;
	border-radius: 0.75rem;
	background-color: hsl(var(--background) / 0.05);
	border: 1px solid hsl(var(--border) / 0.1);
	transition: background-color 0.2s ease;
}

.advanced-protection .card:hover {
	background-color: hsl(var(--background) / 0.1);
}

.advanced-protection .icon-box {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 0.5rem;
	background-color: hsl(var(--primary) / 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	color: hsl(var(--primary));
}

.advanced-protection .card .title {
	font-weight: 600;
	color: hsl(var(--surface-dark-foreground));
	margin-bottom: 0.5rem;
}

.advanced-protection .card .desc {
	font-size: 0.875rem;
	color: hsl(var(--surface-dark-foreground) / 0.6);
}

/* Encryption Steps */

.tech-fl {
	padding: 6rem 0;
	background-color: hsl(var(--secondary) / 0.3);
}

.tech-header {
	text-align: center;
	margin-bottom: 4rem;
}

.tech-title {
	font-size: 1.875rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

@media (min-width: 768px) {
	.tech-title {
		font-size: 2.25rem;
	}
}

.tech-caption {
	max-width: 42rem;
	margin: 0 auto;
	color: hsl(var(--muted-foreground));
}

/* Card */
.encryption-card {
	border-radius: 1rem;
	padding: 2rem;
	border: 2px solid hsl(var(--border));
	background: hsl(var(--background));
	transition: all 0.3s ease;
	cursor: pointer;
	height: 100%;
}

.encryption-card .primary {
	background: hsl(var(--primary) / 0.1);
	border-color: hsl(var(--primary));
	box-shadow: var(--shadow-card);
}

/* Header */
.encryption-card .header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.encryption-card .header .icon {
	width: 3rem;
	height: 3rem;
	border-radius: 0.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: hsl(var(--muted));
	color: hsl(var(--muted-foreground));
}

.encryption-card .icon-primary {
	background: hsl(var(--primary));
	color: hsl(var(--primary-foreground));
}

.encryption-card .heading {
	flex: 1;
}

.encryption-card .title {
	font-size: 1.125rem;
	font-weight: 700;
}

.encryption-card .subtitle {
	font-size: 0.875rem;
	color: hsl(var(--muted-foreground));
}

/* Badge */
.encryption-card .badge {
	padding: 0.25rem 0.75rem;
	font-size: 0.75rem;
	font-weight: 600;
	border-radius: 9999px;
	background: hsl(var(--primary));
	color: hsl(var(--primary-foreground));
}

/* List */
.encryption-card .list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.encryption-card .item {
	font-size: 0.875rem;
	display: flex;
	align-items: baseline;
	gap: 0.75rem;
}

.status-icon-box {
	width: 1.25rem;
	height: 1.25rem;
	border-radius: 9999px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.status-icon-box.success {
	background-color: hsl(var(--primary) / 0.2);
	color: hsl(var(--primary));
}

.status-icon-box.warning {
	background-color: hsl(var(--destructive) / 0.2);
	color: hsl(var(--destructive));
}

.status-icon-box .icon {
	width: 0.75rem;
	height: 0.75rem;
	stroke-width: 2;
}

/* Warning */
.encryption-card .alert {
	display: flex;
	gap: 15px;
	margin-top: 1.5rem;
	padding: 1rem;
	border-radius: 0.75rem;
	background: hsl(var(--destructive) / 0.1);
	border: 1px solid hsl(var(--destructive) / 0.2);
	font-size: 0.875rem;
	color: hsl(var(--muted-foreground));
}

.encryption-card .alert .icon {
	color: hsl(var(--destructive));
	height: 1.25rem;
	width: 1.25rem;
}

.encryption-flow {
	background-color: hsl(var(--background));
	border-radius: 1rem;
	padding: 2rem;
	box-shadow: var(--shadow-card);
	border: 1px solid hsl(var(--border));
	margin-bottom: 3rem;
}

.encryption-flow-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.encryption-step-item {
	margin-bottom: 1rem;
	padding: 1rem;
	border-radius: 0.75rem;
	border: 2px solid transparent;
	cursor: pointer;
	transition: all 0.3s ease;
	background-color: hsl(var(--secondary) / 0.5);
}

.encryption-step-item:hover {
	background-color: hsl(var(--secondary));
}

.encryption-step-item.active {
	background-color: hsl(var(--primary) / 0.1);
	border-color: hsl(var(--primary));
}

.encryption-step {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.step-number {
	width: 2rem;
	height: 2rem;
	border-radius: 9999px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.875rem;
	font-weight: 700;
	background-color: hsl(var(--muted));
	color: hsl(var(--muted-foreground));
}

.step-number.active {
	background-color: hsl(var(--primary));
	color: hsl(var(--primary-foreground));
}

.step-title {
	font-weight: 600;
}

.step-caption {
	font-size: 0.875rem;
	line-height: 1.25rem;
	color: hsl(var(--muted-foreground));
}

.encryption-process {
	background-color: hsl(var(--surface-dark));
	border-radius: 0.75rem;
	padding: 2rem;
}

.encryption-process .header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 2rem;
}

.encryption-icon-box {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.5rem;
	margin-left: auto;
	margin-right: auto;
	width: 4rem;
	height: 4rem;
	border-radius: 0.75rem;
	color: hsl(var(--muted-foreground));
	background-color: hsl(var(--muted) / 0.2);
	transition: color 0.3s, background-color 0.3s;
}

.encryption-icon-box.active {
	color: hsl(var(--primary-foreground));
	background-color: hsl(var(--primary));
	animation: pulse-glow 2s infinite;
}

.encryption-icon-box .icon {
	height: 2rem;
	width: 2rem;
}

.encryption-icon-label {
	font-size: 0.875rem;
	color: hsl(var(--surface-dark-foreground) / 0.7);
}

.encryption-process-wrapper {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-left: 1rem;
	padding-right: 1rem;
}

.process-bar {
	width: 100%;
	height: 0.25rem;
	background-color: hsl(var(--muted) / 0.2);
	border-radius: 0.25rem;
	position: relative;
}

.process-bar-fill {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background-color: hsl(var(--primary));
	border-radius: 0.25rem;
	transition: all 0.5s;
}

.lock-icon {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 1.5rem;
	height: 1.5rem;
	transition: all 0.5s;
	color: hsl(var(--primary));
}

.encryption-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	border-radius: 9999px;
	background-color: hsl(var(--primary) / 0.2);
	color: hsl(var(--primary));
	font-size: 0.875rem;
	font-weight: 500;
}

.encryption-badge-caption {
	margin-top: 1rem;
	color: hsl(var(--surface-dark-foreground) / 0.7);
	font-size: 0.875rem;
}

/* Clients */

.clients {
	padding: 4rem 0;
	border-top: 1px solid hsl(var(--border));
	border-bottom: 1px solid hsl(var(--border));
	background-color: hsl(var(--secondary) / 0.3);
}

.clients-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

.clients-title {
	text-align: center;
	font-size: 0.875rem;
	font-weight: 500;
	color: hsl(var(--muted-foreground));
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 2rem;
}

.clients-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 2rem;
}

@media (min-width: 768px) {
	.clients-row {
		gap: 4rem;
	}
}

.company-logo-text {
	font-size: 1.25rem;
	font-weight: 700;
	color: hsl(var(--muted-foreground) / 0.5);
	transition: color 0.3s ease;
	cursor: default;
}

@media (min-width: 768px) {
	.company-logo-text {
		font-size: 1.5rem;
	}
}

.company-logo-text:hover {
	color: hsl(var(--muted-foreground));
}

/* pricing */

#pricing {
	padding-top: 6rem;
	padding-bottom: 6rem;
}

.pricing .container {
	max-width: 900px;
}

.price-header {
	text-align: center;
	margin-bottom: 4rem;
}

.price-title {
	font-size: 1.875rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

@media (min-width: 768px) {
	.price-title {
		font-size: 2.25rem;
	}
}

.price-caption {
	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: 0;
    top: 0;
    right: 0;
    font-size: 0.875rem;
    font-weight: 700;
}

.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-bottom-left-radius: 0.75rem;
    border-top-right-radius: 1.3rem;
	font-size: 0.875rem;
	font-weight: 600;
	background: var(--gradient-primary);
	color: hsl(var(--primary-foreground));
	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 {
    border-radius: 9999px;
    transition: all 300ms ease;
    box-shadow: var(--shadow-card);
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

.price-btn-pro:hover {
    box-shadow: var(--shadow-card-hover);
    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);
}

/* FAQ Section */
.faq {
	padding-top: 5rem;
	padding-bottom: 5rem;
}

.faq .container{
	max-width: 900px;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .faq-title {
        font-size: 2.25rem;
    }
}

.faq-caption {
    color: hsl(var(--muted-foreground));
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.accordion-item {
	border: 1px solid hsl(var(--border)) !important;
	border-radius: var(--radius) !important;
	margin-bottom: 1rem;
	overflow: hidden;
}

.accordion-button {
	padding-top: 1.25rem;
	padding-bottom: 1.25rem;
}

.accordion-button:focus {
	box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
	color: hsl(var(--primary));
	box-shadow: none !important;
	background: none !important;
	border-bottom: 1px solid hsl(var(--border));
}

.accordion-button::after {
    filter: brightness(0) saturate(100%);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) saturate(100%) invert(48%) sepia(91%) saturate(433%) hue-rotate(92deg);
}

.faq-note {
	font-weight: 600;
}

/* CTA Section */

.cta {
	padding-top: 6rem;
	padding-bottom: 6rem;
	padding-left: 1rem;
	padding-right: 1rem;
	background: var(--hero-bg);
}

.cta-title {
	font-size: 1.875rem;
	font-weight: 700;
	color: hsl(var(--surface-dark-foreground));
	margin-bottom: 1.5rem;
	text-align: center;
}

@media (min-width: 768px) {
	.cta-title {
		font-size: 2.25rem;
	}
}

.cta-caption {
	font-size: 1.125rem;
	color: hsl(var(--surface-dark-foreground) / 0.7);
	margin-bottom: 2.5rem;
	max-width: 36rem;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

/* Footer CSS */

.footer {
	padding: 3rem 1rem;
}

.contact-info {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: hsl(var(--muted-foreground));
}

.contact-info:hover {
	color: hsl(var(--muted-foreground)) !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 {
	font-size: 0.875em;
	color: hsl(var(--muted-foreground));
}
