
@font-face {
	font-family: 'Roboto';
	src: url('/fonts/Roboto/Roboto-Regular.ttf') format('truetype');
	font-weight: 400;
	font-display: swap;
}

@font-face {
	font-family: 'Roboto';
	src: url('/fonts/Roboto/Roboto-Medium.ttf') format('truetype');
	font-weight: 500;
	font-display: swap;
}

@font-face {
	font-family: 'Roboto';
	src: url('/fonts/Roboto/Roboto-Bold.ttf') format('truetype');
	font-weight: 700;
	font-display: swap;
}

@font-face {
	font-family: 'Dosis';
	src: url('/fonts/Dosis/Dosis-SemiBold.ttf') format('truetype');
	font-weight: 600;
	font-display: swap;
}

@font-face {
	font-family: 'Dosis';
	src: url('/fonts/Dosis/Dosis-Bold.ttf') format('truetype');
	font-weight: 700;
	font-display: swap;
}

@font-face {
	font-family: 'Dosis';
	src: url('/fonts/Dosis/Dosis-ExtraBold.ttf') format('truetype');
	font-weight: 800;
	font-display: swap;
}


:root {
	--primary-gradient: linear-gradient(135deg, #7a6bfb 0%, #5d2bd2 100%);
	--primary-color: #667eea;
	--secondary-color: #764ba2;
	--light-gradient: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	line-height: 1.6;
}

.gradient-bg {
	background: var(--primary-gradient);
}

.light-gradient-bg {
	background: var(--light-gradient);
}

/* Header */
.navbar {
	background: rgba(255, 255, 255, 0.95) !important;
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.navbar-brand {
	font-weight: 800;
	font-family: Dosis;
	font-size: 1.3rem;
}

.logo-icon {
	width: 36px;
	height: 36px;
	border-radius: 5px;
}

.navbar-nav .nav-link {
	font-weight: 500;
	color: var(--bs-primary) !important;
	margin: 0 15px;
	transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
	color: var(--bs-accent2) !important;
}

/* Hero Section */
.hero {
	background: var(--primary-gradient);
	color: white;
	padding: 120px 0 100px;
	min-height: 100vh;
	display: flex;
	align-items: center;
}

	.hero h1 {
		font-size: 3.5rem;
		font-weight: 800;
		margin-bottom: 1.5rem;
		text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	}

.hero-subtitle {
	font-size: 1.3rem;
	margin-bottom: 2.5rem;
	opacity: 0.9;
	font-weight: 300;
}

.app-badge {
	transition: transform 0.3s;
	margin: 10px;
}

.app-badge:hover {
	transform: translateY(-5px);
}

.app-badge img {
	height: 60px;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-cloud {
	background: rgba(255, 255, 255, 0.2);
	border: 2px solid rgba(255, 255, 255, 0.3);
	color: white;
	padding: 12px 30px;
	border-radius: 50px;
	font-weight: 600;
	margin: 10px;
	transition: all 0.3s;
	backdrop-filter: blur(10px);
}

.btn-cloud:hover {
	background: white;
	color: var(--primary-color);
	border-color: white;
	transform: translateY(-2px);
}

/* Feature Cards */
.feature-card {
	background: white;
	border: none;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	transition: all 0.3s;
	height: 100%;
	border: 2px solid transparent;
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
	border-color: var(--bs-accent2);
}

.feature-icon {
	width: 80px;
	height: 80px;
	background: var(--primary-gradient);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 2rem;
	color: white;
}

.feature-icon > svg {
	width: 55px;
	height: 55px;
	color: white;
}

.feature-card .card-title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 15px;
	color: #333;
}

.feature-card .card-text {
	color: #666;
	line-height: 1.6;
}

/* Cloud Section */
.cloud-section {
	background: var(--light-gradient-bg);
	padding: 100px 0;
}

.cloud-feature-card {
	background: white;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	padding: 40px;
	text-align: center;
	height: 100%;
	transition: all 0.3s;
}

.cloud-feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
}

.cloud-icon {
	font-size: 3rem;
	color: var(--primary-color);
	margin-bottom: 20px;
	width: 50px;
	height: 50px;
}

.cloud-icon {
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 2rem;
	color: white;
}

.cloud-icon > svg {
	width: 55px;
	height: 55px;
}

.check-icon {
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.check-icon > svg {
	width: 22px;
	height: 22px;
}

.sync-icon {
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sync-icon > svg {
	width: 22px;
	height: 22px;
}

/* Steps */
.step-number {
	width: 60px;
	height: 60px;
	background: var(--primary-gradient);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: bold;
	margin: 0 auto 20px;
}

/* Screenshots */
.screenshot {
	width: 100%;
	max-width: 280px;
	height: 500px;
	background: var(--primary-gradient);
	border-radius: 30px;
	padding: 20px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.1rem;
	text-align: center;
	transition: transform 0.3s;
	margin: 0 auto;
}

.screenshot:hover {
	transform: scale(1.05);
}

/* CTA Section */
.cta {
	background: var(--primary-gradient);
	color: white;
	padding: 100px 0;
}

.btn-cta {
	background: white;
	color: var(--primary-color);
	padding: 15px 40px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s;
	margin: 10px;
	border: none;
}

.btn-cta:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
	color: var(--primary-color);
}

/* Footer */
footer {
	background: #333;
	color: white;
	padding: 50px 0 30px;
}

.footer-section h5 {
	color: var(--primary-color);
	margin-bottom: 20px;
}

.footer-section a {
	color: #ccc;
	text-decoration: none;
	line-height: 1.8;
}

.footer-section a:hover {
	color: var(--primary-color);
}

.footer-bottom {
	border-top: 1px solid #555;
	padding-top: 20px;
	margin-top: 40px;
	color: #999;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.hero h1 {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		font-size: 1.1rem;
	}

	.screenshot {
		height: 450px;
	}
}

/* Animation classes */
.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s, transform 0.6s;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

.bg-primary-gradient {
	background: var(--primary-gradient);
}

.phone-mockup {
	position: relative;
	max-width: 280px;
	margin: 0 auto;
	transition: transform 0.3s ease;
}

	.phone-mockup:hover {
		transform: translateY(-10px) scale(1.02);
	}

.phone-screen {
	width: 100%;
	height: auto;
	border-radius: 25px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
	border: 8px solid #333;
	background: #000;
}

.phone-overlay {
	position: absolute;
	bottom: 20px;
	left: 20px;
	right: 20px;
	/*background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));*/
	background-color: var(--bg-dark);
	padding: 15px;
	border-radius: 15px;
	/*backdrop-filter: blur(10px);*/
	transform: translateY(100%);
	opacity: 0;
	transition: all 0.3s ease;
}

.phone-mockup:hover .phone-overlay {
	transform: translateY(0);
	opacity: 1;
}

.screenshot-container h6 {
	color: #333;
	margin-bottom: 8px;
}

.screenshot-container .text-muted {
	font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.phone-mockup {
		max-width: 240px;
	}

	.phone-overlay {
		bottom: 15px;
		left: 15px;
		right: 15px;
		padding: 12px;
	}
}

@media (max-width: 576px) {
	.col-sm-8 {
		max-width: 300px;
		margin: 0 auto;
	}
}

.product-name {
	font-family: Dosis;
	font-weight: 800;
	font-size: 120%;
	line-height: 10px;
	opacity: 0.85;
}
