/* ===========================
			   ABIOLINK Landing Page Styles
			   =========================== */

/* Reset & Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	/* Colors */
	--primary: #9d1519;
	--primary-dark: #7a1014;
	--primary-light: #c41e22;
	--secondary: #313132;
	--accent: #ff4757;
	--background: #ffffff;
	--surface: #f8f9fa;
	--text-primary: #313132;
	--text-secondary: #6b7280;
	--text-light: #9ca3af;
	--border: #e5e7eb;
	--shadow: rgba(0, 0, 0, 0.1);
	--shadow-lg: rgba(0, 0, 0, 0.15);

	/* Spacing */
	--spacing-xs: 0.5rem;
	--spacing-sm: 1rem;
	--spacing-md: 1.5rem;
	--spacing-lg: 2rem;
	--spacing-xl: 3rem;
	--spacing-2xl: 4rem;
	--spacing-3xl: 6rem;

	/* Typography */
	--font-primary: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
	--font-size-xs: 0.875rem;
	--font-size-sm: 1rem;
	--font-size-base: 1.125rem;
	--font-size-lg: 1.25rem;
	--font-size-xl: 1.5rem;
	--font-size-2xl: 2rem;
	--font-size-3xl: 2.5rem;
	--font-size-4xl: 3rem;
	--font-size-5xl: 3.5rem;

	/* Animations */
	--transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
	font-family: var(--font-primary);
	color: var(--text-primary);
	background: var(--background);
	line-height: 1.6;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

html {
	scroll-behavior: smooth;
}

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	transition: var(--transition-base);
	border-bottom: 1px solid transparent;
}

.navbar.scrolled {
	background: rgba(255, 255, 255, 0.98);
	border-bottom-color: var(--border);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-logo img {
	height: 40px;
	width: auto;
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 2.5rem;
}

.nav-link {
	color: var(--text-primary);
	text-decoration: none;
	font-weight: 500;
	font-size: var(--font-size-sm);
	position: relative;
	transition: var(--transition-base);
}

.nav-link::after {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary);
	transition: width 0.3s ease;
}

.nav-link:hover {
	color: var(--primary);
}

.nav-link:hover::after {
	width: 100%;
}

.nav-cta {
	background: var(--primary);
	color: white !important;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	transition: var(--transition-base);
}

.nav-cta:hover {
	background: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(157, 21, 25, 0.3);
}

.nav-cta::after {
	display: none;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 4px;
	cursor: pointer;
	padding: 5px;
}

.nav-toggle span {
	width: 25px;
	height: 2px;
	background: var(--text-primary);
	transition: var(--transition-base);
}

/* Hero Section */
.hero {
	min-height: 70vh;
	display: flex;
	align-items: center;
	position: relative;
	padding-top: 80px;
	overflow: hidden;
}

.hero-background {
	position: absolute;
	inset: 0;
	z-index: -1;
}

.hero-pattern {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(
			circle at 20% 80%,
			rgba(157, 21, 25, 0.05) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 20%,
			rgba(157, 21, 25, 0.03) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 40% 40%,
			rgba(157, 21, 25, 0.02) 0%,
			transparent 50%
		);
}

.hero-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.hero-content {
	z-index: 1;
}

@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

.hero-title {
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 1rem;
	color: var(--text-primary);
}

.hero-subtitle {
	font-size: clamp(2.5rem, 6vw, 4rem);
	font-weight: 800;
	background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 1.5rem;
}

.hero-description {
	font-size: var(--font-size-lg);
	color: var(--text-secondary);
	margin-bottom: 2rem;
	line-height: 1.8;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	border-radius: 10px;
	font-weight: 600;
	text-decoration: none;
	transition: var(--transition-base);
	cursor: pointer;
	border: none;
	font-size: var(--font-size-sm);
}

.btn-primary {
	background: var(--primary);
	color: white;
}

.btn-primary:hover {
	background: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(157, 21, 25, 0.3);
}

.btn-secondary {
	background: white;
	color: var(--text-primary);
}

.btn-secondary:hover {
	background: var(--border);
	transform: translateY(-2px);
}

.btn-white {
	background: white;
	color: var(--primary);
}

.btn-white:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.btn-outline-white {
	background: transparent;
	color: white;
	border: 2px solid white;
}

