/* InteropLabs Landing Page Styles */
:root {
	--white: #fff;
	--gray-light: #f8f9fa;
	--gray-lighter: #e9ecef;
	--blue: #007bff;
	--blue-dark: #0056b3;
	--green: #28a745;
	--text: #222;
	--text-light: #555;
	--border: #e9ecef;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
	margin: 0;
	font-family: 'Inter', Arial, sans-serif;
	background: var(--gray-light);
	color: var(--text);
	line-height: 1.6;
	min-height: 100vh;
}
.container {
	max-width: 900px;
	margin: 0 auto;
	padding: 2.5rem 1.25rem;
}
.hero {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 2.5rem;
	background: var(--white);
	border-radius: 1.5rem;
	box-shadow: 0 2px 16px rgba(0,0,0,0.04);
	margin-top: 2.5rem;
	padding: 2.5rem 2rem;
}
.hero-img {
	flex: 1 1 350px;
	min-width: 260px;
	text-align: center;
}
.hero-img img {
	display: block;
	max-width: 100%;
	height: auto;
	border-radius: 1rem;
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);
	background: var(--gray-lighter);
}
.hero-content {
	flex: 2 1 340px;
	min-width: 260px;
}
.hero-title {
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--blue-dark);
	margin-bottom: 0.5rem;
}
.hero-subtitle {
	font-size: 1.2rem;
	color: var(--text-light);
	margin-bottom: 1.5rem;
}
.cred-list {
	list-style: none;
	padding: 0;
	margin: 0 0 1.5rem 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.5rem;
	font-size: 0.98rem;
	color: var(--text-light);
}
.trust-signals {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}
.trust-signal {
	background: var(--gray-lighter);
	border-radius: 0.5rem;
	padding: 0.5rem 1rem;
	font-size: 0.95rem;
	color: var(--text-light);
}
.cta-btn {
	display: inline-block;
	background: var(--blue);
	color: var(--white);
	font-weight: 600;
	font-size: 1.1rem;
	padding: 0.75rem 2.2rem;
	border: none;
	border-radius: 0.5rem;
	cursor: pointer;
	text-decoration: none;
	transition: background 0.2s;
	box-shadow: 0 2px 8px rgba(0,123,255,0.08);
}
.cta-btn:hover, .cta-btn:focus {
	background: var(--blue-dark);
	outline: none;
}
@media (max-width: 700px) {
	.hero { flex-direction: column; gap: 1.5rem; padding: 1.5rem 0.5rem; }
	.container { padding: 1.5rem 0.5rem; }
}
/* Service Exposition */
.services-natural {
	background: var(--white);
	border-radius: 1.5rem;
	box-shadow: 0 2px 16px rgba(0,0,0,0.04);
	margin: 2.5rem 0;
	padding: 2.5rem 2rem;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}
.service-block {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 2rem;
}
.service-img {
	flex: 0 0 90px;
	min-width: 90px;
	text-align: center;
}
.service-img img {
	max-width: 90px;
	width: 100%;
	height: auto;
	background: var(--white);
	border-radius: 0.5rem;
	box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.service-content {
	flex: 1 1 200px;
	min-width: 200px;
}
.service-title {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--blue);
	margin-bottom: 0.3rem;
}
.service-desc {
	color: var(--text-light);
	font-size: 1.05rem;
	margin-bottom: 0.5rem;
}
/* Contact Info */
.contact-info-block {
	background: var(--gray-lighter);
	border-radius: 1rem;
	padding: 1.5rem;
	margin: 2.5rem 0 0 0;
	text-align: center;
	color: var(--text-light);
	font-size: 1.05rem;
}
.contact-info-block strong { color: var(--blue-dark); }
.contact-info-block a { color: var(--blue-dark); text-decoration: underline; }
