/* Reset and Base Styles */
:root {
	/* Primary Brand Colors */
	--primary-blue: #1e40af;
	--primary-blue-light: #3b82f6;
	--primary-blue-dark: #1e3a8a;

	/* Secondary Colors */
	--secondary-orange: #f97316;
	--secondary-orange-light: #fb923c;
	--secondary-orange-dark: #ea580c;

	/* Neutral Colors */
	--gray-50: #f8fafc;
	--gray-100: #f1f5f9;
	--gray-200: #e2e8f0;
	--gray-300: #cbd5e1;
	--gray-400: #94a3b8;
	--gray-500: #64748b;
	--gray-600: #475569;
	--gray-700: #334155;
	--gray-800: #1e293b;
	--gray-900: #0f172a;

	/* Success/Error Colors */
	--success: #10b981;
	--error: #ef4444;
	--warning: #f59e0b;
}

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

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		sans-serif;
	line-height: 1.6;
	color: var(--gray-700);
	overflow-x: hidden;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--gray-800);
	line-height: 1.2;
	font-weight: 700;
}

h1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

h2 {
	font-size: 2rem;
	margin-bottom: 1rem;
}

h3 {
	font-size: 1.5rem;
	margin-bottom: 0.75rem;
}

h4 {
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
}

p {
	margin-bottom: 1rem;
}

.lead {
	font-size: 1.125rem;
	font-weight: 500;
	color: #475569;
}

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(226, 232, 240, 0.8);
	z-index: 1000;
	transition: all 0.3s ease;
}

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

.nav-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary-blue);
	text-decoration: none;
}

.nav-logo svg {
	color: var(--primary-blue);
}

.logo-image {
	height: 64px;
	width: auto;
}

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

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

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

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

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