.btn-outline-white:hover {
	background: white;
	color: var(--primary);
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.stat {
	text-align: center;
}

.stat-number {
	display: block;
	font-size: var(--font-size-2xl);
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 0.25rem;
}

.stat-label {
	font-size: var(--font-size-sm);
	color: var(--text-secondary);
}

/* Hero Visual */
.hero-visual {
	position: relative;
}

.hero-image-wrapper {
	position: relative;
}

.hero-image {
	width: 100%;
	height: auto;
}

.floating-card {
	position: absolute;
	background: white;
	padding: 1rem 1.5rem;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	gap: 0.75rem;
	top: 30%;
	right: -30px;
	animation: float 3s ease-in-out infinite;
}

.floating-card.card-2 {
	top: auto;
	bottom: 80%;
	right: auto;
	left: -30px;
	animation-delay: 1.5s;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

.card-icon {
	font-size: 1.5rem;
}

.card-text {
	font-size: var(--font-size-sm);
	font-weight: 600;
	color: var(--text-primary);
}

/* Sections */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

section {
	padding: var(--spacing-3xl) 0;
}

.section-header {
	text-align: center;
	margin-bottom: var(--spacing-3xl);
}

.section-label {
	display: inline-block;
	color: var(--primary);
	font-weight: 600;
	font-size: var(--font-size-sm);
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.section-title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	margin-bottom: 1rem;
	line-height: 1.2;
}

/* Solution Section */

.solution-grid,
.solution-grid1 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-bottom: var(--spacing-3xl);
}

.solution-card {
	background: white;
	padding: 2.5rem;
	border-radius: 16px;
	border: 1px solid var(--border);
	transition: var(--transition-base);
	position: relative;
	overflow: hidden;
}

.solution-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--primary), var(--accent));
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.solution-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	border-color: transparent;
}

.solution-card:hover::before {
	transform: scaleX(1);
}

.solution-card.featured {
	background: linear-gradient(
		135deg,
		var(--primary) 0%,
		var(--primary-dark) 100%
	);
	color: white;
	border: none;
}

.solution-card.featured .card-icon-wrapper {
	background: rgba(255, 255, 255, 0.2);
}

.solution-card.featured h3,
.solution-card.featured p {
	color: white;
}

