/*
Theme Name: MW Landing Theme
Theme URI: https://mediusware.com/
Author: Mediusware
Author URI: https://mediusware.com/
Description: A high-performance, SEO-friendly landing page theme for StoreSync Import Export for WooCommerce.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mw-landing
Tested up to: 6.8
Requires PHP: 7.4
Tags: custom-logo, one-column, e-commerce, translation-ready
*/

:root {
	--mw-primary: #1A9FFE;
	--mw-secondary: #0EFFF7;
	--mw-dark: #020817;
	--mw-darker: #04111B;
	--mw-text: #333333;
	--mw-text-light: #94a3b8;
	--mw-bg-light: #fdfbfb;
	--font-primary: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
	font-family: var(--font-primary);
	color: var(--mw-text);
	margin: 0;
	padding: 0;
	line-height: 1.6;
	background-color: var(--mw-bg-light);
}

* {
	box-sizing: border-box;
}

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

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

.btn {
	display: inline-block;
	background: var(--mw-primary);
	color: #fff !important;
	text-decoration: none;
	padding: 12px 24px;
	border-radius: 6px;
	font-weight: 600;
	transition: background 0.3s, color 0.3s;
	border: none;
	cursor: pointer;
}

.btn:hover {
	background: var(--mw-secondary);
	color: var(--mw-dark) !important;
}

.btn-outline {
	background: transparent;
	border: 2px solid #fff;
	color: #fff !important;
}

.btn-outline:hover {
	background: rgba(255,255,255,0.1);
	color: #fff !important;
}

/* Header */
.site-header {
	background-color: #000;
	padding: 15px 0;
	position: sticky;
	top: 0;
	z-index: 9999;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.site-logo img {
	max-width: 160px;
}
.main-navigation {
	display: flex;
	align-items: center;
	gap: 30px;
}
.main-navigation a.nav-link {
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	transition: color 0.3s;
	position: relative;
}
.main-navigation a.nav-link:hover {
	color: var(--mw-secondary);
}
.main-navigation a.nav-link::after {
	content: '';
	position: absolute;
	width: 0;
	height: 3px;
	bottom: -24px;
	left: 0;
	background-color: var(--mw-secondary);
	transition: width 0.3s;
}
.main-navigation a.nav-link:hover::after {
	width: 100%;
}
.nav-action {
	background: #000;
	border: 1px solid transparent;
	background-image: linear-gradient(#000, #000), linear-gradient(to left, var(--mw-secondary), #fff);
	background-origin: border-box;
	background-clip: padding-box, border-box;
	color: #fff;
	padding: 8px 16px;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s;
}
.nav-action:hover {
	color: var(--mw-secondary);
}

/* Footer */
.site-footer {
	background: linear-gradient(to top, var(--mw-darker) 0%, #000000 100%);
	color: #fff;
	padding: 80px 0 40px;
	text-align: center;
}
.site-footer h2 {
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--mw-text-light);
	margin-bottom: 40px;
}
@media(min-width: 768px) {
    .site-footer h2 { font-size: 2rem; }
}
.site-footer .footer-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 24px;
	border: 1px solid var(--mw-secondary);
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 0.9rem;
	position: relative;
	overflow: hidden;
	transition: color 0.3s;
}
.site-footer .footer-btn::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: var(--mw-secondary);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.5s ease;
	z-index: 0;
}
.site-footer .footer-btn:hover::before {
	transform: scaleX(1);
}
.site-footer .footer-btn span {
	position: relative;
	z-index: 1;
}
.site-footer .footer-btn:hover span {
	color: var(--mw-darker);
}
.footer-divider {
	width: 100%;
	height: 1px;
	background: rgba(255,255,255,0.1);
	margin: 60px 0 40px;
}
.site-info {
	color: var(--mw-text-light);
	font-size: 0.9rem;
}
.site-info a {
	color: var(--mw-primary);
	text-decoration: none;
}
.site-info a:hover {
	color: var(--mw-secondary);
}