.nav-cta {
	background: var(--primary-blue);
	color: white;
	padding: 10px 20px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.nav-cta:hover {
	background: var(--primary-blue-dark);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.nav-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 4px;
}

.nav-toggle span {
	width: 25px;
	height: 3px;
	background: #64748b;
	transition: all 0.3s ease;
}

/* Hero Section */
.hero {
	padding: 120px 0 80px;
	background: white;
	min-height: 80vh;
	display: flex;
	align-items: center;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.hero-image-column {
	order: 1;
}

.hero-content-column {
	order: 2;
}

.hero-image {
	width: 100%;
	height: auto;
	border-radius: 16px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-title {
	font-size: 2.75rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	line-height: 1.2;
	color: var(--gray-900);
}

.hero-subtitle {
	font-size: 1.125rem;
	margin-bottom: 2rem;
	color: var(--gray-600);
	max-width: 500px;
	line-height: 1.6;
}

.hero-stats {
	display: flex;
	justify-content: flex-start;
	gap: 40px;
	margin-bottom: 2.5rem;
}

.stat {
	text-align: left;
}

.stat-number {
	display: block;
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--primary-blue);
}

.stat-label {
	display: block;
	font-size: 0.875rem;
	color: var(--gray-500);
	margin-top: 0.25rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Buttons */
.cta-button {
	display: inline-block;
	padding: 14px 28px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	cursor: pointer;
	text-align: center;
}

.cta-button.primary {
	background: var(--primary-blue);
	color: white;
	border-color: var(--primary-blue);
}

.cta-button.primary:hover {
	background: var(--primary-blue-dark);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
}

.cta-button.secondary {
	background: transparent;
	color: var(--primary-blue);
	border-color: var(--primary-blue);
}

.cta-button.secondary:hover {
	background: var(--primary-blue);
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(30, 64, 175, 0.2);
}

.cta-button.large {
	padding: 16px 32px;
	font-size: 1.125rem;
}

.cta-button.large {
	padding: 18px 36px;
	font-size: 1.125rem;
	animation: fadeInUp 1s ease-out 0.6s both;
}

/* Sections */
.section-title {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: var(--gray-800);
}

.section-subtitle {
	text-align: center;
	font-size: 1.125rem;
	color: var(--gray-500);
	max-width: 600px;
	margin: 0 auto 3rem;
}

/* Benefits Section */
.benefits {
	padding: 100px 0;
	background: var(--gray-50);
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 40px;
	margin-top: 4rem;
}

.benefit-card {
	background: white;
	padding: 40px 30px;
	border-radius: 16px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border: 1px solid #e2e8f0;
}

.benefit-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
	margin-bottom: 1.5rem;
	color: var(--primary-blue);
}

.benefit-card h3 {
	font-size: 1.25rem;
	margin-bottom: 1rem;
	color: var(--gray-800);
}

.benefit-card p {
	color: var(--gray-500);
	line-height: 1.6;
}

/* Features Section */
.features {
	padding: 100px 0;
	background: white;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 40px;
	margin-top: 4rem;
}

.feature-card {
	background: #f8fafc;
	padding: 40px 30px;
	border-radius: 16px;
	transition: all 0.3s ease;
	border: 1px solid #e2e8f0;
}

.feature-card:hover {
	background: white;
	transform: translateY(-4px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
	margin-bottom: 1.5rem;
	color: var(--primary-blue);
}

.feature-card h3 {
	font-size: 1.25rem;
	margin-bottom: 1rem;
	color: var(--gray-800);
}

.feature-card p {
	color: var(--gray-500);
	line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
	padding: 100px 0;
	background: var(--gray-50);
}

.steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	margin-top: 4rem;
}

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

.step-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background: var(--primary-blue);
	color: white;
	border-radius: 50%;
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.step-content h3 {
	font-size: 1.25rem;
	margin-bottom: 1rem;
	color: #1e293b;
}

.step-content p {
	color: #64748b;
	line-height: 1.6;
}

/* Industries Section */
.industries {
	padding: 100px 0;
	background: white;
}

.industries-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 4rem;
}

.industry-card {
	background: #f8fafc;
	padding: 30px 25px;
	border-radius: 12px;
	text-align: center;
	transition: all 0.3s ease;
	border: 1px solid #e2e8f0;
}

.industry-card:hover {
	background: white;
	transform: translateY(-4px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.industry-icon {
	margin-bottom: 1rem;
	color: var(--primary-blue);
}

.industry-card h3 {
	font-size: 1.125rem;
	margin-bottom: 0.75rem;
	color: #1e293b;
}

.industry-card p {
	color: #64748b;
	font-size: 0.9rem;
	line-height: 1.5;
}

/* Pricing Section */
.pricing {
	padding: 100px 0;
	background: var(--gray-50);
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
	margin-top: 4rem;
}

.pricing-card {
	background: white;
	padding: 40px 30px;
	border-radius: 16px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 1px solid #e2e8f0;
	position: relative;
	transition: all 0.3s ease;
}

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

.pricing-card.featured {
	border-color: var(--primary-blue);
	transform: scale(1.05);
}

.pricing-card.featured:hover {
	transform: scale(1.05) translateY(-8px);
}

.popular-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--secondary-orange);
	color: white;
	padding: 6px 20px;
	border-radius: 20px;
	font-size: 0.875rem;
	font-weight: 600;
}

.pricing-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #1e293b;
}

.price {
	margin-bottom: 2rem;
}

.currency {
	font-size: 1.5rem;
	color: #64748b;
	vertical-align: top;
}

.amount {
	font-size: 3rem;
	font-weight: 700;
	color: #1e293b;
}

.period {
	font-size: 1rem;
	color: #64748b;
}

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

.features-list li {
	padding: 8px 0;
	color: #64748b;
	position: relative;
	padding-left: 25px;
}

.features-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--success);
	font-weight: 700;
}

.ideal-for {
	font-size: 0.875rem;
	color: #64748b;
	font-style: italic;
	margin-bottom: 0;
}