.card-icon-wrapper {
	width: 60px;
	height: 60px;
	background: var(--surface);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.card-icon {
	width: 30px;
	height: 30px;
	stroke: var(--primary);
}

.solution-card.featured .card-icon {
	stroke: white;
}

.solution-card h3 {
	font-size: var(--font-size-xl);
	margin-bottom: 1rem;
	font-weight: 700;
}

.solution-card p {
	color: var(--text-secondary);
	line-height: 1.8;
}

.card-badge {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	background: rgba(255, 255, 255, 0.2);
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: var(--font-size-xs);
	font-weight: 600;
}

/* Comparison Section */
.comparison-section {
	background: white;
	padding: 3rem;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.comparison-title {
	text-align: center;
	font-size: var(--font-size-2xl);
	margin-bottom: 3rem;
	font-weight: 700;
}

.comparison-table {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 2rem;
	align-items: center;
}

.comparison-column {
	padding: 2rem;
	border-radius: 12px;
}

.comparison-column:first-child {
	background: #fee2e2;
}

.comparison-column:last-child {
	background: #dcfce7;
}

.column-title {
	font-size: var(--font-size-xl);
	font-weight: 700;
	margin-bottom: 1.5rem;
	text-align: center;
}

.column-title.old {
	color: #dc2626;
}

.column-title.new {
	color: #16a34a;
}

.comparison-vs {
	font-size: var(--font-size-2xl);
	font-weight: 800;
	color: var(--text-secondary);
	padding: 1rem;
}

.comparison-list {
	list-style: none;
}

.comparison-item {
	padding: 0.75rem 0;
	padding-left: 2rem;
	position: relative;
	font-weight: 500;
}

.comparison-item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	border-radius: 50%;
}

.comparison-item.negative::before {
	background: #dc2626;
	content: "✕";
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
}

.comparison-item.positive::before {
	background: #16a34a;
	content: "✓";
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
}

/* Features Section */
.features {
	background: white;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-bottom: var(--spacing-3xl);
}

.feature-item {
	background: var(--surface);
	padding: 2.5rem;
	border-radius: 16px;
	position: relative;
	transition: var(--transition-base);
}

.feature-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-number {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	font-size: var(--font-size-3xl);
	font-weight: 800;
	color: rgba(157, 21, 25, 0.1);
}

.feature-item h3 {
	font-size: var(--font-size-xl);
	margin-bottom: 1rem;
	font-weight: 700;
}

.feature-item p {
	color: var(--text-secondary);
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

.feature-tags {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.tag {
	display: inline-block;
	background: white;
	color: var(--primary);
	padding: 0.4rem 0.8rem;
	border-radius: 6px;
	font-size: var(--font-size-xs);
	font-weight: 600;
	border: 1px solid var(--border);
}

/* Integration Showcase */
.integration-showcase {
	background: var(--surface);
	padding: 3rem;
	border-radius: 20px;
	margin-top: var(--spacing-3xl);
}

.integration-showcase h3 {
	text-align: center;
	font-size: var(--font-size-2xl);
	margin-bottom: 2rem;
}

.integration-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
}

.code-section {
	flex: 1;
	max-width: 800px; /* Limite la largeur */
}

.code-example {
	background: #1e1e1e;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.code-header {
	background: #2d2d2d;
	padding: 8px 16px; /* Réduit de 12px à 8px */
	border-bottom: 1px solid #404040;
}

.code-lang {
	color: #61dafb;
	font-size: 12px; /* Réduit de 14px à 12px */
	font-weight: 500;
}

pre {
	margin: 0;
	padding: 12px 16px; /* Réduit de 20px à 12px */
	overflow-x: auto;
	font-size: 12px; /* Réduit de 14px à 12px */
	line-height: 1.4; /* Réduit de 1.6 à 1.4 */
	max-height: 300px; /* Limite la hauteur */
	overflow-y: auto;
}

code {
	color: #e6e6e6;
	font-family: "Consolas", "Monaco", "Courier New", monospace;
}

.api-benefits {
	flex: 1;
}

.benefits-image {
	text-align: center;
}

.benefits-image img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.code-lang {
	color: #94a3b8;
	font-size: var(--font-size-sm);
	font-weight: 500;
}

.copy-btn {
	background: #334155;
	color: white;
	border: none;
	padding: 0.5rem 1rem;
	border-radius: 6px;
	font-size: var(--font-size-sm);
	cursor: pointer;
	transition: var(--transition-base);
}

.copy-btn:hover {
	background: #475569;
}

.code-example pre {
	padding: 2rem;
	overflow-x: auto;
	margin: 0;
}

.code-example code {
	color: #e2e8f0;
	font-family: "Consolas", "Monaco", monospace;
	font-size: var(--font-size-sm);
	line-height: 1.8;
}

/* API Benefits Section */
.api-benefits {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.benefits-image {
	width: 100%;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
		0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.benefits-image img {
	width: 100%;
	height: auto;
	display: block;
}

.benefits-text {
	padding: 1rem;
}

.benefits-text h4 {
	font-size: var(--font-size-lg);
	color: var(--primary);
	margin-bottom: 1rem;
	line-height: 1.4;
}

.benefits-text p {
	color: #64748b;
	line-height: 1.6;
	margin-bottom: 0.75rem;
}

.benefits-text p:last-child {
	margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
	.integration-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.api-benefits {
		order: -1; /* Place l'image et le texte en premier sur mobile */
	}

	.integration-showcase {
		padding: 2rem;
	}
}

@media (max-width: 640px) {
	.integration-showcase h3 {
		font-size: var(--font-size-xl);
	}

	.code-example pre {
		padding: 1.5rem;
	}

	.benefits-text h4 {
		font-size: var(--font-size-base);
	}
}

/* Compatibility Section - Carousel */
.carousel-container {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem 0;
}

.carousel-wrapper {
	position: relative;
	padding: 0 60px;
}

.carousel-track-container {
	overflow: hidden;
	margin: 0 auto;
}

.carousel-track {
	display: flex;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 0.4);
	margin-bottom: 50px;
}

.carousel-slide {
	flex: 0 0 100%;
	padding: 0 1rem;
}

.terminal-card {
	background: white;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
	transition: all 0.3s ease;
	position: relative;
	height: 100%;
}

.terminal-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.terminal-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background: var(--primary);
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	z-index: 1;
}

.terminal-image {
	background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
	padding: 3rem;
	text-align: center;
	min-height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.terminal-image img {
	max-width: 250px;
	max-height: 250px;
	width: 100%;
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.terminal-info {
	padding: 2rem;
}

.terminal-info h3 {
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: var(--text-primary);
}

.terminal-subtitle {
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
	font-size: 1rem;
}

.terminal-features {
	list-style: none;
	padding: 0;
	margin: 0;
}

.terminal-features li {
	padding: 0.5rem 0;
	padding-left: 1.5rem;
	position: relative;
	color: var(--text-secondary);
}

.terminal-features li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--primary);
	font-weight: bold;
}

/* Carousel Controls */
.carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: white;
	border: none;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	z-index: 2;
}

.carousel-btn:hover {
	background: var(--primary);
	transform: translateY(-50%) scale(1.1);
}

.carousel-btn:hover svg {
	color: white;
}

.carousel-btn-prev {
	left: 0;
}

.carousel-btn-next {
	right: 0;
}

.carousel-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.carousel-btn:disabled:hover {
	background: white;
	transform: translateY(-50%);
}

/* Dots */
.carousel-dots {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 2rem;
}

.carousel-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #e0e0e0;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
}

