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

:root {
	--primary-color: #008080;
	--primary-dark: #006666;
	--primary-light: #00a3a3;
	--accent-color: #ffa500;
	--accent-dark: #ff8c00;
	--bg-white: #ffffff;
	--bg-light: #f5f5f5;
	--text-dark: #333333;
	--text-medium: #666666;
	--text-light: #999999;
	--success-color: #28a745;
	--error-color: #ff4c4c;
	--border-color: #e0e0e0;
}

body {
	font-family: "Roboto", sans-serif;
	color: var(--text-dark);
	line-height: 1.6;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	line-height: 1.2;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.navbar {
	background: var(--bg-white);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: all 0.3s ease;
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 70px;
}

.logo {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 24px;
	font-weight: 700;
	color: var(--primary-color);
	font-family: "Poppins", sans-serif;
}

.logo-img {
	height: 45px;
	width: auto;
	object-fit: contain;
}

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

.nav-link {
	color: var(--text-dark);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
	position: relative;
}

.nav-link:hover {
	color: var(--primary-color);
}

.nav-link::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary-color);
	transition: width 0.3s ease;
}

.nav-link:hover::after {
	width: 100%;
}

.nav-buttons {
	display: flex;
	gap: 15px;
}

.btn-primary,
.btn-secondary {
	padding: 10px 24px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	display: inline-block;
	text-align: center;
	cursor: pointer;
}

.btn-primary {
	background: var(--primary-color);
	color: var(--bg-white);
	border: 2px solid var(--primary-color);
}

.btn-primary:hover {
	background: var(--primary-dark);
	border-color: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 128, 128, 0.3);
}

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

.btn-secondary:hover {
	background: var(--primary-color);
	color: var(--bg-white);
	transform: translateY(-2px);
}

.btn-large {
	padding: 14px 32px;
	font-size: 16px;
}

.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 5px;
}

.hamburger span {
	width: 25px;
	height: 3px;
	background: var(--primary-color);
	border-radius: 3px;
	transition: all 0.3s ease;
}

.hero {
	padding: 120px 20px 80px;
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
		circle at 20% 50%,
		rgba(0, 128, 128, 0.1) 0%,
		transparent 50%
	);
}

.hero-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.hero-content {
	animation: fadeInLeft 0.8s ease;
}

.hero-title {
	font-size: 48px;
	margin-bottom: 20px;
	color: var(--text-dark);
	line-height: 1.2;
}

.hero-subtitle {
	font-size: 20px;
	color: var(--text-medium);
	margin-bottom: 30px;
	line-height: 1.5;
}

.hero-buttons {
	display: flex;
	gap: 20px;
	margin-bottom: 30px;
}

.trust-badge {
	padding: 15px;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 8px;
	display: inline-block;
}

.trust-badge p {
	color: var(--text-medium);
	font-size: 14px;
	font-weight: 500;
}

.hero-image {
	animation: fadeInRight 0.8s ease;
}

.dashboard-mockup {
	filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
	animation: float 3s ease-in-out infinite;
}

.mockup-svg {
	width: 100%;
	height: auto;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-20px);
	}
}

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

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

.features {
	padding: 80px 20px;
	background: var(--bg-white);
}

.section-title {
	font-size: 40px;
	text-align: center;
	margin-bottom: 15px;
	color: var(--text-dark);
}

.section-subtitle {
	font-size: 18px;
	text-align: center;
	color: var(--text-medium);
	margin-bottom: 60px;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
}

.feature-card {
	padding: 40px 30px;
	background: var(--bg-white);
	border-radius: 12px;
	text-align: center;
	transition: all 0.3s ease;
	border: 2px solid var(--border-color);
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(0, 128, 128, 0.15);
	border-color: var(--primary-color);
}

.feature-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 20px;
	background: linear-gradient(
		135deg,
		var(--primary-color) 0%,
		var(--primary-light) 100%
	);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--bg-white);
}

.feature-icon svg {
	width: 40px;
	height: 40px;
}

.feature-title {
	font-size: 22px;
	margin-bottom: 15px;
	color: var(--text-dark);
}

.feature-description {
	font-size: 16px;
	color: var(--text-medium);
	line-height: 1.6;
}

.how-it-works {
	padding: 80px 20px;
	background: var(--bg-light);
}

.workflow {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
}

.workflow-step {
	flex: 1;
	text-align: center;
	position: relative;
}

.step-number {
	width: 60px;
	height: 60px;
	background: var(--primary-color);
	color: var(--bg-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: 700;
	margin: 0 auto 20px;
	box-shadow: 0 4px 15px rgba(0, 128, 128, 0.3);
}

.step-content {
	padding: 0 20px;
}

.step-title {
	font-size: 20px;
	margin-bottom: 10px;
	color: var(--text-dark);
}

.step-description {
	font-size: 15px;
	color: var(--text-medium);
	line-height: 1.5;
}

.workflow-connector {
	width: 80px;
	height: 2px;
	background: var(--primary-color);
	position: relative;
	top: 30px;
	flex-shrink: 0;
}

.workflow-connector::after {
	content: "→";
	position: absolute;
	right: -10px;
	top: -10px;
	color: var(--primary-color);
	font-size: 20px;
}

.benefits {
	padding: 80px 20px;
	background: var(--bg-white);
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
}

.benefit-card {
	background: var(--bg-white);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border: 1px solid var(--border-color);
}

.benefit-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(0, 128, 128, 0.15);
	border-color: var(--primary-color);
}

.benefit-card-image {
	width: 100%;
	height: 180px;
	overflow: hidden;
	background: var(--bg-light);
}

.benefit-card-image svg {
	width: 100%;
	height: 100%;
}

