body {
	margin: 0;
	font-family: 'Open Sans', sans-serif;
	background: linear-gradient(140deg, var(--bg-main), var(--bg-soft));
	color: var(--text-main);
}

.serv-cont-topbar {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 18px;
	padding: 14px 18px;
	margin-bottom: 18px;
	border-radius: 18px;	background: rgba(255, 255, 255, 0.72);}

.serv-cont-brand {
	display: flex;
	align-items: center;
	gap: 6px;
	min-width: 0;
}

.serv-cont-brand h2 {
	margin: 0;
	line-height: 1;
	color: var(--text-main);
}

.page {
	flex: 1;
	min-width: 0;
	margin: 0;
	padding: 0 0 28px;
}

.serv-cont-container {
	max-width: 1500px;
}

.hero {
	background: var(--card-bg);
	color: var(--text-main);
	border-radius: 18px;
	padding: 26px;
	box-shadow: var(--panel-shadow);
	border: 1px solid var(--card-border);
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #0eacd8 0%, #0078a8 60%, rgba(14, 172, 216, 0.2) 100%);
	border-radius: 18px 18px 0 0;
}

.hero h1 {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(26px, 3.1vw, 40px);
	letter-spacing: 0.02em;
}

.hero p {
	margin: 12px 0 0;
	line-height: 1.65;
	font-size: 16px;
	max-width: 900px;
}

.hero blockquote {
	margin: 18px 0 0;
	padding: 14px 16px;
	border-left: 4px solid var(--accent);
	background: rgba(0, 166, 209, 0.12);
	border-radius: 10px;
	font-style: italic;
	display: inline-block;
	max-width: 100%;
}

.hero-actions {
	display: flex;
	gap: 12px;
	margin-top: 18px;
	flex-wrap: wrap;
}

.btn {
	border: 0;
	border-radius: 999px;
	padding: 10px 16px;
	font: 700 14px/1 'Montserrat', sans-serif;
	cursor: pointer;
}

.btn-primary {
	background: #0eacd8;
	color: white;
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.74);
	color: var(--text-main);
}

.services-grid {
	margin-top: 24px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-areas:
		"card-a visual card-b"
		"card-c card-d card-e"
		"cta cta cta";
	gap: 14px;
}

.service-card--a {
	grid-area: card-a;
}

.service-card--b {
	grid-area: card-b;
}

.service-card--c {
	grid-area: card-c;
}

.service-card--d {
	grid-area: card-d;
}

.service-card--e {
	grid-area: card-e;
}

.service-card {
	background: rgba(255, 255, 255, 0.74);
	border-radius: 14px;
	padding: 20px;
	border: 1px solid rgba(14, 172, 216, 0.18);
	box-shadow: 0 4px 24px rgba(14, 172, 216, 0.08), 0 1px 4px rgba(0, 0, 0, 0.06);
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover,
.service-card:focus-visible {
	transform: translateY(-5px) scale(1.012);
	box-shadow: 0 12px 40px rgba(14, 172, 216, 0.18), 0 3px 10px rgba(0, 0, 0, 0.09);
	border-color: rgba(14, 172, 216, 0.46);
	outline: none;
}

.services-visual {
	grid-area: visual;
	margin: 0;
	justify-self: center;
	width: 100%;
	background: transparent;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 220px;
}

.services-visual img {
	display: block;
	margin: 0 auto;
	max-width: 100%;
	object-fit: contain;
	border-radius: 10px;
	height: auto;
}

.services-grid-cta {
	grid-area: cta;
	display: flex;
	align-items: center;
	justify-content: center;
}

.services-grid-cta .btn {
	min-width: 180px;
}

.service-card h2 {
	margin: 0 0 12px;
	font-family: 'Montserrat', sans-serif;
	font-size: 22px;
	display: flex;
	align-items: center;
	gap: 8px;
	overflow-wrap: break-word;
	word-break: normal;
}

.card-bullet {
	width: 35px;
	height: 35px;
	flex-shrink: 0;
}

.service-card ul {
	margin: 0;
	padding-left: 18px;
	line-height: 1.65;
	font-size: 15px;
}

.service-card .btn {
	margin-top: 14px;
}

.note-box {
	margin: 80px auto 0;
	background: var(--card-bg);
	color: var(--text-main);
	border-radius: 12px;
	padding: 16px 18px;
	line-height: 1.6;
	border: 1px solid var(--card-border);
	box-shadow: 0 4px 24px rgba(14, 172, 216, 0.08), 0 1px 4px rgba(0, 0, 0, 0.06);
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
	width: fit-content;
	max-width: 100%;
}

.note-box:hover {
	transform: translateY(-5px) scale(1.012);
	box-shadow: 0 12px 40px rgba(14, 172, 216, 0.18), 0 3px 10px rgba(0, 0, 0, 0.09);
	border-color: rgba(14, 172, 216, 0.46);
}

.quote-box {
	margin-top: 22px;
	background: var(--card-bg);
	border-radius: 16px;
	padding: 22px;
	box-shadow: var(--panel-shadow);
	border: 1px solid var(--card-border);
}

.quote-box h3 {
	margin: 0 0 12px;
	font-family: 'Montserrat', sans-serif;
	font-size: 24px;
	color: var(--text-main);
}

.quote-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.quote-form .full {
	grid-column: 1 / -1;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
	width: 100%;
	border: 1px solid var(--card-border);
	border-radius: 10px;
	padding: 11px 12px;
	font: inherit;
	background: rgba(255, 255, 255, 0.85);
	color: #1a1f26;
	box-sizing: border-box;
}

.quote-form textarea {
	min-height: 118px;
	resize: vertical;
}

.bottom-tag {
	margin-top: 24px;
	text-align: center;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	color: #2a2a2a;
}

@media (max-width: 1024px) {
	/* visual fix for single-column layout */
	.services-visual {
		min-height: 220px;
	}

	.services-visual img {
		object-position: center center;
	}

	.services-grid-cta {
		justify-content: stretch;
	}

	.services-grid-cta .btn {
		width: 100%;
	}
}

@media (max-width: 860px) {
	.serv-cont-topbar {
		padding: 12px;
	}

	.serv-cont-brand h2 {
		font-size: clamp(18px, 4vw, 24px);
	}

	.services-grid,
	.quote-form {
		grid-template-columns: 1fr;
	}

	.services-grid {
		grid-template-columns: 1fr !important;
		grid-template-areas:
			"card-a"
			"visual"
			"card-b"
			"card-c"
			"card-d"
			"card-e"
			"cta";
		gap: 14px;
	}

	.services-grid-cta {
		justify-content: stretch;
	}

	.services-grid-cta .btn {
		width: 100%;
	}
}

@media (max-width: 680px) {
	.serv-cont-topbar {
		flex-wrap: wrap;
		justify-content: center;
		text-align: center;
		gap: 10px;
	}

	.serv-cont-brand {
		justify-content: center;
		gap: 4px;
		width: 100%;
	}

	.hero,
	.quote-box {
		padding: 18px;
	}

	.hero-actions .btn,
	.service-card .btn {
		width: 100%;
	}
}

@media (max-width: 500px) {
	.hero h1 {
		font-size: clamp(22px, 8vw, 30px);
	}

	.service-card,
	.note-box,
	.quote-box {
		padding: 16px;
	}
}
