:root {
	--primary: #2563eb;
	--secondary: #f59e0b;
	--background: #f8fafc;
	--border: #e5e7eb;
	--text: #1e293b;
	--accent: #9333ea;
	--light: #fff;
	--radius: 8px;
	--shadow: 0 4px 24px 0 rgba(40, 113, 220, 0.05);
}

html,
body {
	font-family: 'Segoe UI', 'Helvetica Neue', Arial, 'sans-serif';
	background: var(--background);
	color: var(--text);
	margin: 0;
	padding: 0;
	min-height: 100%;
	scroll-behavior: smooth;
}

.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 2rem;
}

.header {
	background: var(--light);
	box-shadow: var(--shadow);
	padding: 20px;
}

.nav-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-weight: 700;
	font-size: 1.3rem;
	color: var(--primary);
}

.logo svg {
	margin-right: 0.3em;
}

.logo-text {
	letter-spacing: 0.02em;
}

.nav {
	margin-left: 2em;
}

.nav-list {
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-list a {
	text-decoration: none;
	color: var(--text);
	font-weight: 500;
	padding: 0.25rem 0.5rem;
	transition: background 0.2s, color 0.2s;
}

.nav-list a:hover,
.nav-list a:focus {
	background: var(--primary);
	color: var(--light);
}

.header-actions {
	display: flex;
	gap: 1rem;
}

.btn-primary,
.btn-hero {
	background: var(--primary);
	color: var(--light);
	border: none;
	padding: 0.65em 1.6em;
	border-radius: var(--radius);
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: background 0.2s;
	display: flex;
	align-items: center;
	gap: 0.4em;
}

.btn-primary:hover,
.btn-primary:focus {
	background: #1744b3;
}

.btn-secondary {
	background: transparent;
	color: var(--primary);
	border: 1.5px solid var(--primary);
	padding: 0.65em 1.2em;
	border-radius: var(--radius);
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}

.btn-secondary:hover,
.btn-secondary:focus {
	background: var(--primary);
	color: var(--light);
}

.modif-sec {
	align-items: center;
	display: flex;
	gap: 34px;
}

/* Hero Section */
.hero {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	min-height: 40vh;
	padding: 3rem 0 2rem 0;
	background: linear-gradient(120deg, #f0f8ff 0%, #f3f4f6 100%);
}

.coming-soon-prop {
	font-size: 20px;
	text-decoration: underline;
}

.hero .container {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 2rem;
}

.hero-content {
	flex: 1.2;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.hero-badge {
	display: flex;
	align-items: center;
	font-size: 1.03rem;
	background: #eef2ff;
	color: var(--secondary);
	border-radius: 1.5em;
	padding: 0.20em 1em 0.20em 0.7em;
	font-weight: 600;
	gap: 0.6em;
	width: fit-content;
}

.hero-title {
	font-size: 2.7rem;
	font-weight: 800;
	line-height: 1.10;
	margin: 0;
	color: var(--text);
}

.hero-title .highlight {
	color: var(--primary);
}

.hero-description {
	font-size: 1rem;
	color: #64748b;
	margin: 0.4rem 0 1.2rem 0;
	max-width: 510px;
}

.hero-cta {
	display: flex;
	align-items: center;
	gap: 2rem;
	margin: 1em 0;
}

.link-primary {
	color: var(--primary);
	font-weight: 600;
	text-decoration: none;
	transition: text-decoration 0.2s;
}

.link-primary:hover,
.link-primary:focus {
	text-decoration: underline;
}

.hero-stats {
	display: flex;
	gap: 3rem;
	margin: 0.7em 0 0 0;
}

.stat-item {
	display: flex;
	flex-direction: column;
	gap: 0.2em;
	min-width: 90px;
}

.stat-number {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--primary);
}

.stat-label {
	font-size: 1rem;
	color: #475569;
}

.hero-visual {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.chart-container {
	display: flex;
	align-items: center;
	height: 400px;
	width: 600px;
	justify-content: center;
}

.chart-container img {
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: block;
	min-width: 0;
}

.dashboard-preview {
	box-shadow: 0 4px 36px 0 rgba(40, 113, 220, 0.09);
	border-radius: 1.2rem;
	overflow: hidden;
	background: var(--light);
	padding: 1rem 0.7rem;
	max-width: 430px;
	margin-top: 2.2rem;
}

.section-header {
	margin-bottom: 1.5rem;
	text-align: center;
}

.section-header h2 {
	font-size: 2rem;
	margin: 0;
	color: var(--primary);
}

.section-header p {
	color: #64748b;
	font-size: 1.08rem;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2.2rem;
}

.product-card {
	background: var(--light);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 1.3rem;
	display: flex;
	flex-direction: column;
	align-items: start;
	gap: 1.1rem;
	min-height: 210px;
	transition: box-shadow 0.2s;
}

.product-card:hover {
	box-shadow: 0 8px 32px rgba(37, 99, 235, 0.12);
}

.product-icon {
	border-radius: 0.75em;
	display: flex;
	align-items: center;
	margin-bottom: -0.3rem;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.feature-item {
	background: var(--light);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 1.1em;
	display: flex;
	flex-direction: column;
	align-items: start;
	gap: 0.9rem;
	min-height: 150px;
}

.feature-icon {
	margin-bottom: -0.2rem;
}

.markets-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	gap: 2rem;
	margin-top: 2.2rem;
}

.market-card {
	background: var(--light);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 1.1rem;
}

.market-card h3 {
	color: var(--primary);
	margin: 0 0 0.6em 0;
}

.market-card ul {
	margin: 0;
	padding-left: 1.2em;
	color: #64748b;
	font-size: 1rem;
}

/* cta Section */
.cta {
	background: linear-gradient(120deg, #2563eb0f 0%, #93c5fd17 100%);
	padding: 3rem 0 2rem 0;
	text-align: center;
}

.cta-content h2 {
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--primary);
}

.cta-content p {
	color: #475569;
	font-size: 1.15rem;
}

.cta-buttons {
	display: flex;
	justify-content: center;
	margin-top: 1em;
	gap: 1rem;
}

/* contatc Section */
.contact {
	background: #f1f5f9;
	padding: 2.5rem 0;
}

.contact-grid {
	display: flex;
	gap: 3rem;
	justify-content: space-between;
	flex-wrap: wrap;
}

.contact-info {
	flex: 2;
	min-width: 260px;
}

.contact-info h2 {
	margin-top: 0;
	color: var(--primary);
}

.contact-info ul {
	margin: 0;
	padding: 1em 0 0 1.3em;
	color: #334155;
	font-size: 1.04rem;
}

.contact-info ul li {
	margin: 0.25em 0;
}

.contact-info a {
	color: var(--primary);
	text-decoration: underline;
}

.contact-links {
	flex: 1;
	min-width: 200px;
	margin-top: 1.2em;
}

.contact-links h3 {
	color: var(--primary);
	margin-top: 0;
}

.contact-links ul {
	padding-left: 1em;
	margin: 0;
	color: #64748b;
}

.contact-links ul li {
	margin-bottom: 0.6rem;
}

.contact-links a {
	color: var(--primary);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s;
}

.contact-links a:hover {
	text-decoration: underline;
}

/* footer */
.footer {
	background: #1e293b;
	color: #f3f4f6;
	padding: 2rem 0 1rem 0;
	margin-top: 0;
}

.footer-bottom {
	text-align: center;
	font-size: 0.94em;
	color: #cbd5e1;
	margin-top: 2.6em;
	padding-top: 1em;
	border-top: 1px solid #334155;
}

.footer-column h4 {
	color: #3b82f6;
	margin-top: 0;
	font-size: 1.12em;
}

.footer-column ul {
	padding-left: 1.3em;
	color: #cbd5e1;
	font-size: 1em;
	margin: 0.75em 0 0 0;
}

.footer-column ul li {
	margin-bottom: 0.55em;
}

.footer-column ul li a {
	color: #bae6fd;
	text-decoration: none;
	transition: color 0.2s;
}

.footer-column ul li a:hover {
	color: var(--secondary);
	text-decoration: underline;
}

.social-links {
	display: flex;
	gap: 1.2em;
	align-items: center;
	margin-top: 0.4em;
}

.social-links svg {
	width: 26px;
	height: 26px;
}

.footer .social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none !important;
	line-height: 0;
	border-bottom: none;
}

.footer .social-links a:hover,
.footer .social-links a:focus {
	text-decoration: none !important;
	border-bottom: none;
}

@media (max-width: 900px) {

	.header,
	.container {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.dashboard-preview {
		max-width: 95vw;
		width: 100%;
	}

	.chart-container {
		max-width: 95vw;
		width: 80%;
		margin-left: auto;
		margin-right: auto;
	}

	.hero {
		flex-direction: column;
		align-items: stretch;
	}

	/* mobile layout hero container  */
	.hero .container {
		flex-direction: column;
		align-items: stretch;
	}

	.hero-content {
		align-items: flex-start;
	}

	.hero-visual {
		margin: 2rem auto 0 auto;
		align-items: center;
		justify-content: center;
	}

	.contact-grid {
		flex-direction: column;
		gap: 2em;
	}
}

@media (max-width: 700px) {

	/* Stack header neatly on mobile */
	.nav-wrapper {
		flex-wrap: wrap;
		row-gap: 0.6rem;
		justify-content: center;
	}

	.header {
		padding: 12px;
	}

	.logo {
		width: 100%;
		justify-content: center;
	}

	.nav {
		width: 100%;
	}

	.nav-list {
		justify-content: center;
		gap: 0.8rem;
	}

	.header-actions {
		width: 100%;
		justify-content: center;
		gap: 0.6rem;
	}

	.hero-title {
		font-size: 1.7rem;
	}

	.product-grid,
	.features-grid,
	.markets-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.footer {
		padding: 1.2rem 0 0.5rem 0;
	}

	.footer-logo,
	.footer a {
		font-size: 1em;
	}

	.cta-content h2 {
		font-size: 1.1em;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 1.3rem;
	}

	.footer-bottom {
		font-size: 0.89em;
		margin-top: 1.2em;
	}

	.contact-info,
	.contact-links {
		min-width: unset;
	}
}

@media (max-width: 500px) {
	.footer-logo span {
		display: none !important;
	}

	.header-actions .btn-primary,
	.header-actions .btn-secondary {
		font-size: 0.85rem;
		padding: 0.5em 0.8em;
	}

	.hero-stats {
		flex-direction: column;
		gap: 1rem;
	}
}