/* Modern CSS for SecureDocuShareX */

/* --- VARIABLES & BASE STYLES --- */
:root {
	--primary-color: #3b82f6; /* Bright blue */
	--primary-light: #60a5fa; /* Light blue */
	--primary-dark: #2563eb; /* Dark blue */
	--secondary-color: #6b7280; /* Gray */
	--accent-color: #10b981; /* Emerald */
	--accent-warm: #f59e0b; /* Amber */
	--bg-primary: #0f172a; /* Dark navy */
	--bg-secondary: #1e293b; /* Slate 800 */
	--bg-tertiary: #334155; /* Slate 700 */
	--bg-card: #1e293b; /* Card background */
	--bg-card-hover: #334155; /* Card hover */
	--text-primary: #f8fafc; /* Light text */
	--text-secondary: #cbd5e1; /* Muted text */
	--text-muted: #94a3b8; /* Very muted */
	--border-color: #334155; /* Dark borders */
	--border-light: #475569; /* Light borders */
	--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
	--shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
	--shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.5);
	--shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.6);
	--gradient-primary: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
	--gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
	--gradient-card: linear-gradient(145deg, #1e293b 0%, #334155 100%);
	--gradient-accent: linear-gradient(135deg, #10b981 0%, #059669 100%);
	--border-radius: 0.75rem;
	--border-radius-lg: 1rem;
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	line-height: 1.7;
	color: var(--text-primary);
	background-color: var(--bg-primary);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.container {
	width: 90%;
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 15px;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
	color: var(--primary-color);
	transition: var(--transition);
}

ul {
	list-style: none;
}

.section {
	padding: 120px 0;
	overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
	line-height: 1.2;
	margin-bottom: 1rem;
	font-weight: 600;
}

h1 {
	font-size: clamp(2.8rem, 5vw, 4rem);
	font-weight: 800;
}

h2 {
	font-size: clamp(2rem, 4vw, 2.8rem);
	text-align: center;
	margin-bottom: 3rem;
	position: relative;
	color: var(--text-primary);
	font-weight: 700;
}

h3 {
	font-size: clamp(1.4rem, 3vw, 1.8rem);
	font-weight: 600;
}

h4 {
	font-size: clamp(1.2rem, 2.5vw, 1.4rem);
	font-weight: 600;
}

h2::after {
	content: '';
	position: absolute;
	bottom: -1rem;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: var(--gradient-primary);
	border-radius: 2px;
}

.bg-light {
	background: var(--bg-secondary);
}

/* --- BUTTONS --- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	border: 1px solid transparent;
	border-radius: var(--border-radius);
	font-weight: 600;
	font-size: 0.9rem;
	cursor: pointer;
	transition: var(--transition);
	text-align: center;
	letter-spacing: 0.3px;
	text-decoration: none;
}

.btn-primary {
	background: var(--gradient-primary);
	color: white;
	border: none;
	box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
	background: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

/* --- NAVIGATION --- */
#main-nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(15, 23, 42, 0.95);
	backdrop-filter: blur(20px) saturate(180%);
	z-index: 1000;
	padding: 0 !important;
	transition: var(--transition);
	border-bottom: 1px solid var(--border-color);
	box-shadow: var(--shadow-sm);
}

#main-nav.scrolled {
	padding: 0.75rem 0;
	box-shadow: var(--shadow-sm);
	border-bottom: 1px solid var(--border-color);
}

#main-nav .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}



.logo a {
	display: flex;
	align-items: center;
	font-weight: 900;
	font-size: 3.5rem;
	height: 6rem;
	overflow: hidden;
	color: var(--primary-dark);
}


.f-logo a {
	font-size: 5rem;
	height: 8rem;
	overflow-x: visible;
	width: fit-content;
}
.logo img {
	height: 10rem;
	margin-right: 1rem;
}

.f-logo img {
	height: 18rem;
}