.pricing-note {
	text-align: center;
	margin-top: 3rem;
	color: #64748b;
	font-size: 0.9rem;
}

/* Final CTA Section */
.final-cta {
	padding: 100px 0;
	background: linear-gradient(
		135deg,
		var(--primary-blue) 0%,
		var(--primary-blue-dark) 100%
	);
	color: white;
	text-align: center;
}

.final-cta h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: white;
}

.final-cta p {
	font-size: 1.125rem;
	margin-bottom: 2rem;
	color: rgba(255, 255, 255, 0.9);
}

.cta-subtext {
	margin-top: 1rem;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.8);
}

/* Footer */
.footer {
	background: #1e293b;
	color: white;
	padding: 60px 0 30px;
}

.footer-content {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 40px;
	margin-bottom: 40px;
}

.footer-brand {
	max-width: 300px;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.footer-logo svg {
	color: var(--primary-blue-light);
}

.footer-brand p {
	color: #94a3b8;
	margin-bottom: 0;
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 30px;
}

.footer-column h4 {
	font-size: 1rem;
	margin-bottom: 1rem;
	color: white;
}

.footer-column a {
	display: block;
	color: #94a3b8;
	text-decoration: none;
	margin-bottom: 0.5rem;
	transition: color 0.3s ease;
}

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

.footer-bottom {
	border-top: 1px solid #334155;
	padding-top: 30px;
	text-align: center;
	color: #94a3b8;
}

/* Page Header */
.page-header {
	padding: 120px 0 80px;
	background: linear-gradient(
		135deg,
		var(--primary-blue) 0%,
		var(--primary-blue-dark) 100%
	);
	color: white;
	text-align: center;
}

.page-header h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
	color: white;
}

.page-header p {
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 0;
}

