* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Open Sans', sans-serif;
	background-color: #0d0d0d;
	color: #e1e1e1;
	line-height: 1.6;
	overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Open Sans', sans-serif;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #e1e1e1;
}

h1 {
	font-size: 2.5rem;
	line-height: 1.2;
}

h2 {
	font-size: 2rem;
	line-height: 1.3;
}

h3 {
	font-size: 1.5rem;
	line-height: 1.4;
}

p {
	margin-bottom: 1rem;
	font-size: 1rem;
	line-height: 1.6;
}

a {
	color: #005de0;
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: #39ff14;
}

/* === CONTAINER AND LAYOUT === */
.ia-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.ia-section {
	padding: 4rem 0;
	position: relative;
}

.ia-section:nth-child(even) {
	background-color: rgba(43, 43, 43, 0.3);
}

.ia-grid {
	display: grid;
	gap: 2rem;
}

.ia-grid-2 {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.ia-grid-3 {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.ia-grid-4 {
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.ia-flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.ia-text-center {
	text-align: center;
}

.ia-mb-2 {
	margin-bottom: 2rem;
}

.ia-mb-4 {
	margin-bottom: 4rem;
}

/* === BUTTONS === */
.ia-btn {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	border-radius: 5px;
	font-weight: 500;
	text-align: center;
	cursor: pointer;
	border: none;
	transition: all 0.3s ease;
	text-decoration: none;
	font-size: 1rem;
}

.ia-btn-primary {
	background-color: #005de0;
	color: #e1e1e1;
}

.ia-btn-primary:hover {
	background-color: #39ff14;
	color: #0d0d0d;
	box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
}

.ia-btn-secondary {
	background-color: transparent;
	color: #39ff14;
	border: 2px solid #39ff14;
}

.ia-btn-secondary:hover {
	background-color: #39ff14;
	color: #0d0d0d;
	box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
}

.ia-btn-lg {
	padding: 1rem 2rem;
	font-size: 1.1rem;
}

/* === HEADER STYLES === */
.ia-header {
	background-color: rgba(13, 13, 13, 0.95);
	backdrop-filter: blur(10px);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	padding: 1rem 0;
	border-bottom: 1px solid rgba(43, 43, 43, 0.5);
}

.ia-header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.ia-logo {
	font-size: 1.5rem;
	font-weight: 600;
	color: #39ff14;
	text-decoration: none;
	transition: color 0.3s ease;
	position: relative;
	z-index: 1005;
}

.ia-logo:hover {
	color: #005de0;
}

.ia-nav {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.ia-nav-link {
	color: #e1e1e1;
	font-weight: 500;
	padding: 0.5rem 0;
	position: relative;
	transition: color 0.3s ease;
}

.ia-nav-link:hover {
	color: #39ff14;
}

.ia-nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #39ff14;
	transition: width 0.3s ease;
}

.ia-nav-link:hover::after {
	width: 100%;
}

.ia-search {
	position: relative;
}

.ia-search-input {
	background-color: #2b2b2b;
	border: 1px solid rgba(225, 225, 225, 0.2);
	border-radius: 25px;
	padding: 0.5rem 1rem;
	color: #e1e1e1;
	width: 200px;
	transition: all 0.3s ease;
}

.ia-search-input:focus {
	outline: none;
	border-color: #39ff14;
	box-shadow: 0 0 10px rgba(57, 255, 20, 0.2);
}

.ia-search-icon {
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	color: #005de0;
	cursor: pointer;
}

.ia-mobile-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	padding: 0.5rem;
	position: relative;
	z-index: 1005;
}

.ia-mobile-toggle span {
	width: 25px;
	height: 3px;
	background-color: #e1e1e1;
	margin: 3px 0;
	transition: 0.3s;
}

.ia-mobile-nav {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(13, 13, 13, 0.98);
	z-index: 1001;
	padding: 2rem;
}

.ia-mobile-nav.active {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 2rem;
}

.ia-mobile-nav-link {
	color: #e1e1e1;
	font-size: 1.5rem;
	font-weight: 500;
	transition: color 0.3s ease;
}

.ia-mobile-nav-link:hover {
	color: #39ff14;
}

/* === HERO SECTION === */
.ia-hero {
	height: 100vh;
	background: linear-gradient(rgba(13, 13, 13, 0.7), rgba(13, 13, 13, 0.7)),
		url('assets/ia-hero.webp') center/cover;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
}

.ia-hero-content {
	max-width: 800px;
	z-index: 2;
	margin: 0 20px;
	animation: fadeInUp 1s ease-out;
}

.ia-hero h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
	color: #e1e1e1;
}

.ia-hero p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	color: #e1e1e1;
	opacity: 0.9;
}