/* Custom Page Styles from Template */
.hero {
	background-color: var(--mw-dark);
	color: #f8fafc;
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}
.hero-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	position: relative;
	z-index: 2;
}
.hero-content {
	flex: 1;
	max-width: 600px;
}
.hero h1 {
	font-size: 3.5rem;
	font-weight: 800;
	margin-bottom: 20px;
	color: #fff;
	line-height: 1.1;
}
.hero p {
	font-size: 1.125rem;
	color: var(--mw-text-light);
	margin-bottom: 30px;
}
.hero-image {
	flex: 1;
	display: flex;
	justify-content: flex-end;
}
.hero-card {
	background: #ffffff;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 20px 40px rgba(0,0,0,0.3);
	color: var(--mw-dark);
	width: 100%;
	max-width: 400px;
}
.hero-card h3 {
	margin-top: 0;
	font-size: 1.5rem;
	color: var(--mw-dark);
}
.hero-bg {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: radial-gradient(circle at top right, rgba(26, 159, 254, 0.15), transparent 50%);
	z-index: 1;
}

.section {
	padding: 80px 0;
}
.section-title {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 50px;
	color: var(--mw-dark);
}

.features-small {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}
.feature-small {
	text-align: center;
	padding: 20px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.05);
	transition: transform 0.3s;
}
.feature-small:hover {
	transform: translateY(-5px);
}
.feature-small-icon {
	font-size: 2.5rem;
	margin-bottom: 15px;
}
.feature-small h4 {
	font-size: 1.25rem;
	margin-bottom: 10px;
	color: var(--mw-dark);
}
.feature-small p {
	color: var(--mw-text-light);
	font-size: 0.95rem;
	margin: 0;
}

.grid-12 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	background: #f8fafc;
	padding: 60px 40px;
	border-radius: 20px;
}
.card-12 {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 24px;
	transition: all 0.2s;
}
.card-12:hover {
	border-color: var(--mw-primary);
	box-shadow: 0 4px 12px rgba(26, 159, 254, 0.1);
}
.card-12-icon {
	font-size: 1.75rem;
	margin-bottom: 10px;
}
.card-12 h4 {
	margin: 0 0 5px 0;
	font-size: 1.05rem;
	color: var(--mw-dark);
}
.card-12 p {
	margin: 0;
	font-size: 0.85rem;
	color: var(--mw-text-light);
}

.cta-section {
	background: var(--mw-primary);
	color: #fff;
	text-align: center;
	padding: 80px 20px;
	border-radius: 24px;
	margin: 40px auto 80px;
	max-width: 1200px;
}
.cta-section h2 {
	font-size: 2.5rem;
	color: #fff;
	margin-top: 0;
	margin-bottom: 20px;
}
.cta-section p {
	font-size: 1.2rem;
	color: rgba(255,255,255,0.9);
	margin-bottom: 40px;
}

.alt-row {
	display: flex;
	align-items: center;
	gap: 60px;
	margin-bottom: 80px;
}
.alt-row.reverse {
	flex-direction: row-reverse;
}
.feature-content {
	flex: 1;
}
.feature-content h3 {
	font-size: 2rem;
	color: var(--mw-dark);
	margin-bottom: 15px;
}
.feature-content p {
	font-size: 1.1rem;
	color: var(--mw-text-light);
	margin-bottom: 20px;
}
.feature-image {
	flex: 1;
	width: 100%;
}
.check-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.check-list li {
	margin-bottom: 10px;
	color: var(--mw-text);
	font-weight: 600;
}

@media(max-width: 992px) {
	.hero-inner { flex-direction: column; }
	.hero-image { width: 100%; justify-content: center; }
	.features-small { grid-template-columns: repeat(2, 1fr); }
	.grid-12 { grid-template-columns: repeat(2, 1fr); }
	.alt-row, .alt-row.reverse { flex-direction: column; }
}
@media(max-width: 576px) {
	.features-small, .grid-12 { grid-template-columns: 1fr; }
	.hero h1 { font-size: 2.5rem; }
}