.nav-menu {
	display: flex;
	align-items: center;
}

.nav-menu li {
	margin: 0 0.75rem;
}

.nav-menu a {
	color: var(--text-secondary);
	font-weight: 500;
	padding: 0.5rem;
	position: relative;
}

.nav-menu a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background: var(--primary-color);
	transition: var(--transition);
}

.nav-menu a:hover::after, .nav-menu a.active::after {
	width: 100%;
}

.nav-menu .btn-nav {
	margin-left: 1rem;
}

.menu-toggle {
	display: none;
	font-size: 1.75rem;
	cursor: pointer;
	color: var(--text-primary);
}

/* --- HERO SECTION --- */
#hero {
	background: var(--gradient-hero);
	padding: 200px 0 150px;
	text-align: center;
	position: relative;
	overflow: hidden;
	min-height: 100vh;
	display: flex;
	align-items: center;
}

#hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(circle, rgba(59, 130, 246, 0.15) 1px, transparent 1px);
	background-size: 40px 40px;
	opacity: 0.4;
}

#hero::after {
	content: '';
	position: absolute;
	top: 10%;
	right: 5%;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, rgba(59, 130, 246, 0.1) 50%, transparent 70%);
	border-radius: 50%;
	animation: float 12s ease-in-out infinite;
}

#hero .container::before {
	content: '';
	position: absolute;
	top: 20%;
	left: -10%;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(16, 185, 129, 0.1) 50%, transparent 70%);
	border-radius: 50%;
	animation: floatReverse 15s ease-in-out infinite;
	z-index: 0;
}

#hero .container::after {
	content: '';
	position: absolute;
	bottom: 10%;
	right: 20%;
	width: 200px;
	height: 200px;
	background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
	border-radius: 50%;
	animation: float 8s ease-in-out infinite 2s;
	z-index: 0;
}

@keyframes float {
	0%, 100% { transform: translateY(0px) rotate(0deg); }
	33% { transform: translateY(-15px) rotate(1deg); }
	66% { transform: translateY(-25px) rotate(-1deg); }
}

@keyframes floatReverse {
	0%, 100% { transform: translateY(0px) rotate(0deg); }
	33% { transform: translateY(15px) rotate(-1deg); }
	66% { transform: translateY(25px) rotate(1deg); }
}

.hero-content {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.hero-content h1 {
	color: var(--text-primary);
	margin-bottom: 1.5rem;
	font-size: clamp(3.2rem, 6vw, 5rem);
	font-weight: 900;
	line-height: 1.1;
}

.hero-description {
	font-size: 1.1rem;
	color: var(--text-secondary);
	margin-bottom: 2.5rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	font-weight: 400;
	line-height: 1.6;
}

/* --- ABOUT SECTION --- */
.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 6rem;
	margin-top: 2rem;
}

.about-image img {
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-lg);
}

/* --- FEATURES SECTION --- */
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2.5rem;
	margin-top: 3rem;
}

.feature-card {
	background: var(--bg-card);
	padding: 3rem 2.5rem;
	border-radius: var(--border-radius-lg);
	text-align: center;
	border: 1px solid var(--border-color);
	transition: var(--transition);
	position: relative;
	overflow: hidden;
	box-shadow: var(--shadow-md);
}

.feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: var(--gradient-primary);
	transform: scaleX(0);
	transition: var(--transition);
}

.feature-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: var(--shadow-xl);
	border-color: var(--primary-color);
	background: var(--bg-card-hover);
}

.feature-card:hover::before {
	transform: scaleX(1);
}

.feature-icon {
	font-size: 4rem;
	color: var(--primary-color);
	margin-bottom: 2rem;
	line-height: 1;
	display: inline-block;
}

/* --- BENEFITS SECTION --- */
.benefits-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 6rem;
	margin-top: 3rem;
}

.benefits-list li {
	display: flex;
	align-items: flex-start;
	margin-bottom: 1.5rem;
	font-size: 1.1rem;
}