.ia-hero-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* === CARDS === */
.ia-quick-card {
	background-color: #2b2b2b;
	border-radius: 10px;
	padding: 2rem;
	text-align: center;
	transition: all 0.3s ease;
	border: 1px solid rgba(225, 225, 225, 0.1);
}

.ia-quick-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(57, 255, 20, 0.1);
	border-color: #39ff14;
}

.ia-quick-card-icon {
	font-size: 3rem;
	color: #005de0;
	margin-bottom: 1rem;
}

.ia-quick-card h3 {
	color: #39ff14;
	margin-bottom: 1rem;
}

.ia-quick-card p {
	color: #e1e1e1;
	opacity: 0.8;
	line-height: 1.6;
}

.ia-article-block {
	background-color: #2b2b2b;
	border-radius: 10px;
	padding: 2rem;
	border: 1px solid rgba(225, 225, 225, 0.1);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.ia-article-btn {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.ia-article-btn a {
	margin-top: auto;
}

.ia-article-block:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(57, 255, 20, 0.1);
	border-color: #39ff14;
}

.ia-article-block h3 {
	color: #39ff14;
	margin-bottom: 1rem;
}

.ia-article-block p {
	color: #e1e1e1;
	opacity: 0.8;
	margin-bottom: 1.5rem;
}

.ia-article-link {
	color: #005de0;
	font-weight: 500;
	transition: color 0.3s ease;
}

.ia-article-link:hover {
	color: #39ff14;
}

/* === INTERACTIVE BLOCK === */
.ia-interactive {
	background-color: #2b2b2b;
	border-radius: 15px;
	padding: 3rem;
	margin: 4rem 0;
	border: 1px solid rgba(225, 225, 225, 0.1);
}

.ia-interactive h2 {
	text-align: center;
	color: #39ff14;
	margin-bottom: 3rem;
}

.ia-interactive-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.ia-component-selector {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.ia-component-btn {
	background-color: transparent;
	color: #e1e1e1;
	border: 2px solid rgba(225, 225, 225, 0.2);
	border-radius: 10px;
	padding: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: left;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.ia-component-btn:hover,
.ia-component-btn.active {
	border-color: #39ff14;
	background-color: rgba(57, 255, 20, 0.1);
	color: #39ff14;
}

.ia-component-btn i {
	font-size: 1.5rem;
	color: #005de0;
}

.ia-component-btn.active i {
	color: #39ff14;
}

.ia-component-info {
	background-color: rgba(57, 255, 20, 0.05);
	border-radius: 10px;
	padding: 2rem;
	border: 1px solid rgba(57, 255, 20, 0.2);
}

.ia-component-info h4 {
	color: #39ff14;
	margin-bottom: 1rem;
	font-size: 1.3rem;
}

.ia-component-info p {
	color: #e1e1e1;
	line-height: 1.6;
}

/* === VIDEO SECTION === */
.ia-video-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.ia-video-item {
	background-color: #2b2b2b;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid rgba(225, 225, 225, 0.1);
	transition: all 0.3s ease;
}

.ia-video-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(57, 255, 20, 0.1);
	border-color: #39ff14;
}

.ia-video-embed {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}

.ia-video-embed iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.ia-video-info {
	padding: 1.5rem;
}

.ia-video-info h4 {
	color: #39ff14;
	margin-bottom: 0.5rem;
	font-size: 1.1rem;
}

.ia-video-info p {
	color: #e1e1e1;
	opacity: 0.8;
	font-size: 0.9rem;
}

/* === FORM STYLES === */
.ia-form {
	background-color: #2b2b2b;
	border-radius: 15px;
	padding: 3rem;
	border: 1px solid rgba(225, 225, 225, 0.1);
}

.ia-form h3 {
	color: #39ff14;
	text-align: center;
	margin-bottom: 2rem;
}

.ia-form-group {
	margin-bottom: 1.5rem;
}

.ia-form-label {
	display: block;
	margin-bottom: 0.5rem;
	color: #e1e1e1;
	font-weight: 500;
}

.ia-form-input,
.ia-form-textarea {
	width: 100%;
	padding: 0.75rem;
	background-color: #0d0d0d;
	border: 2px solid rgba(225, 225, 225, 0.2);
	border-radius: 5px;
	color: #e1e1e1;
	font-family: inherit;
	transition: all 0.3s ease;
}

.ia-form-input:focus,
.ia-form-textarea:focus {
	outline: none;
	border-color: #39ff14;
	box-shadow: 0 0 10px rgba(57, 255, 20, 0.2);
}

.ia-form-textarea {
	min-height: 120px;
	resize: vertical;
}

.ia-form-error {
	color: #ff4757;
	font-size: 0.8rem;
	margin-top: 0.5rem;
	display: none;
}

/* === TABLE STYLES === */
.ia-table {
	width: 100%;
	background-color: #2b2b2b;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid rgba(225, 225, 225, 0.1);
	margin: 2rem 0;
}

.ia-table th,
.ia-table td {
	padding: 1rem;
	text-align: left;
	border-bottom: 1px solid rgba(225, 225, 225, 0.1);
}

.ia-table th {
	background-color: #005de0;
	color: #e1e1e1;
	font-weight: 600;
}

.ia-table td {
	color: #e1e1e1;
}

.ia-table tr:last-child td {
	border-bottom: none;
}

/* Map Section */
.ia-map {
	height: 100%;
	min-height: 400px;
	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.ia-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.ia-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	/* border-radius: 10px; */
	/* overflow: hidden; */
}

.ia-map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;

	height: 100%;
	border-radius: 1rem;

	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1;
	cursor: pointer;
}

/* === FOOTER === */
.ia-footer {
	background-color: #2b2b2b;
	color: #e1e1e1;
	padding: 3rem 0 1rem;
	border-top: 1px solid rgba(225, 225, 225, 0.1);
}

.ia-footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
	margin-bottom: 2rem;
}