/* About Page Styles */
.about-section {
	padding: 100px 0;
	background: white;
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.about-text h2 {
	font-size: 2.5rem;
	margin-bottom: 2rem;
	color: #1e293b;
}

.about-image {
	position: relative;
}

.responsive-image {
	width: 100%;
	height: auto;
	border-radius: 16px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.problem-section {
	padding: 100px 0;
	background: #f8fafc;
}

.problem-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 4rem;
}

.problem-card {
	background: white;
	padding: 30px 25px;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 1px solid #e2e8f0;
	transition: all 0.3s ease;
}

.problem-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.problem-icon {
	margin-bottom: 1.5rem;
	color: #ef4444;
}

.solution-section {
	padding: 100px 0;
	background: white;
}

.solution-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.solution-points {
	margin-top: 2rem;
}

.solution-point {
	display: flex;
	gap: 15px;
	margin-bottom: 1.5rem;
}

.point-icon {
	flex-shrink: 0;
	color: #10b981;
	margin-top: 2px;
}

.point-text h4 {
	font-size: 1.125rem;
	margin-bottom: 0.5rem;
	color: #1e293b;
}

.point-text p {
	color: #64748b;
	margin-bottom: 0;
}

.values-section {
	padding: 100px 0;
	background: #f8fafc;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 4rem;
}

.value-card {
	background: white;
	padding: 30px 25px;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 1px solid #e2e8f0;
	transition: all 0.3s ease;
}

.value-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.value-icon {
	margin-bottom: 1.5rem;
	color: #2563eb;
}

.industries-serve {
	padding: 100px 0;
	background: white;
}

.industries-list {
	display: grid;
	gap: 30px;
	margin-top: 4rem;
}

.industry-item {
	background: #f8fafc;
	padding: 30px;
	border-radius: 12px;
	border-left: 4px solid #2563eb;
}

.industry-item h4 {
	font-size: 1.25rem;
	margin-bottom: 1rem;
	color: #1e293b;
}

.industry-item p {
	color: #64748b;
	margin-bottom: 0;
}

/* Legal Document Styles */
.legal-content {
	padding: 80px 0;
	background: white;
}

.legal-document {
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.7;
}

.legal-document h2 {
	font-size: 1.75rem;
	margin-top: 3rem;
	margin-bottom: 1.5rem;
	color: #1e293b;
	border-bottom: 2px solid #e2e8f0;
	padding-bottom: 0.5rem;
}

.legal-document h2:first-child {
	margin-top: 0;
}

.legal-document h3 {
	font-size: 1.25rem;
	margin-top: 2rem;
	margin-bottom: 1rem;
	color: #334155;
}

.legal-document ul {
	margin-bottom: 1.5rem;
	padding-left: 2rem;
}

.legal-document li {
	margin-bottom: 0.5rem;
	color: #64748b;
}

.contact-info {
	background: #f8fafc;
	padding: 20px;
	border-radius: 8px;
	margin: 2rem 0;
}

.contact-info p {
	margin-bottom: 0.5rem;
}

.contact-info p:last-child {
	margin-bottom: 0;
}

/* Contact Page Styles */
.contact-section {
	padding: 80px 0;
	background: white;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
}

.contact-info h2 {
	font-size: 2rem;
	margin-bottom: 1.5rem;
	color: #1e293b;
}

.contact-methods {
	margin-top: 3rem;
}

.contact-method {
	display: flex;
	gap: 20px;
	margin-bottom: 2rem;
	padding: 20px;
	background: #f8fafc;
	border-radius: 12px;
	transition: all 0.3s ease;
}

.contact-method:hover {
	background: white;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transform: translateY(-2px);
}

.contact-icon {
	flex-shrink: 0;
	color: #2563eb;
	margin-top: 2px;
}

.contact-details h3 {
	font-size: 1.125rem;
	margin-bottom: 0.5rem;
	color: #1e293b;
}

.contact-details p {
	color: #334155;
	margin-bottom: 0.25rem;
}

.response-time {
	font-size: 0.875rem;
	color: #64748b;
	font-style: italic;
}

.contact-form-container h2 {
	font-size: 2rem;
	margin-bottom: 1rem;
	color: #1e293b;
}

.contact-form {
	margin-top: 2rem;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	font-size: 1rem;
	transition: all 0.3s ease;
	background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.quick-help {
	padding: 80px 0;
	background: #f8fafc;
}

.help-links {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 3rem;
}

.help-link {
	background: white;
	padding: 30px;
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 1px solid #e2e8f0;
	text-align: center;
}

.help-link:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.help-icon {
	margin-bottom: 1rem;
	color: #2563eb;
}

.help-link h3 {
	font-size: 1.25rem;
	margin-bottom: 1rem;
	color: #1e293b;
}

.help-link p {
	color: #64748b;
	margin-bottom: 0;
}

.support-hours {
	padding: 60px 0;
	background: white;
}

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

.hours-item {
	text-align: center;
	padding: 20px;
	background: #f8fafc;
	border-radius: 12px;
}

.hours-item h3 {
	font-size: 1.125rem;
	margin-bottom: 0.5rem;
	color: #1e293b;
}

.hours-item p {
	color: #64748b;
	margin-bottom: 0;
}

/* FAQ Styles */
.faq-section {
	padding: 80px 0;
	background: white;
}

.faq-categories {
	max-width: 900px;
	margin: 0 auto;
}

.faq-category {
	margin-bottom: 4rem;
}

.faq-category h2 {
	font-size: 2rem;
	margin-bottom: 2rem;
	color: #1e293b;
	text-align: center;
	position: relative;
}

.faq-category h2::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: #2563eb;
}

.faq-list {
	display: grid;
	gap: 20px;
}

.faq-item {
	background: #f8fafc;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid #e2e8f0;
	transition: all 0.3s ease;
}

.faq-item:hover {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 25px 30px;
	cursor: pointer;
	transition: all 0.3s ease;
	background: white;
}

.faq-question:hover {
	background: #f8fafc;
}

.faq-question h3 {
	font-size: 1.125rem;
	margin-bottom: 0;
	color: #1e293b;
	flex: 1;
	padding-right: 20px;
}

.faq-toggle {
	flex-shrink: 0;
	color: #64748b;
	transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
	transform: rotate(180deg);
	color: #2563eb;
}

.faq-answer {
	padding: 0 30px;
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
	background: white;
}

.faq-item.active .faq-answer {
	padding: 0 30px 25px;
	max-height: 500px;
}

.faq-answer p {
	color: #64748b;
	line-height: 1.6;
	margin-bottom: 0;
}

.more-questions {
	padding: 80px 0;
	background: #f8fafc;
	text-align: center;
}

.more-questions h2 {
	font-size: 2rem;
	margin-bottom: 1rem;
	color: #1e293b;
}

.question-actions {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 2rem;
}

/* Problem/Solution Section */
.problem-solution {
	padding: 100px 0;
	background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.problem-solution-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	margin-top: 3rem;
}

.problem-side,
.solution-side {
	background: white;
	padding: 40px 30px;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.problem-side {
	border-left: 4px solid #ef4444;
}

.solution-side {
	border-left: 4px solid #10b981;
}

.problem-side h2 {
	color: #dc2626;
	margin-bottom: 2rem;
	font-size: 1.75rem;
}

.solution-side h2 {
	color: #059669;
	margin-bottom: 2rem;
	font-size: 1.75rem;
}

.challenge-points,
.solution-points {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.challenge-point,
.solution-point {
	display: flex;
	align-items: flex-start;
	gap: 15px;
}

.challenge-icon,
.solution-icon {
	font-size: 1.5rem;
	min-width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: #f8fafc;
}

.challenge-content h4,
.solution-content h4 {
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
	color: #1e293b;
}

.challenge-content p,
.solution-content p {
	color: #64748b;
	font-size: 0.9rem;
	line-height: 1.5;
}

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

/* Responsive Design */
@media (max-width: 768px) {
	.hero-grid {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}

	.hero-image-column {
		order: 2;
	}

	.hero-content-column {
		order: 1;
	}

	.hero-stats {
		justify-content: center;
	}

	.stat {
		text-align: center;
	}
	.nav-menu {
		position: fixed;
		top: 70px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 70px);
		background: white;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		padding-top: 50px;
		transition: left 0.3s ease;
		box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	}

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

	.nav-toggle {
		display: flex;
	}

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

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

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

	.hero-title {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		font-size: 1.125rem;
	}

	.hero-stats {
		flex-direction: column;
		gap: 20px;
	}

	.section-title {
		font-size: 2rem;
	}

	.page-header h1 {
		font-size: 2.5rem;
	}

	.about-content,
	.solution-content,
	.contact-grid,
	.problem-solution-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 30px;
		text-align: center;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.question-actions {
		flex-direction: column;
		align-items: center;
	}

	.pricing-card.featured {
		transform: none;
	}

	.pricing-card.featured:hover {
		transform: translateY(-8px);
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 15px;
	}

	.hero-title {
		font-size: 2rem;
	}

	.section-title {
		font-size: 1.75rem;
	}

	.benefit-card,
	.feature-card,
	.pricing-card {
		padding: 30px 20px;
	}

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

	.final-cta h2 {
		font-size: 2rem;
	}

	.legal-document {
		padding: 0 10px;
	}
}

/* Scroll behavior */
html {
	scroll-behavior: smooth;
}

/* Focus states for accessibility */
*:focus-visible {
	outline: 2px solid #2563eb;
	outline-offset: 2px;
}

/* Loading states */
.loading {
	opacity: 0.7;
	pointer-events: none;
}

/* Print styles */
@media print {
	.navbar,
	.footer,
	.cta-button,
	.nav-cta {
		display: none;
	}

	.page-header {
		background: none;
		color: black;
	}
}
