/* LoadBroker 4.0 Marketing Site Styles */

/* CSS Variables for Brand Colors */
:root {
	--mountain-navy: #2c3e50;
	--mountain-shadow: #34495e;
	--mountain-sage: #95a5a6;
	--mountain-peach: #e67e22;
	--mountain-cream: #ecf0f1;
	--mountain-light: #f8f9fa;
}

/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: var(--mountain-navy);
	background-color: white;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--mountain-navy);
}

h1 {
	font-size: 3rem;
}

h2 {
	font-size: 2.5rem;
}

h3 {
	font-size: 2rem;
}

h4 {
	font-size: 1.5rem;
}

p {
	margin-bottom: 1rem;
	color: #666;
}

a {
	color: var(--mountain-peach);
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: var(--mountain-navy);
}

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

.section {
	padding: 80px 0;
}

.section-light {
	background-color: var(--mountain-light);
}

/* Header/Navigation */
.header {
	background: linear-gradient(135deg, var(--mountain-navy) 0%, var(--mountain-shadow) 100%);
	color: white;
	padding: 1rem 0;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--mountain-peach);
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.nav-links a {
	color: white;
	font-weight: 500;
	transition: color 0.3s ease;
}

.nav-links a:hover {
	color: var(--mountain-peach);
}

.cta-button {
	background: var(--mountain-peach);
	color: white;
	padding: 0.75rem 1.5rem;
	border-radius: 5px;
	font-weight: 600;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

.cta-button:hover {
	background: #d35400;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

/* Hero Section */
.hero {
	background: linear-gradient(135deg, var(--mountain-navy) 0%, var(--mountain-shadow) 100%);
	color: white;
	padding: 120px 0 80px;
	text-align: center;
}

.hero h1 {
	color: white;
	margin-bottom: 1.5rem;
}

.hero p {
	font-size: 1.25rem;
	color: var(--mountain-cream);
	margin-bottom: 2rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.btn-secondary {
	background: transparent;
	color: white;
	border: 2px solid white;
	padding: 0.75rem 1.5rem;
	border-radius: 5px;
	font-weight: 600;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
}

.btn-secondary:hover {
	background: white;
	color: var(--mountain-navy);
}

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

.feature {
	text-align: center;
	padding: 2rem;
	border-radius: 10px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
	font-size: 3rem;
	color: var(--mountain-peach);
	margin-bottom: 1rem;
}

/* Stats Section */
.stats {
	background: var(--mountain-navy);
	color: white;
	text-align: center;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.stat {
	padding: 1rem;
}

.stat-number {
	font-size: 3rem;
	font-weight: bold;
	color: var(--mountain-peach);
	display: block;
}

.stat-label {
	font-size: 1.1rem;
	color: var(--mountain-cream);
}

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

.pricing-card {
	background: white;
	border-radius: 10px;
	padding: 2rem;
	text-align: center;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
}

.pricing-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
	border: 3px solid var(--mountain-peach);
}

.pricing-card.featured::before {
	content: 'Most Popular';
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--mountain-peach);
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 600;
}

.price {
	font-size: 3rem;
	font-weight: bold;
	color: var(--mountain-navy);
	margin: 1rem 0;
}

.price-period {
	font-size: 1rem;
	color: #666;
}

.features-list {
	list-style: none;
	margin: 2rem 0;
}

.features-list li {
	padding: 0.5rem 0;
	color: #666;
}

.features-list li::before {
	content: '✓';
	color: var(--mountain-peach);
	font-weight: bold;
	margin-right: 0.5rem;
}

/* Footer */
.footer {
	background: var(--mountain-navy);
	color: white;
	padding: 3rem 0 1rem;
}

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

.footer-section h4 {
	color: var(--mountain-peach);
	margin-bottom: 1rem;
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 0.5rem;
}

.footer-section ul li a {
	color: var(--mountain-cream);
	transition: color 0.3s ease;
}

.footer-section ul li a:hover {
	color: var(--mountain-peach);
}

.footer-bottom {
	border-top: 1px solid var(--mountain-shadow);
	padding-top: 1rem;
	text-align: center;
	color: var(--mountain-sage);
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav-links {
		display: none;
	}

	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.8rem;
	}

	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.hero-buttons .cta-button,
	.hero-buttons .btn-secondary {
		width: 100%;
		max-width: 300px;
	}
}

/* Utilities */
.text-center {
	text-align: center;
}

.mb-4 {
	margin-bottom: 2rem;
}

.mt-4 {
	margin-top: 2rem;
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fade-in-up {
	animation: fadeInUp 0.6s ease forwards;
}