.ia-footer-section h4 {
	color: #39ff14;
	margin-bottom: 1rem;
	font-size: 1.2rem;
}

.ia-footer-section p,
.ia-footer-section li {
	color: #e1e1e1;
	opacity: 0.8;
	margin-bottom: 0.5rem;
	line-height: 1.6;
}

.ia-footer-section ul {
	list-style: none;
}

.ia-footer-section ul li {
	margin-bottom: 0.5rem;
}

.ia-footer-section a {
	color: #e1e1e1;
	opacity: 0.8;
	text-decoration: none;
	transition: all 0.3s ease;
}

.ia-footer-section a:hover {
	color: #39ff14;
	opacity: 1;
}

.ia-footer-bottom {
	border-top: 1px solid rgba(225, 225, 225, 0.1);
	padding-top: 2rem;
	text-align: center;
}

.ia-footer-bottom p {
	color: #e1e1e1;
	opacity: 0.6;
	font-size: 0.9rem;
}

/* === COOKIE POPUP === */
.ia-cookie-popup {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(43, 43, 43, 0.95);
	backdrop-filter: blur(10px);
	padding: 2rem;
	border-top: 1px solid rgba(225, 225, 225, 0.1);
	z-index: 1002;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.ia-cookie-popup.show {
	transform: translateY(0);
}

.ia-cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
}

.ia-cookie-text {
	flex: 1;
	color: #e1e1e1;
}

.ia-cookie-text a {
	color: #39ff14;
	text-decoration: underline;
}

.ia-cookie-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.ia-cookie-accept {
	background-color: #39ff14;
	color: #0d0d0d;
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 5px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s ease;
}

.ia-cookie-accept:hover {
	background-color: #005de0;
	color: #e1e1e1;
	box-shadow: 0 0 15px rgba(0, 93, 224, 0.3);
}