.benefits-list i {
	color: var(--accent-color);
	font-size: 1.5rem;
	margin-right: 1rem;
	margin-top: 0.25rem;
}

.benefits-image img {
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-lg);
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-slider {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	margin-top: 3rem;
}

.testimonial {
	background: var(--bg-card);
	border-radius: var(--border-radius-lg);
	padding: 3rem;
	display: flex;
	flex-direction: column;
	border: 1px solid var(--border-color);
	box-shadow: var(--shadow-md);
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.testimonial:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
	border-color: var(--primary-color);
	background: var(--bg-card-hover);
}

.testimonial-content {
	flex-grow: 1;
	font-style: italic;
	margin-bottom: 1.5rem;
	position: relative;
	padding-left: 2.5rem;
}

.testimonial-content::before {
	content: '“';
	position: absolute;
	left: 0;
	top: -0.5rem;
	font-size: 4rem;
	color: var(--primary-color);
	opacity: 0.5;
	font-family: Georgia, serif;
}

.testimonial-author {
	display: flex;
	align-items: center;
	margin-top: auto;
}

.testimonial-author img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	margin-right: 1rem;
	border: 3px solid transparent;
	background: var(--gradient-primary);
	background-clip: padding-box;
	box-shadow: 0 0 0 2px var(--primary-color);
}

.testimonial-author h4 {
	margin-bottom: 0.25rem;
}

.testimonial-author p {
	margin-bottom: 0;
	color: var(--text-muted);
	font-size: 0.9rem;
}

/* --- CONTACT SECTION --- */
#contact {
	background: var(--bg-primary);
	position: relative;
}

#contact::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
					  radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
	pointer-events: none;
}

.contact-content {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 4rem;
	background: var(--bg-card);
	padding: 4rem;
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow-xl);
	border: 1px solid var(--border-color);
	position: relative;
	z-index: 1;
	margin-top: 3rem;
}

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

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: var(--text-secondary);
}

.form-group input {
	width: 100%;
	padding: 1rem;
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	font-family: inherit;
	font-size: 1rem;
	transition: var(--transition);
	background: var(--bg-tertiary);
	color: var(--text-primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder,
.form-group select option {
	color: var(--text-muted);
	opacity: 0.8;
}

.form-group input:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
	background-color: var(--bg-secondary);
	transform: translateY(-1px);
}

.contact-info h3 {
	margin-bottom: 1.5rem;
}

.contact-info p {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
}

.contact-info i {
	margin-right: 1rem;
	color: var(--primary-color);
	width: 20px;
	text-align: center;
}

.social-links {
	margin-top: 2rem;
}

.social-links a {
	color: var(--secondary-color);
	font-size: 1.5rem;
	margin-right: 1rem;
}

.social-links a {
	transition: var(--transition);
	padding: 0.5rem;
	border-radius: 50%;
}

.social-links a:hover {
	color: var(--primary-color);
	background: rgba(59, 130, 246, 0.2);
	transform: translateY(-2px) scale(1.1);
	box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* --- FOOTER --- */
footer {
	background: var(--bg-secondary);
	color: var(--text-secondary);
	padding: 5rem 0 2rem;
	position: relative;
	border-top: 1px solid var(--border-color);
}

footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--gradient-primary);
	box-shadow: 0 1px 3px rgba(30, 64, 175, 0.3);
}

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 3rem;
	flex-wrap: wrap;
	gap: 2rem;
}

.footer-logo {
	color: var(--text-primary);
}

.footer-links ul {
	display: flex;
	flex-wrap: wrap;
}

.footer-links li {
	margin-left: 1.5rem;
}

.footer-links a {
	color: var(--text-muted);
}

.footer-links a:hover {
	color: var(--text-primary);
}

.copyright {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.9rem;
}

/* --- ANIMATIONS & RESPONSIVE --- */
.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Enhanced animations */
@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