.carousel-dot.active {
	background: var(--primary);
	width: 30px;
	border-radius: 5px;
}

/* CTA Section */
.compatibility-cta {
	text-align: center;
	margin-top: 4rem;
	padding: 3rem;
	background: var(--surface);
	border-radius: 20px;
}

.compatibility-cta p {
	font-size: 1.25rem;
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
}

.btn-outline {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	border: 2px solid var(--primary);
	color: var(--primary);
	background: transparent;
	border-radius: 50px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn-outline:hover {
	background: var(--primary);
	color: white;
	transform: translateY(-2px);
}

/* Mobile Responsive */
@media (min-width: 768px) {
	.carousel-slide {
		flex: 0 0 50%;
	}

	.terminal-card {
		margin: 0 0.5rem;
	}
}

@media (min-width: 1024px) {
	.carousel-slide {
		flex: 0 0 33.333%;
	}
}

@media (max-width: 767px) {
	.carousel-wrapper {
		padding: 0 40px;
	}

	.carousel-btn {
		width: 36px;
		height: 36px;
	}

	.terminal-image {
		min-height: 200px;
		padding: 2rem;
	}

	.terminal-image img {
		max-width: 180px;
		max-height: 180px;
	}

	.terminal-info {
		padding: 1.5rem;
	}

	.terminal-info h3 {
		font-size: 1.5rem;
	}
}
/* CTA Section */
.cta-section {
	background: linear-gradient(
		135deg,
		var(--primary) 0%,
		var(--primary-dark) 100%
	);
	color: white;
	position: relative;
	overflow: hidden;
}

.cta-section::before {
	content: "";
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(
		circle,
		rgba(255, 255, 255, 0.1) 0%,
		transparent 70%
	);
	animation: rotate 30s linear infinite;
}

@keyframes rotate {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.cta-content {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.cta-title {
	font-size: clamp(2rem, 5vw, 3rem);
	margin-bottom: 1rem;
	font-weight: 800;
}

.cta-description {
	font-size: var(--font-size-lg);
	margin-bottom: 2rem;
	opacity: 0.9;
}

.cta-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	margin-bottom: 3rem;
	flex-wrap: wrap;
}

.cta-features {
	display: flex;
	gap: 2rem;
	justify-content: center;
	flex-wrap: wrap;
}

.cta-feature {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: var(--font-size-sm);
	opacity: 0.9;
}

.cta-feature svg {
	color: #10b981;
}

/* Footer */
.footer {
	background: var(--secondary);
	color: white;
	padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.footer-content {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 4rem;
	margin-bottom: 3rem;
}

.footer-logo {
	height: 40px;
	width: auto;
	margin-bottom: 1rem;
	filter: brightness(0) invert(1);
}

.footer-description {
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 1.5rem;
}

.footer-social {
	display: flex;
	gap: 1rem;
}

.footer-social a {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition-base);
}

.footer-social a:hover {
	background: var(--primary);
	transform: translateY(-2px);
}

.footer-social svg {
	fill: white;
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.footer-column h4 {
	font-size: var(--font-size-base);
	margin-bottom: 1rem;
	font-weight: 600;
}

.footer-column a {
	display: block;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	padding: 0.5rem 0;
	transition: var(--transition-base);
	font-size: var(--font-size-sm);
}

.footer-column a:hover {
	color: white;
	transform: translateX(5px);
}

.footer-column address {
	font-style: normal;
	color: rgba(255, 255, 255, 0.7);
	font-size: var(--font-size-sm);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.footer-bottom p {
	color: rgba(255, 255, 255, 0.6);
	font-size: var(--font-size-sm);
}

.footer-legal {
	display: flex;
	gap: 2rem;
}

.footer-legal a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	font-size: var(--font-size-sm);
	transition: var(--transition-base);
}

.footer-legal a:hover {
	color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.hero-container {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hero-visual {
		max-width: 600px;
		margin: 0 auto;
	}

	.floating-card {
		right: 10px;
	}

	.floating-card.card-2 {
		left: 10px;
	}

	.solution-grid,
	.features-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.comparison-table {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.comparison-vs {
		text-align: center;
	}
}

@media (max-width: 768px) {
	/* Navigation */
	.nav-menu {
		position: fixed;
		top: 60px;
		right: -100%;
		width: 100%;
		height: calc(100vh - 60px);
		background: white;
		flex-direction: column;
		padding: 2rem;
		gap: 1.5rem;
		transition: right 0.3s ease;
		box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
	}

	.nav-menu.active {
		right: 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(5px, -5px);
	}

	/* Hero */
	.hero {
		min-height: auto;
		padding: var(--spacing-3xl) 0;
	}

	.hero-stats {
		grid-template-columns: 1fr;
		gap: 1rem;
		text-align: left;
	}

	.stat {
		display: flex;
		align-items: center;
		gap: 1rem;
	}

	.stat-number {
		font-size: var(--font-size-xl);
	}

	/* Grid Layouts */
	.solution-grid,
	.features-grid,
	.footer-links {
		grid-template-columns: 1fr;
	}

	.footer-content {
		grid-template-columns: 1fr;
	}

	/* Sections */
	section {
		padding: var(--spacing-2xl) 0;
	}

	.section-header {
		margin-bottom: var(--spacing-2xl);
	}

	/* Buttons */
	.hero-buttons {
		flex-direction: column;
		align-items: stretch;
	}

	.btn {
		justify-content: center;
	}

	/* Code Example */
	.code-example pre {
		padding: 1rem;
		font-size: 0.75rem;
	}

	/* Footer */
	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 480px) {
	/* Typography */
	.hero-title {
		font-size: 1.75rem;
	}

	.hero-subtitle {
		font-size: 2rem;
	}

	.section-title {
		font-size: 1.75rem;
	}

	/* Spacing */
	.container {
		padding: 0 1rem;
	}

	.nav-container {
		padding: 1rem;
	}

	/* Cards */
	.solution-card,
	.feature-item,
	.device-category {
		padding: 1.5rem;
	}

	/* Hero Stats */
	.hero-stats {
		display: none;
	}

	/* Devices */
	.devices-list {
		grid-template-columns: 1fr;
	}
}

/* Animations */
[data-aos] {
	transition-property: transform, opacity;
}

[data-aos][data-aos][data-aos-duration="400"],
body[data-aos-duration="400"] [data-aos] {
	transition-duration: 0.4s;
}

[data-aos][data-aos][data-aos-delay="100"],
body[data-aos-delay="100"] [data-aos] {
	transition-delay: 0.1s;
}

[data-aos][data-aos][data-aos-delay="200"],
body[data-aos-delay="200"] [data-aos] {
	transition-delay: 0.2s;
}

[data-aos][data-aos][data-aos-delay="300"],
body[data-aos-delay="300"] [data-aos] {
	transition-delay: 0.3s;
}

/* Print Styles */
@media print {
	.navbar,
	.cta-section,
	.footer {
		display: none;
	}

	body {
		font-size: 12pt;
	}

	.hero,
	section {
		page-break-inside: avoid;
	}
}