/* === ANIMATIONS === */
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.ia-fade-in {
	animation: fadeIn 1s ease-out;
}

.ia-fade-in-up {
	animation: fadeInUp 1s ease-out;
}

.ia-slide-in-left {
	animation: slideInLeft 0.8s ease-out;
}

.ia-slide-in-right {
	animation: slideInRight 0.8s ease-out;
}

/* === AUTOMATION PAGE STYLES === */
.ia-plc-comparison {
	background-color: #2b2b2b;
	border-radius: 15px;
	padding: 3rem;
	border: 1px solid rgba(225, 225, 225, 0.1);
	margin: 3rem 0;
}

.ia-plc-table {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 0;
	border: 1px solid rgba(225, 225, 225, 0.2);
	border-radius: 10px;
	overflow: hidden;
}

.ia-plc-header {
	background-color: #005de0;
	color: #e1e1e1;
	padding: 1rem;
	text-align: center;
	font-weight: 600;
}

.ia-plc-cell {
	padding: 1rem;
	border-right: 1px solid rgba(225, 225, 225, 0.1);
	border-bottom: 1px solid rgba(225, 225, 225, 0.1);
	background-color: #0d0d0d;
	color: #e1e1e1;
}

.ia-plc-cell:nth-child(3n) {
	border-right: none;
}

.ia-module-card {
	background-color: #2b2b2b;
	border-radius: 10px;
	padding: 2rem;
	text-align: center;
	border: 2px solid rgba(57, 255, 20, 0.2);
	transition: all 0.3s ease;
}

.ia-module-card:hover {
	transform: translateY(-5px);
	border-color: #39ff14;
	box-shadow: 0 10px 30px rgba(57, 255, 20, 0.2);
}

.ia-module-icon {
	font-size: 3rem;
	color: #39ff14;
	margin-bottom: 1rem;
}

.ia-case-study {
	background-color: #2b2b2b;
	border-radius: 15px;
	padding: 3rem;
	border: 1px solid rgba(225, 225, 225, 0.1);
	margin: 3rem 0;
}

.ia-case-study h3 {
	color: #39ff14;
	margin-bottom: 2rem;
	text-align: center;
}

.ia-case-study-content {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 3rem;
	align-items: center;
}

.ia-case-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
	border: 1px solid rgba(225, 225, 225, 0.1);
}

/* === IOT PAGE STYLES === */
.ia-sensor-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.ia-sensor-card {
	background-color: #2b2b2b;
	border-radius: 10px;
	padding: 2rem;
	text-align: center;
	border: 1px solid rgba(225, 225, 225, 0.1);
	transition: all 0.3s ease;
}

.ia-sensor-card:hover {
	transform: translateY(-5px);
	border-color: #005de0;
	box-shadow: 0 10px 30px rgba(0, 93, 224, 0.1);
}

.ia-sensor-icon {
	font-size: 3rem;
	color: #005de0;
	margin-bottom: 1rem;
}

.ia-sensor-card h4 {
	color: #39ff14;
	margin-bottom: 1rem;
}

.ia-architecture {
	background-color: #2b2b2b;
	border-radius: 15px;
	padding: 3rem;
	border: 1px solid rgba(225, 225, 225, 0.1);
	margin: 3rem 0;
	text-align: center;
}

.ia-architecture h3 {
	color: #39ff14;
	margin-bottom: 2rem;
}

.ia-code-block {
	background-color: #0d0d0d;
	border-radius: 10px;
	padding: 2rem;
	border: 1px solid rgba(225, 225, 225, 0.2);
	margin: 2rem 0;
	overflow-x: auto;
}

.ia-code-block pre {
	color: #39ff14;
	font-family: 'Courier New', monospace;
	font-size: 0.9rem;
	line-height: 1.5;
	margin: 0;
}

.ia-code-block code {
	color: #39ff14;
}

/* === ROBOTICS PAGE STYLES === */
.ia-cobot-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.ia-cobot-card {
	background-color: #2b2b2b;
	border-radius: 10px;
	padding: 2rem;
	text-align: center;
	border: 1px solid rgba(225, 225, 225, 0.1);
	transition: all 0.3s ease;
}