@keyframes glow {
	0%, 100% {
		box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
	}
	50% {
		box-shadow: 0 0 30px rgba(59, 130, 246, 0.6);
	}
}

/* Hero animations */
.hero-content {
	animation: slideInLeft 1s ease-out 0.3s both;
}

.hero-visual {
	animation: slideInRight 1s ease-out 0.5s both;
}

.hero-badge {
	animation: slideInUp 0.8s ease-out 0.1s both;
}

.hero-stats .stat {
	transition: var(--transition);
}

.hero-stats .stat:hover {
	transform: translateY(-5px) scale(1.05);
	box-shadow: var(--shadow-lg);
}

/* Dashboard preview enhancements */
.dashboard-preview {
	position: relative;
	overflow: hidden;
}

.dashboard-preview::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	transition: left 0.8s ease;
	z-index: 1;
}

.dashboard-preview:hover::before {
	left: 100%;
}

/* Metric counter animations */
.metric-value, .stat-number {
	display: inline-block;
	transition: var(--transition);
}

.metric:hover .metric-value {
	animation: pulse 1s ease-in-out;
}

/* Feature card enhancements */
.feature-card {
	position: relative;
	overflow: hidden;
}

.feature-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at center, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.feature-card:hover::after {
	opacity: 1;
}

/* Value card animations */
.value-card {
	transition: var(--transition);
	position: relative;
}

.value-card:hover {
	animation: glow 2s ease-in-out infinite;
}

.value-icon {
	transition: var(--transition);
}

.value-card:hover .value-icon {
	transform: rotateY(360deg);
	animation: pulse 0.6s ease;
}

/* Button enhancements */
.btn {
	position: relative;
	overflow: hidden;
}

.btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	transition: width 0.6s ease, height 0.6s ease;
	transform: translate(-50%, -50%);
	z-index: 0;
}

.btn:hover::before {
	width: 300px;
	height: 300px;
}

.btn span, .btn i {
	position: relative;
	z-index: 1;
}

/* Testimonial animations */
.testimonial {
	transition: var(--transition);
}

.testimonial:hover {
	animation: glow 3s ease-in-out infinite;
}

/* Section badge animations */
.section-badge {
	position: relative;
	animation: slideInUp 0.6s ease-out both;
}

.section-badge::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--gradient-primary);
	transition: width 0.8s ease;
}

.section-header:hover .section-badge::after {
	width: 100%;
}