.benefit-card-title {
	font-size: 20px;
	margin-bottom: 12px;
	color: var(--text-dark);
	padding: 20px 20px 0;
}

.benefit-card-description {
	font-size: 15px;
	color: var(--text-medium);
	line-height: 1.6;
	padding: 0 20px 20px;
}

.cta-section {
	padding: 80px 20px;
	background: linear-gradient(
		135deg,
		var(--primary-color) 0%,
		var(--primary-light) 100%
	);
	color: var(--bg-white);
	text-align: center;
}

.cta-title {
	font-size: 42px;
	margin-bottom: 20px;
}

.cta-subtitle {
	font-size: 20px;
	margin-bottom: 40px;
	opacity: 0.95;
}

.cta-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	margin-bottom: 20px;
}

.cta-section .btn-primary {
	background: var(--bg-white);
	color: var(--primary-color);
	border-color: var(--bg-white);
}

.cta-section .btn-primary:hover {
	background: var(--bg-light);
	border-color: var(--bg-light);
}

.cta-section .btn-secondary {
	background: transparent;
	color: var(--bg-white);
	border-color: var(--bg-white);
}

.cta-section .btn-secondary:hover {
	background: var(--bg-white);
	color: var(--primary-color);
}

.cta-note {
	font-size: 14px;
	opacity: 0.9;
}
.banner {
	min-height: 100px;
	margin-top:70px;
	background-color: #006666;
	padding:3em 0;
}
.page-content {
	min-height: calc(100vh - 340px);
	padding: 3em;
	text-align: justify;
}
.footer {
	padding: 60px 20px 30px;
	background: var(--text-dark);
	color: var(--bg-white);
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer-title {
	font-size: 18px;
	margin-bottom: 20px;
	color: var(--bg-white);
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a {
	color: var(--text-light);
	text-decoration: none;
	transition: color 0.3s ease;
}

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

.social-links {
	display: flex;
	gap: 15px;
}

.social-link {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--bg-white);
	transition: all 0.3s ease;
}

.social-link:hover {
	background: var(--primary-color);
	transform: translateY(-3px);
}

.social-link svg {
	width: 20px;
	height: 20px;
}

.footer-bottom {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--text-light);
	font-size: 14px;
}
.prelaunch-form {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
	padding: 2em;
	margin: 2em auto 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5em;
}

.prelaunch-form .form-group {
	display: flex;
	flex-direction: column;
	gap: 0.4em;
}

.prelaunch-form label {
	font-weight: 500;
	color: #008080;
	margin-bottom: 0.2em;
}

.prelaunch-form input,
.prelaunch-form select {
	padding: 0.7em 1em;
	border: 1px solid #cfd8dc;
	border-radius: 6px;
	font-size: 1em;
	font-family: inherit;
	background: #fafbfc;
	transition: border-color 0.2s;
}

.prelaunch-form input:focus,
.prelaunch-form select:focus {
	border-color: #008080;
	outline: none;
	background: #fff;
}

.prelaunch-form small {
	color: #666;
	margin-top: 0.2em;
}

.prelaunch-form .btn-primary {
	margin-top: 1em;
	width: 100%;
	font-size: 1.1em;
	padding: 0.9em 0;
	border-radius: 6px;
	background: #008080;
	color: #fff;
	border: none;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s;
}

.prelaunch-form .btn-primary:hover,
.prelaunch-form .btn-primary:focus {
	background: #006666;
}
dialog[open] {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 1em 2em 2em 2em;
	border-radius: 1em;
	display: grid;
}
dialog h3 {
	text-align: center;
}
dialog p {
	padding: 1em 0;
}
dialog div {
	display: flex;
	align-items: self-end;
	justify-content: end;
}
@media (max-width: 768px) {
	.prelaunch-form {
		padding: 1em;
		max-width: 100%;
		grid-template-columns: 1fr;
	}
	.nav-menu {
		position: fixed;
		top: 70px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 70px);
		background: var(--bg-white);
		flex-direction: column;
		justify-content: flex-start;
		padding: 40px 20px;
		gap: 20px;
		transition: left 0.3s ease;
		box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	}

	.nav-menu.active {
		left: 0;
	}

	.nav-buttons {
		flex-direction: column;
		width: 100%;
	}

	.nav-buttons a {
		width: 100%;
	}

	.hamburger {
		display: flex;
	}

	.hamburger.active span:nth-child(1) {
		transform: rotate(45deg) translate(8px, 8px);
	}

	.hamburger.active span:nth-child(2) {
		opacity: 0;
	}

	.hamburger.active span:nth-child(3) {
		transform: rotate(-45deg) translate(7px, -7px);
	}

	.hero-container {
		grid-template-columns: 1fr;
		padding-top: 20px;
	}

	.hero-title {
		font-size: 32px;
	}

	.hero-subtitle {
		font-size: 18px;
	}

	.hero-buttons {
		flex-direction: column;
	}

	.hero-buttons a {
		width: 100%;
	}

	.section-title {
		font-size: 32px;
	}

	.workflow {
		flex-direction: column;
		gap: 40px;
	}

	.workflow-connector {
		width: 2px;
		height: 40px;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		top: auto;
	}

	.workflow-connector::after {
		content: "↓";
		right: auto;
		bottom: -20px;
		top: auto;
		left: 50%;
		transform: translateX(-50%);
	}

	.cta-buttons {
		flex-direction: column;
	}

	.cta-title {
		font-size: 32px;
	}

	.benefits-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 28px;
	}

	.section-title {
		font-size: 28px;
	}

	.features-grid {
		grid-template-columns: 1fr;
	}

	.cta-title {
		font-size: 28px;
	}
}