.ia-cobot-card:hover {
	transform: translateY(-5px);
	border-color: #39ff14;
	box-shadow: 0 10px 30px rgba(57, 255, 20, 0.1);
}

.ia-cobot-icon {
	font-size: 3rem;
	color: #005de0;
	margin-bottom: 1rem;
}

.ia-checklist {
	background-color: #2b2b2b;
	border-radius: 15px;
	padding: 3rem;
	border: 1px solid rgba(225, 225, 225, 0.1);
	margin: 3rem 0;
}

.ia-checklist h3 {
	color: #39ff14;
	margin-bottom: 2rem;
	text-align: center;
}

.ia-checklist-items {
	list-style: none;
	padding: 0;
}

.ia-checklist-item {
	padding: 1rem;
	margin-bottom: 0.5rem;
	background-color: rgba(57, 255, 20, 0.05);
	border-radius: 5px;
	border-left: 3px solid #39ff14;
	color: #e1e1e1;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.ia-checklist-item i {
	color: #39ff14;
	font-size: 1.2rem;
}

.ia-vision-section {
	background-color: #2b2b2b;
	border-radius: 15px;
	padding: 3rem;
	border: 1px solid rgba(225, 225, 225, 0.1);
	margin: 3rem 0;
}

.ia-vision-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.ia-vision-content img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 920px) {
	.ia-nav {
		display: none;
	}

	.ia-mobile-toggle {
		display: flex;
	}
}

@media (max-width: 768px) {
	.ia-header-content {
		padding: 0 15px;
	}

	.ia-hero h1 {
		font-size: 2rem;
	}

	.ia-hero p {
		font-size: 1rem;
	}

	.ia-hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.ia-container {
		padding: 0 15px;
	}

	.ia-section {
		padding: 2rem 0;
	}

	.ia-grid-2,
	.ia-grid-3,
	.ia-grid-4 {
		grid-template-columns: 1fr;
	}

	.ia-interactive-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.ia-plc-table {
		grid-template-columns: 1fr;
	}

	.ia-case-study-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.ia-vision-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.ia-cookie-content {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
		flex-wrap: nowrap;
	}

	.ia-cookie-buttons {
		justify-content: center;
	}

	.ia-form {
		padding: 2rem 1rem;
	}

	.ia-footer-content {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.ia-hero h1 {
		font-size: 1.8rem;
	}

	.ia-btn {
		width: 100%;
		text-align: center;
	}

	.ia-hero-buttons .ia-btn {
		width: auto;
		min-width: 200px;
	}

	.ia-interactive-content,
	.ia-video-grid,
	.ia-grid-2,
	.ia-grid-3,
	.ia-grid-4,
	.ia-sensor-grid {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}

	.ia-quick-card,
	.ia-article-block,
	.ia-sensor-card,
	.ia-cobot-card {
		padding: 1.5rem;
	}

	.ia-component-info h4 {
		font-size: 1.1rem;
	}

	.ia-interactive,
	.ia-case-study,
	.ia-architecture,
	.ia-checklist,
	.ia-vision-section {
		padding: 2rem 1rem;
		margin: 2rem 0;
	}

	.ia-logo {
		font-size: 1.2rem;
	}
}

/* === ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* === HIGH CONTRAST MODE === */
@media (prefers-contrast: high) {
	.ia-btn-primary {
		border: 2px solid #e1e1e1;
	}

	.ia-quick-card,
	.ia-article-block,
	.ia-sensor-card,
	.ia-cobot-card {
		border: 2px solid #39ff14;
	}
}

.ia-contact-hero {
	background: linear-gradient(rgba(13, 13, 13, 0.8), rgba(13, 13, 13, 0.8)),
		url('https://images.unsplash.com/photo-1581092335878-b8157d5c1c7a?w=1920&h=600&fit=crop')
			center/cover;
	padding: 8rem 0 4rem;
	text-align: center;
	color: #e1e1e1;
}

.ia-contact-hero h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
	color: #39ff14;
}

.ia-contact-hero h1 i {
	margin-right: 1rem;
	color: #005de0;
}

.ia-contact-hero p {
	font-size: 1.2rem;
	opacity: 0.9;
	max-width: 600px;
	margin: 0 auto;
}

