:root {
	--cl-primary: #0b4f8a;
	--cl-primary-dark: #083a66;
	--cl-accent: #1a8cff;
	--cl-dark: #102033;
	--cl-muted: #5a6778;
	--cl-light: #f4f8fc;
	--cl-white: #ffffff;
	--cl-border: rgba(16, 32, 51, 0.08);
	--cl-radius: 16px;
	--cl-shadow: 0 18px 50px rgba(16, 32, 51, 0.08);
}

.cl-home {
	color: var(--cl-dark);
}

.cl-container {
	width: min(1180px, calc(100% - 3rem));
	margin: 0 auto;
}

.cl-section {
	padding: 5rem 0;
}

.cl-section__intro {
	max-width: 760px;
	margin: 0 auto 2.5rem;
	text-align: center;
}

.cl-section__eyebrow {
	margin: 0 0 0.75rem;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--cl-accent);
}

.cl-section__eyebrow--light {
	color: rgba(255, 255, 255, 0.82);
}

.cl-section__title {
	margin: 0;
	font-size: clamp(1.75rem, 3vw, 2.35rem);
	line-height: 1.2;
}

.cl-section__lead {
	margin: 1rem 0 0;
	font-size: 1.0625rem;
	line-height: 1.7;
	color: var(--cl-muted);
}

.cl-hero {
	position: relative;
	overflow: hidden;
	padding: 6rem 0 5.5rem;
	background:
		radial-gradient(circle at top right, rgba(26, 140, 255, 0.16), transparent 40%),
		linear-gradient(135deg, #f7fbff 0%, #edf4fb 55%, #f8fbff 100%);
}

.cl-hero::after {
	content: "";
	position: absolute;
	inset: auto -8% -35% auto;
	width: 360px;
	height: 360px;
	border-radius: 50%;
	background: rgba(11, 79, 138, 0.06);
	pointer-events: none;
}

.cl-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
	gap: 2rem;
	align-items: center;
}

.cl-hero__eyebrow {
	margin: 0 0 1rem;
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--cl-primary);
}

.cl-hero__title {
	margin: 0 0 1.25rem;
	font-size: clamp(2.1rem, 4.8vw, 3.5rem);
	line-height: 1.08;
}

.cl-hero__subtitle {
	margin: 0 0 2rem;
	max-width: 42rem;
	font-size: 1.125rem;
	line-height: 1.7;
	color: var(--cl-muted);
}

.cl-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.cl-hero__panel {
	padding: 2rem;
	border: 1px solid var(--cl-border);
	border-radius: calc(var(--cl-radius) + 4px);
	background: rgba(255, 255, 255, 0.88);
	box-shadow: var(--cl-shadow);
	backdrop-filter: blur(8px);
}

.cl-hero__highlights {
	display: grid;
	gap: 0.875rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.cl-hero__highlights li {
	position: relative;
	padding-left: 1.25rem;
	font-weight: 600;
	line-height: 1.5;
}

.cl-hero__highlights li::before {
	content: "";
	position: absolute;
	top: 0.55rem;
	left: 0;
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: var(--cl-accent);
}

.cl-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3rem;
	padding: 0.75rem 1.5rem;
	border-radius: 999px;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.cl-btn:hover,
.cl-btn:focus {
	transform: translateY(-1px);
	text-decoration: none;
}

.cl-btn--primary {
	background: var(--cl-primary);
	color: var(--cl-white);
	box-shadow: 0 12px 30px rgba(11, 79, 138, 0.22);
}

.cl-btn--primary:hover,
.cl-btn--primary:focus {
	background: var(--cl-primary-dark);
	color: var(--cl-white);
}

.cl-btn--secondary {
	background: var(--cl-white);
	color: var(--cl-primary);
	border: 1px solid rgba(11, 79, 138, 0.16);
}

.cl-btn--secondary:hover,
.cl-btn--secondary:focus {
	background: rgba(255, 255, 255, 0.92);
	color: var(--cl-primary);
}

.cl-btn--ghost {
	background: transparent;
	color: var(--cl-white);
	border: 1px solid rgba(255, 255, 255, 0.28);
}

.cl-btn--ghost:hover,
.cl-btn--ghost:focus {
	background: rgba(255, 255, 255, 0.08);
	color: var(--cl-white);
}

.cl-btn--large {
	min-height: 3.25rem;
	padding-inline: 2rem;
}

.cl-capabilities {
	background: var(--cl-white);
}

.cl-capabilities__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}

.cl-capabilities__grid .cl-card--capability:last-child {
	grid-column: span 1;
}

.cl-industries {
	background: var(--cl-light);
}

.cl-industries__grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
}

.cl-industry-pill {
	padding: 0.9rem 1.35rem;
	border: 1px solid rgba(11, 79, 138, 0.12);
	border-radius: 999px;
	background: var(--cl-white);
	font-weight: 600;
	box-shadow: var(--cl-shadow);
}

.cl-products {
	background: var(--cl-white);
}

.cl-products__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}

.cl-why {
	background: linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
}

.cl-why__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.5rem;
}

.cl-card {
	padding: 2rem;
	border: 1px solid var(--cl-border);
	border-radius: var(--cl-radius);
	background: var(--cl-light);
	box-shadow: var(--cl-shadow);
}

.cl-card__title {
	margin: 0 0 0.75rem;
	font-size: 1.2rem;
}

.cl-card__text {
	margin: 0;
	line-height: 1.7;
	color: var(--cl-muted);
}

.cl-card__list {
	margin: 0 0 1.25rem;
	padding-left: 1.1rem;
	color: var(--cl-muted);
	line-height: 1.7;
}

.cl-card__link {
	font-weight: 700;
	color: var(--cl-primary);
	text-decoration: none;
}

.cl-card__link:hover,
.cl-card__link:focus {
	color: var(--cl-accent);
	text-decoration: underline;
}

.cl-cta {
	padding: 4.5rem 0 5.5rem;
}

.cl-cta__inner {
	padding: 3.5rem 2rem;
	border-radius: calc(var(--cl-radius) + 4px);
	text-align: center;
	background: linear-gradient(135deg, rgba(11, 79, 138, 0.98), rgba(8, 58, 102, 0.96));
	color: var(--cl-white);
	box-shadow: 0 24px 60px rgba(11, 79, 138, 0.24);
}

.cl-cta__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.cl-cta__text {
	max-width: 720px;
	margin: 0 auto 1.75rem;
	font-size: 1.0625rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.88);
}

.cl-cta__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
}

.cl-cta .cl-btn--primary {
	background: var(--cl-white);
	color: var(--cl-primary);
	box-shadow: none;
}

.cl-cta .cl-btn--primary:hover,
.cl-cta .cl-btn--primary:focus {
	background: #edf4fb;
	color: var(--cl-primary);
}

@media (max-width: 1024px) {
	.cl-capabilities__grid,
	.cl-products__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cl-why__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 921px) {
	.cl-hero__grid {
		grid-template-columns: 1fr;
	}

	.cl-section {
		padding: 4rem 0;
	}

	.cl-hero {
		padding-top: 4.5rem;
	}
}

@media (max-width: 640px) {
	.cl-capabilities__grid,
	.cl-products__grid,
	.cl-why__grid {
		grid-template-columns: 1fr;
	}

	.cl-container {
		width: min(1180px, calc(100% - 1.5rem));
	}

	.cl-hero__actions,
	.cl-cta__actions {
		flex-direction: column;
	}

	.cl-btn {
		width: 100%;
	}
}