@media (max-width: 992px) {
	.about-content,
	.benefits-content {
		grid-template-columns: 1fr;
	}
	
	.benefits-image {
		order: -1;
	}
	
	.testimonials-slider,
	.contact-content {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.menu-toggle {
		display: block;
		z-index: 1001;
	}
	
	.nav-menu {
		position: fixed;
		top: 0;
		right: -100%;
		flex-direction: column;
		background: var(--bg-secondary);
		width: 85%;
		max-width: 400px;
		height: 100vh;
		box-shadow: var(--shadow-xl);
		transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
		padding: 6rem 2rem 2rem;
		align-items: stretch;
		overflow-y: auto;
		z-index: 1000;
		border-left: 1px solid var(--border-color);
	}
	
	.nav-menu.active {
		right: 0;
	}
	
	.nav-menu li {
		margin: 1rem 2rem;
		width: calc(100% - 4rem);
	}
	
	.nav-menu a {
		font-size: 1.2rem;
	}
	
	.nav-menu .btn-nav {
		margin-left: 0;
		width: 100%;
		text-align: center;
	}
	
	.footer-content {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	
	.footer-links ul {
		justify-content: center;
		margin-top: 1rem;
	}
	
	.footer-links li {
		margin: 0 0.75rem;
	}
	
	
	.logo a {
		font-size: 3.5rem;
		height: 6rem;
	}
	
	
	.f-logo a {
		font-size: 5rem;
		height: 8rem;
	}
	.logo img {
		height: 10rem;
		margin-right: 1rem;
	}
	
	.f-logo img {
		height: 18rem;
	}
}

/* Professional Layout Styles */

/* Hero Section Enhancements */
.hero-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 4rem;
	min-height: 80vh;
	position: relative;
	z-index: 1;
}

.hero-badge {
	display: inline-block;
	background: rgba(59, 130, 246, 0.1);
	color: var(--primary-color);
	padding: 0.4rem 1rem;
	border-radius: 2rem;
	font-size: 0.75rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	border: 1px solid rgba(59, 130, 246, 0.2);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.highlight {
	background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-description {
	font-size: 1.25rem;
	line-height: 1.8;
	margin-bottom: 2.5rem;
}

.hero-actions {
	display: flex;
	gap: 1rem;
	margin-bottom: 3rem;
}

.btn-large {
	padding: 1rem 2rem;
	font-size: 1rem;
	font-weight: 600;
}

.btn-secondary {
	background: transparent;
	color: var(--text-secondary);
	border: 1px solid var(--border-color);
}

.btn-secondary:hover {
	background: var(--bg-card);
	color: var(--text-primary);
	border-color: var(--primary-color);
}

.btn-outline {
	background: transparent;
	color: var(--primary-color);
	border: 1px solid var(--primary-color);
}

.btn-outline:hover {
	background: var(--primary-color);
	color: white;
}

.hero-stats {
	display: flex;
	gap: 2rem;
}

.stat {
	text-align: left;
}

.stat-number {
	display: block;
	font-size: 1.8rem;
	font-weight: 800;
	color: var(--primary-color);
	line-height: 1;
}

.stat-label {
	font-size: 0.8rem;
	color: var(--text-muted);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.hero-visual {
	position: relative;
}

.dashboard-preview {
	position: relative;
	border-radius: var(--border-radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-xl);
	border: 1px solid var(--border-color);
}

/* Section Headers */
.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-badge {
	display: inline-block;
	background: rgba(59, 130, 246, 0.1);
	color: var(--primary-color);
	padding: 0.4rem 1rem;
	border-radius: 2rem;
	font-size: 0.8rem;
	font-weight: 600;
	margin-bottom: 1rem;
	border: 1px solid rgba(59, 130, 246, 0.2);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.section-description {
	font-size: 1rem;
	color: var(--text-secondary);
	max-width: 550px;
	margin: 0 auto;
	line-height: 1.6;
	font-weight: 400;
}

/* Value Proposition */
.value-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.value-card {
	background: var(--bg-card);
	padding: 2.5rem;
	border-radius: var(--border-radius-lg);
	border: 1px solid var(--border-color);
	text-align: center;
	transition: var(--transition);
}

.value-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
	border-color: var(--primary-color);
}

.value-icon {
	width: 60px;
	height: 60px;
	background: var(--gradient-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	color: white;
	font-size: 1.5rem;
}

/* Features Showcase */
.features-showcase {
	margin-top: 3rem;
}

.feature-main {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 4rem;
	margin-bottom: 4rem;
	padding: 3rem;
	background: var(--bg-card);
	border-radius: var(--border-radius-lg);
	border: 1px solid var(--border-color);
}

.feature-badge {
	background: var(--gradient-accent);
	color: white;
	padding: 0.25rem 0.75rem;
	border-radius: 1rem;
	font-size: 0.8rem;
	font-weight: 500;
	margin-bottom: 1rem;
	display: inline-block;
}

.feature-list {
	list-style: none;
	margin-top: 1.5rem;
}

.feature-list li {
	display: flex;
	align-items: center;
	margin-bottom: 0.75rem;
	color: var(--text-secondary);
}

.feature-list i {
	color: var(--accent-color);
	margin-right: 0.75rem;
	font-size: 0.9rem;
}

/* ROI Section */
.roi-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 4rem;
}

.roi-metrics {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin: 3rem 0;
}

.metric {
	text-align: center;
	padding: 2rem;
	background: var(--bg-card);
	border-radius: var(--border-radius);
	border: 1px solid var(--border-color);
}

.metric-value {
	font-size: 2.5rem;
	font-weight: 900;
	color: var(--primary-color);
	line-height: 1;
	margin-bottom: 0.5rem;
}

.metric-label {
	font-size: 0.85rem;
	color: var(--text-muted);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

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

.benefit-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.benefit-item i {
	color: var(--accent-color);
	font-size: 1.25rem;
	margin-top: 0.25rem;
}

.benefit-item h4 {
	margin-bottom: 0.5rem;
	color: var(--text-primary);
}

.benefit-item p {
	color: var(--text-secondary);
	font-size: 0.95rem;
	margin: 0;
}

/* CTA Section */
.cta-wrapper {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.cta-features {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin: 2rem 0;
}

.cta-feature {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--text-secondary);
}

.cta-feature i {
	color: var(--accent-color);
}

.cta-actions {
	display: flex;
	justify-content: center;
	gap: 1rem;
}

/* Contact Form Enhancements */
.contact-wrapper {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 4rem;
	margin-top: 3rem;
}

.contact-form-section {
	background: var(--bg-card);
	padding: 3rem;
	border-radius: var(--border-radius-lg);
	border: 1px solid var(--border-color);
}

.form-header {
	margin-bottom: 2rem;
}

.form-header h3 {
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.form-header p {
	color: var(--text-secondary);
	font-size: 0.95rem;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.form-group select,
.form-group textarea {
	width: 100%;
	padding: 1rem;
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	font-family: inherit;
	font-size: 1rem;
	transition: var(--transition);
	background: var(--bg-tertiary);
	color: var(--text-primary);
	resize: vertical;
}

.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
	background-color: var(--bg-secondary);
	transform: translateY(-1px);
}

.btn-full {
	width: 100%;
}

.contact-info-section {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.contact-card {
	background: var(--bg-card);
	padding: 2rem;
	border-radius: var(--border-radius-lg);
	border: 1px solid var(--border-color);
}

.contact-card h4 {
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.contact-methods {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.contact-method {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.contact-method i {
	color: var(--primary-color);
	font-size: 1.25rem;
	width: 20px;
	text-align: center;
}

.contact-method div {
	display: flex;
	flex-direction: column;
}

.contact-method strong {
	color: var(--text-primary);
	font-size: 0.9rem;
}

.contact-method span {
	color: var(--text-secondary);
	font-size: 0.85rem;
}

.trust-indicators h5 {
	color: var(--text-primary);
	margin-bottom: 1rem;
	font-size: 0.9rem;
}

.certifications {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}

.cert {
	background: rgba(16, 185, 129, 0.1);
	color: var(--accent-color);
	padding: 0.5rem;
	border-radius: var(--border-radius);
	font-size: 0.8rem;
	text-align: center;
	border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Enhanced Mobile Navigation */
.nav-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(15, 23, 42, 0.9);
	backdrop-filter: blur(10px);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
}

.nav-overlay.active {
	opacity: 1;
	visibility: visible;
}

/* Mobile-First Responsive Design */
@media (max-width: 1200px) {
	.container {
		padding: 0 2rem;
	}
	
	.hero-wrapper,
	.feature-main,
	.roi-wrapper,
	.contact-wrapper {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	
	.hero-visual {
		order: -1;
	}
	
	.roi-metrics {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.5rem;
	}
}

@media (max-width: 992px) {
	.section {
		padding: 80px 0;
	}
	
	.section-header {
		margin-bottom: 3rem;
	}
	
	.value-grid,
	.features-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}
	
	.testimonials-slider {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

@media (max-width: 768px) {
	/* Mobile Navigation */
	.menu-toggle {
		display: block;
		z-index: 1001;
		padding: 0.5rem;
		border-radius: var(--border-radius);
		transition: var(--transition);
	}
	
	.menu-toggle:hover {
		background: rgba(59, 130, 246, 0.1);
	}
	
	.menu-toggle.active {
		color: var(--primary-color);
	}
	
	.nav-menu {
		position: fixed;
		top: 0;
		right: -100%;
		flex-direction: column;
		background: var(--bg-secondary);
		width: 85%;
		max-width: 400px;
		height: 100vh;
		box-shadow: var(--shadow-xl);
		transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
		padding: .5rem;
		align-items: center;
		justify-content: space-between;
		gap: 1em;
		overflow-y: auto;
		z-index: 1000;
		border-left: 1px solid var(--border-color);
	}
	
	.nav-menu.active {
		right: 0;
	}
	
	.nav-menu li {
		margin: 0;
		width: 100%;
		border-bottom: 1px solid var(--border-color);
	}
	
	.nav-menu li:last-child {
		border-bottom: none;
		margin-top: 1rem;
	}
	
	.nav-menu a {
		font-size: 1.1rem;
		padding: 0.75rem 0;
		display: block;
		width: 100%;
		color: var(--text-secondary);
		transition: var(--transition);
	}
	
	.nav-menu a:hover,
	.nav-menu a.active {
		color: var(--primary-color);
		padding-left: 0.5rem;
	}
	
	.nav-menu .btn-nav {
		margin: 0;
		padding: 0.75rem 1.5rem;
		text-align: center;
		border-radius: var(--border-radius);
		background: var(--gradient-primary);
		color: white;
		border: none;
	}
	
	.nav-menu .btn-nav:hover {
		padding-left: 1.5rem;
		transform: translateY(-2px);
		box-shadow: var(--shadow-md);
	}
	
	/* Mobile Hero */
	#hero {
		padding: 140px 0 80px;
		min-height: auto;
	}
	
	.hero-wrapper {
		gap: 2rem;
		text-align: center;
	}
	
	.hero-content {
		order: 1;
	}
	
	.hero-visual {
		order: 0;
	}
	
	.hero-badge {
		font-size: 0.8rem;
		padding: 0.4rem 0.8rem;
	}
	
	.hero-content h1 {
		font-size: clamp(2rem, 8vw, 3rem);
		line-height: 1.2;
		margin-bottom: 1rem;
	}
	
	.hero-description {
		font-size: 1.1rem;
		margin-bottom: 2rem;
	}
	
	.hero-actions {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
		margin-bottom: 2rem;
	}
	
	.hero-actions .btn {
		width: 100%;
		max-width: 280px;
	}
	
	.hero-stats {
		flex-direction: column;
		gap: 1.5rem;
		text-align: center;
	}
	
	.stat {
		padding: 1rem;
		background: var(--bg-card);
		border-radius: var(--border-radius);
		border: 1px solid var(--border-color);
	}
	
	.stat-number {
		font-size: 1.8rem;
	}
	
	/* Mobile Sections */
	.section {
		padding: 60px 0;
	}
	
	.section-header {
		margin-bottom: 2.5rem;
	}
	
	.section-header h2 {
		font-size: clamp(1.8rem, 6vw, 2.5rem);
		margin-bottom: 1rem;
	}
	
	.section-description {
		font-size: 1rem;
	}
	
	.value-grid,
	.features-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.value-card,
	.feature-card {
		padding: 2rem 1.5rem;
	}
	
	.feature-main {
		padding: 2rem;
		gap: 2rem;
	}
	
	.feature-main .feature-content {
		text-align: center;
	}
	
	.feature-list {
		text-align: left;
		max-width: 300px;
		margin: 1.5rem auto 0;
	}
	
	/* Mobile ROI */
	.roi-metrics {
		grid-template-columns: 1fr;
		gap: 1rem;
		margin: 2rem 0;
	}
	
	.metric {
		padding: 1.5rem;
	}
	
	.metric-value {
		font-size: 2.5rem;
	}
	
	.benefits-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.benefit-item {
		text-align: center;
		flex-direction: column;
		gap: 0.5rem;
		padding: 1.5rem;
		background: var(--bg-card);
		border-radius: var(--border-radius);
		border: 1px solid var(--border-color);
	}
	
	.benefit-item i {
		font-size: 2rem;
		margin-top: 0;
	}
	
	/* Mobile CTA */
	.cta-features {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
	}
	
	.cta-actions {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
	}
	
	.cta-actions .btn {
		width: 100%;
		max-width: 280px;
	}
	
	/* Mobile Contact */
	.contact-wrapper {
		gap: 2rem;
	}
	
	.contact-form-section {
		padding: 2rem;
	}
	
	.form-row {
		grid-template-columns: 1fr;
		gap: 0;
	}
	
	.contact-info-section {
		gap: 1.5rem;
	}
	
	.contact-card {
		padding: 1.5rem;
	}
	
	.certifications {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 0.5rem;
	}
	
	.cert {
		flex: 1;
		min-width: 80px;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 !important;
		gap: 1rem;
	}
	
	#main-nav {
		padding: 0.75rem 0;
	}
	
	
	.logo a {
		font-size: 2.5rem;
		height: 5rem;
	}
	
	
	.f-logo a {
		font-size: 4rem;
		height: 7rem;
	}
	.logo img {
		height: 6rem;
		margin-right: 1rem;
	}
	
	.f-logo img {
		height: 10rem;
	}

	
	.section {
		padding: 40px 0;
	}
	
	.hero-content h1 {
		font-size: clamp(1.8rem, 10vw, 2.5rem);
	}
	
	.hero-description {
		font-size: 1rem;
	}
	
	.btn-large {
		padding: 0.875rem 1.5rem;
		font-size: 1rem;
	}
	
	.value-card,
	.feature-card {
		padding: 1.5rem 1rem;
	}
	
	.feature-main {
		padding: 1.5rem;
	}
	
	.contact-form-section {
		padding: 1.5rem;
	}
	
	.metric {
		padding: 1rem;
	}
	
	.metric-value {
		font-size: 2rem;
	}
}

/* Smooth scrolling for mobile */
@media (max-width: 768px) {
	html {
		scroll-padding-top: 80px;
	}
}

/* Additional dark theme styles */
.feature-card h4 {
	color: var(--text-primary);
	font-size: 1.2rem;
	margin-bottom: 1rem;
	font-weight: 600;
}

.feature-card p {
	color: var(--text-secondary);
	line-height: 1.6;
	font-size: 0.95rem;
	font-weight: 400;
}

.about-text p {
	color: var(--text-secondary);
	font-size: 1.2rem;
}

.benefits-list span {
	color: var(--text-primary);
	font-size: 1.2rem;
}

.testimonial-content p {
	color: var(--text-secondary);
	font-size: 1.2rem;
}

.testimonial-author h4 {
	color: var(--text-primary);
	font-size: 1.1rem;
}

.testimonial-author p {
	color: var(--text-muted);
	font-size: 0.95rem;
}

.contact-info h3 {
	color: var(--text-primary);
}

.contact-info p {
	color: var(--text-secondary);
}

.contact-form h3 {
	color: var(--text-primary);
}

/* Mobile navigation enhancements */
.nav-menu-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	font-size: 1.5rem;
	color: var(--text-secondary);
	cursor: pointer;
	padding: 0.5rem;
	border-radius: var(--border-radius);
	transition: var(--transition);
	display: none;
}

.nav-menu-close:hover {
	color: var(--primary-color);
	background: rgba(59, 130, 246, 0.1);
}

@media (max-width: 768px) {
	.nav-menu-close {
		display: block;
	}
	
	body.nav-open {
		overflow: hidden;
	}
}