/* Contact Info Grid */
.ia-contact-info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.ia-contact-info-card {
	background-color: #2b2b2b;
	border-radius: 15px;
	padding: 2.5rem;
	text-align: center;
	border: 1px solid rgba(225, 225, 225, 0.1);
	transition: all 0.3s ease;
	position: relative;
}

.ia-contact-info-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(57, 255, 20, 0.1);
	border-color: #39ff14;
}

.ia-contact-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #005de0, #39ff14);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 2rem;
	color: #e1e1e1;
}

.ia-contact-info-card h3 {
	color: #39ff14;
	margin-bottom: 1rem;
	font-size: 1.3rem;
}

.ia-contact-info-card p {
	color: #e1e1e1;
	line-height: 1.6;
	margin-bottom: 0.5rem;
}

.ia-contact-hours {
	color: #005de0;
	font-size: 0.9rem;
	font-style: italic;
}

/* Contact Form and Map Wrapper */
.ia-contact-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
	margin: 4rem 0;
}

.ia-contact-form-section h2 {
	color: #39ff14;
	margin-bottom: 1rem;
	font-size: 1.8rem;
}

.ia-contact-form-section h2 i {
	margin-right: 0.5rem;
	color: #005de0;
}

.ia-contact-form-description {
	color: #e1e1e1;
	opacity: 0.8;
	margin-bottom: 2rem;
	line-height: 1.6;
}

/* Map Section */
.ia-contact-map-section {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.ia-contact-map-section h3 {
	color: #39ff14;
	margin-bottom: 1.5rem;
	font-size: 1.5rem;
}

.ia-contact-map-section h3 i {
	margin-right: 0.5rem;
	color: #005de0;
}

.ia-map-info {
	margin-top: 2rem;
	background-color: #2b2b2b;
	border-radius: 10px;
	padding: 2rem;
	border: 1px solid rgba(225, 225, 225, 0.1);
}

.ia-map-info h4 {
	color: #39ff14;
	margin-bottom: 1rem;
}

.ia-map-info p {
	color: #e1e1e1;
	opacity: 0.8;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.ia-map-details {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.ia-map-details p {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0;
	font-size: 0.9rem;
}

.ia-map-details i {
	color: #005de0;
	width: 16px;
}

/* Expertise Grid */
.ia-expertise-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.ia-expertise-card {
	background-color: #2b2b2b;
	border-radius: 15px;
	padding: 2.5rem;
	text-align: center;
	border: 1px solid rgba(225, 225, 225, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.ia-expertise-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, #005de0, #39ff14);
	transition: left 0.3s ease;
}

.ia-expertise-card:hover::before {
	left: 0;
}

.ia-expertise-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(57, 255, 20, 0.15);
	border-color: #39ff14;
}

.ia-expertise-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #005de0, #39ff14);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 2rem;
	color: #e1e1e1;
	transition: transform 0.3s ease;
}

.ia-expertise-card:hover .ia-expertise-icon {
	transform: scale(1.1) rotateY(360deg);
}

.ia-expertise-card h3 {
	color: #39ff14;
	margin-bottom: 1rem;
	font-size: 1.2rem;
}

.ia-expertise-card p {
	color: #e1e1e1;
	opacity: 0.8;
	line-height: 1.6;
}

/* FAQ Styles */
.ia-faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.ia-faq-item {
	background-color: #2b2b2b;
	border-radius: 10px;
	margin-bottom: 1rem;
	border: 1px solid rgba(225, 225, 225, 0.1);
	overflow: hidden;
	transition: all 0.3s ease;
}

.ia-faq-item:hover {
	border-color: #39ff14;
}

.ia-faq-question {
	width: 100%;
	background: none;
	border: none;
	padding: 1.5rem;
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #e1e1e1;
	font-size: 1.1rem;
	font-weight: 600;
	transition: all 0.3s ease;
}

.ia-faq-question:hover {
	color: #39ff14;
}

.ia-faq-question i {
	color: #005de0;
	transition: transform 0.3s ease;
}

.ia-faq-question.active i {
	transform: rotate(180deg);
}

.ia-faq-answer {
	padding: 0 1.5rem;
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
}

.ia-faq-answer.active {
	padding: 0 1.5rem 1.5rem;
	max-height: 200px;
}

.ia-faq-answer p {
	color: #e1e1e1;
	opacity: 0.8;
	line-height: 1.6;
	margin: 0;
}

/* Enhanced Footer for Contact Page */
.ia-footer-links {
	display: flex;
	gap: 2rem;
}

.ia-footer-links a {
	color: #e1e1e1;
	opacity: 0.6;
	font-size: 0.9rem;
	transition: all 0.3s ease;
}

.ia-footer-links a:hover {
	color: #39ff14;
	opacity: 1;
}

.ia-legal-container {
	padding: 8rem 20px 2rem;
	max-width: 1000px;
	margin: 0 auto;
	color: #e1e1e1;
}

.ia-legal-header {
	text-align: center;
	margin-bottom: 3rem;
	padding-bottom: 2rem;
	border-bottom: 2px solid #2b2b2b;
}

.ia-legal-title {
	font-size: 2.5rem;
	color: #39ff14;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

.ia-legal-title i {
	color: #005de0;
	font-size: 2rem;
}

.ia-legal-date {
	font-size: 1rem;
	color: #e1e1e1;
	opacity: 0.7;
	font-style: italic;
}

.ia-legal-section {
	margin-bottom: 3rem;
	background-color: rgba(43, 43, 43, 0.3);
	border-radius: 15px;
	padding: 2.5rem;
	border: 1px solid rgba(225, 225, 225, 0.1);
	transition: all 0.3s ease;
}

.ia-legal-section:hover {
	border-color: #39ff14;
	box-shadow: 0 5px 20px rgba(57, 255, 20, 0.1);
}

.ia-legal-section-title {
	font-size: 1.5rem;
	color: #39ff14;
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	border-bottom: 1px solid rgba(57, 255, 20, 0.3);
	padding-bottom: 0.5rem;
}

.ia-legal-section-title i {
	color: #005de0;
	font-size: 1.2rem;
}

.ia-legal-section-content {
	line-height: 1.8;
}

.ia-legal-section-content p {
	margin-bottom: 1.5rem;
	color: #e1e1e1;
	text-align: justify;
}

.ia-legal-section-content p:last-child {
	margin-bottom: 0;
}

.ia-legal-contact {
	background-color: #2b2b2b;
	border-radius: 15px;
	padding: 2.5rem;
	margin-top: 3rem;
	border: 1px solid rgba(225, 225, 225, 0.1);
	text-align: center;
}

.ia-legal-contact-title {
	font-size: 1.5rem;
	color: #39ff14;
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.ia-legal-contact-title i {
	color: #005de0;
}

.ia-legal-contact-info p {
	margin-bottom: 1rem;
	color: #e1e1e1;
	line-height: 1.6;
}

.ia-legal-contact-info a {
	color: #005de0;
	transition: color 0.3s ease;
}

.ia-legal-contact-info a:hover {
	color: #39ff14;
}

/* Contact Page Responsive Design */
@media (max-width: 768px) {
	.ia-contact-hero {
		padding: 6rem 0 3rem;
	}

	.ia-contact-hero h1 {
		font-size: 2rem;
	}

	.ia-contact-info-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.ia-contact-info-card {
		padding: 2rem;
	}

	.ia-contact-wrapper {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.ia-expertise-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.ia-expertise-card {
		padding: 2rem;
	}

	.ia-footer-links {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
	}

	.ia-legal-title {
		font-size: 1.5rem;
	}
}

@media (max-width: 480px) {
	.ia-contact-hero h1 {
		font-size: 1.8rem;
	}

	.ia-legal-title {
		font-size: 1rem;
	}

	.ia-legal-section-title {
		font-size: 1.3rem;
		word-break: break-all;
	}

	.ia-contact-info-card,
	.ia-expertise-card {
		padding: 1.5rem;
	}

	.ia-contact-icon,
	.ia-expertise-icon {
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
	}

	.ia-faq-question {
		padding: 1rem;
		font-size: 1rem;
	}

	.ia-contact-info-grid {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}

	.ia-faq-answer.active {
		padding: 0 1rem 1rem;
	}
}
