:root {
	--text: #152033;
	--text-soft: #667085;
	--primary: #1976d2;
	--primary-dark: #0f5faa;
	--primary-soft: #eaf4ff;
	--cyan: #47b8d6;
	--bg: #ffffff;
	--bg-soft: #f6f9fc;
	--bg-blue: #eef6ff;
	--border: #e6ebf0;
	--shadow: 0 24px 70px rgba(29, 66, 112, 0.10);
	--container: 1160px;
}

* { box-sizing: border-box; }

html {
	scroll-behavior: smooth;
	scroll-padding-top: 90px;
}

body {
	margin: 0;
	font-family: "Inter", sans-serif;
	color: var(--text);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

a {
	color: inherit;
	text-decoration: none;
}

.container {
	width: min(calc(100% - 40px), var(--container));
	margin: 0 auto;
}

.site-header {
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.88);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(230, 235, 240, 0.85);
	transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.scrolled {
	background: rgba(255, 255, 255, 0.97);
	box-shadow: 0 8px 30px rgba(24, 57, 96, 0.08);
}

.header-inner {
	min-height: 76px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.brand-mark {
	width: 39px;
	height: 39px;
	display: grid;
	place-items: center;
	border-radius: 11px;
	background: linear-gradient(135deg, var(--primary), var(--cyan));
	color: #ffffff;
	font-family: "Manrope", sans-serif;
	font-size: 21px;
	font-weight: 800;
	box-shadow: 0 10px 24px rgba(25, 118, 210, 0.18);
}

.brand-copy {
	display: flex;
	flex-direction: column;
	line-height: 1;
}

.brand-copy strong {
	font-family: "Manrope", sans-serif;
	font-size: 18px;
	letter-spacing: -0.4px;
}

.brand-copy small {
	margin-top: 5px;
	color: #98a2b3;
	font-size: 8px;
	text-transform: uppercase;
	letter-spacing: 1.25px;
}

.main-nav {
	display: flex;
	align-items: center;
	gap: 5px;
}

.main-nav a {
	padding: 9px 12px;
	border-radius: 9px;
	color: #5f6c7b;
	font-size: 14px;
	font-weight: 600;
}

.main-nav a:hover {
	color: var(--primary);
	background: var(--primary-soft);
}

.main-nav .nav-contact {
	margin-left: 6px;
	padding: 10px 15px;
	background: var(--primary);
	color: #fff;
}

.nav-toggle { display: none; }

.hero {
	position: relative;
	overflow: hidden;
	min-height: 700px;
	display: flex;
	align-items: center;
	padding: 135px 0 80px;
	background: linear-gradient(180deg, #f9fcff 0%, #ffffff 100%);
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(25, 118, 210, 0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(25, 118, 210, 0.025) 1px, transparent 1px);
	background-size: 52px 52px;
	mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent 90%);
}

.hero-shape {
	position: absolute;
	border-radius: 50%;
	filter: blur(4px);
}

.hero-shape-a {
	width: 430px;
	height: 430px;
	right: 5%;
	top: 10%;
	background: radial-gradient(circle, rgba(25, 118, 210, 0.10), transparent 70%);
}

.hero-shape-b {
	width: 300px;
	height: 300px;
	left: -120px;
	bottom: -80px;
	background: radial-gradient(circle, rgba(71, 184, 214, 0.09), transparent 70%);
}

.hero-grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	align-items: center;
	gap: 75px;
}

.hero-kicker,
.section-kicker {
	display: inline-block;
	margin-bottom: 14px;
	color: var(--primary);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

.hero h1 {
	max-width: 720px;
	margin: 0;
	font-family: "Manrope", sans-serif;
	font-size: clamp(44px, 5vw, 65px);
	line-height: 1.04;
	letter-spacing: -3px;
	text-align: center;
}

.hero h1 span {
	display: block;
	margin-top: 7px;
	color: var(--primary);
}

.hero-copy > p {
	max-width: 650px;
	margin: 24px 0 0;
	color: var(--text-soft);
	font-size: 16px;
	line-height: 1.78;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 30px;
}

.btn {
	min-height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 19px;
	border-radius: 11px;
	font-size: 13px;
	font-weight: 700;
}

.btn-primary {
	background: var(--primary);
	color: #fff;
}

.btn-ghost {
	border: 1px solid var(--border);
	background: #fff;
	color: #344054;
}

.hero-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
	margin-top: 42px;
	padding-top: 24px;
	border-top: 1px solid var(--border);
}

.hero-meta div {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.hero-meta strong {
	font-family: "Manrope", sans-serif;
	font-size: 18px;
}

.hero-meta span {
	color: #8a96a6;
	font-size: 10px;
}

.hero-card-wrap {
	position: relative;
	min-height: 470px;
}

.hero-card {
	position: absolute;
	inset: 35px 12px 25px 30px;
	border: 1px solid #e0e9f2;
	border-radius: 26px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 30px 80px rgba(35, 76, 120, 0.14);
	overflow: hidden;
	transform: rotate(1deg);
}

.hero-card-top {
	min-height: 54px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 18px;
	border-bottom: 1px solid var(--border);
	color: #7e8a99;
	font-size: 10px;
	font-weight: 700;
}

.online-dot {
	position: relative;
	padding-left: 13px;
	color: #3e9d72;
}

.online-dot::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 7px;
	height: 7px;
	margin-top: -3.5px;
	border-radius: 50%;
	background: #50c38e;
}

.hero-card-body {
	padding: 18px;
	background: #f8fbfe;
}

.mini-panel {
	padding: 18px;
	border: 1px solid #e6edf4;
	border-radius: 16px;
	background: #fff;
}

.mini-panel-primary {
	min-height: 135px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	background: linear-gradient(135deg, #edf7ff, #f7fcff);
}

.mini-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	margin-top: 10px;
}

.mini-grid .mini-panel {
	min-height: 115px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.mini-label {
	margin-bottom: auto;
	color: var(--primary);
	font-size: 9px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.mini-panel strong {
	font-family: "Manrope", sans-serif;
	font-size: 15px;
}

.mini-panel small {
	margin-top: 4px;
	color: #8b96a5;
	font-size: 9px;
}

.status-row {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 10px;
	margin-top: 10px;
	padding: 14px 15px;
	border: 1px solid #e6edf4;
	border-radius: 14px;
	background: #fff;
	font-size: 9px;
	color: #7c8795;
}

.status-row strong {
	color: #3e9d72;
	font-size: 9px;
}

.status-line {
	height: 4px;
	border-radius: 4px;
	background: #e7edf3;
	overflow: hidden;
}

.status-line span {
	width: 78%;
	height: 100%;
	display: block;
	background: linear-gradient(90deg, var(--primary), var(--cyan));
}

.floating-note {
	position: absolute;
	z-index: 4;
	display: flex;
	flex-direction: column;
	padding: 12px 14px;
	border: 1px solid #e2eaf1;
	border-radius: 13px;
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 16px 36px rgba(35, 76, 120, 0.12);
}

.floating-note strong { font-size: 14px; }
.floating-note span {
	margin-top: 3px;
	color: #8b97a5;
	font-size: 12px;
}
.note-a { left: 0; top: 0; }
.note-b { right: 0; bottom: 0; }

.section {
	padding: 88px 0;
}

.section-title h2,
.approach-copy h2,
.focus-main h2,
.contact-copy h2 {
	margin: 0;
	font-family: "Manrope", sans-serif;
	font-size: clamp(30px, 3.2vw, 42px);
	line-height: 1.15;
	letter-spacing: -1.6px;
}

.about-grid {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 90px;
	align-items: start;
}

.about-content {
	padding-top: 5px;
}

.about-content p {
	margin: 0;
	color: var(--text-soft);
	font-size: 16px;
	line-height: 1.85;
}

.about-content .lead {
	margin-bottom: 18px;
	color: var(--text);
	font-size: 18px;
	line-height: 1.65;
}

.about-list {
	display: grid;
	gap: 12px;
	margin-top: 28px;
}

.about-list div {
	display: grid;
	grid-template-columns: 36px 1fr;
	column-gap: 12px;
	padding: 15px 0;
	border-bottom: 1px solid var(--border);
}

.about-list span {
	width: 30px;
	height: 30px;
	display: grid;
	place-items: center;
	border-radius: 8px;
	background: var(--primary-soft);
	color: var(--primary);
	font-size: 9px;
	font-weight: 800;
}

.about-list strong { font-size: 14px; }

.about-list small {
	grid-column: 2;
	margin-top: 4px;
	color: #8a95a3;
	font-size: 14px;
	line-height: 1.6;
}

.services-section {
	background: var(--bg-soft);
}

/* SERVICES HEADING — centered and smaller */
.section-heading {
	max-width: 760px;
	margin: 0 auto 42px;
	text-align: center;
}

.section-heading .section-title {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.section-heading .section-title h2 {
	max-width: 700px;
	margin: 0 auto;
	font-family: "Manrope", sans-serif;
	font-size: clamp(28px, 3vw, 38px);
	line-height: 1.18;
	letter-spacing: -1.4px;
}

.section-heading > p {
	max-width: 620px;
	margin: 16px auto 0;
	color: var(--text-soft);
	font-size: 12px;
	line-height: 1.75;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 13px;
}

.service-card {
	position: relative;
	min-height: 245px;
	padding: 24px;
	border: 1px solid var(--border);
	border-radius: 18px;
	background: #fff;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
	transform: translateY(-5px);
	border-color: #ccdfef;
	box-shadow: var(--shadow);
}

.service-index {
	position: absolute;
	right: 18px;
	top: 17px;
	color: #c5ced8;
	font-size: 9px;
	font-weight: 800;
}

.service-icon {
	width: 42px;
	height: 42px;
	margin-bottom: 34px;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(25, 118, 210, 0.13), rgba(71, 184, 214, 0.13));
	position: relative;
}

.service-icon::after {
	content: "";
	position: absolute;
	inset: 12px;
	border: 2px solid var(--primary);
	border-radius: 6px;
	opacity: 0.72;
}

.service-card h3 {
	margin: 0 0 10px;
	font-family: "Manrope", sans-serif;
	font-size: 16px;
	letter-spacing: -0.4px;
}

.service-card p {
	margin: 0;
	color: var(--text-soft);
	font-size: 13px;
	line-height: 1.7;
}

.approach-wrap {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 70px;
	padding: 54px;
	border: 1px solid #dfeaf3;
	border-radius: 28px;
	background: linear-gradient(135deg, #f4f9ff 0%, #ffffff 65%);
}

.approach-copy p {
	max-width: 480px;
	margin: 18px 0 0;
	color: var(--text-soft);
	font-size: 13px;
	line-height: 1.8;
}

.steps {
	display: grid;
	gap: 8px;
}

.steps article {
	display: grid;
	grid-template-columns: 38px 1fr;
	gap: 13px;
	padding: 16px 0;
	border-bottom: 1px solid #e5edf4;
}

.steps article:last-child { border-bottom: 0; }

.steps article > span {
	width: 30px;
	height: 30px;
	display: grid;
	place-items: center;
	border-radius: 8px;
	background: #fff;
	border: 1px solid #dce8f1;
	color: var(--primary);
	font-size: 9px;
	font-weight: 800;
}

.steps h3 {
	margin: 0;
	font-family: "Manrope", sans-serif;
	font-size: 15px;
}

.steps p {
	margin: 5px 0 0;
	color: var(--text-soft);
	font-size: 14px;
	line-height: 1.65;
}

.focus-section { background: var(--bg-soft); }

.focus-grid {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: 70px;
	align-items: center;
}

.focus-main p {
	max-width: 560px;
	margin: 20px 0 0;
	color: var(--text-soft);
	font-size: 13px;
	line-height: 1.8;
}

.focus-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

.focus-cards div {
	min-height: 125px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 18px;
	border: 1px solid var(--border);
	border-radius: 16px;
	background: #fff;
}

.focus-cards strong {
	font-family: "Manrope", sans-serif;
	font-size: 14px;
}

.focus-cards span {
	margin-top: 4px;
	color: #8a95a3;
	font-size: 12px;
}

.contact-section { padding-bottom: 0; }

.contact-box {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: 70px;
	padding: 55px;
	border-radius: 28px 28px 0 0;
	background: linear-gradient(135deg, #eaf5ff, #f9fcff 70%);
	border: 1px solid #dce8f3;
	border-bottom: 0;
}

.contact-copy p {
	max-width: 530px;
	margin: 18px 0 26px;
	color: var(--text-soft);
	font-size: 13px;
	line-height: 1.8;
}

.contact-info {
	display: grid;
	gap: 9px;
}

.contact-info div {
	display: flex;
	flex-direction: column;
	padding: 16px 18px;
	border: 1px solid #dfe9f2;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.82);
}

.contact-info span {
	color: var(--primary);
	font-size: 9px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.contact-info strong {
	margin-top: 6px;
	font-family: "Manrope", sans-serif;
	font-size: 15px;
}

.contact-info small {
	margin-top: 3px;
	color: #8a95a3;
	font-size: 10px;
}

.site-footer {
	border-top: 1px solid var(--border);
	background: #fff;
}

.footer-inner {
	min-height: 98px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.footer-inner p {
	color: #9aa4af;
	font-size: 10px;
}

@media (max-width: 1000px) {
	.hero-grid,
	.about-grid,
	.approach-wrap,
	.focus-grid,
	.contact-box {
		grid-template-columns: 1fr;
	}

	.hero-grid { gap: 35px; }

	.hero-card-wrap {
		max-width: 700px;
		width: 100%;
		margin: 0 auto;
	}

	.about-grid,
	.focus-grid {
		gap: 45px;
	}

	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.approach-wrap,
	.contact-box {
		padding: 42px;
	}
}

@media (max-width: 780px) {
	.nav-toggle {
		display: block;
		width: 40px;
		height: 40px;
		padding: 9px;
		border: 0;
		border-radius: 9px;
		background: #f2f6fa;
	}

	.nav-toggle span {
		height: 2px;
		display: block;
		margin: 5px 0;
		background: #314158;
	}

	.main-nav {
		position: fixed;
		top: 76px;
		left: 0;
		right: 0;
		height: calc(100vh - 76px);
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 3px;
		padding: 20px;
		background: rgba(255, 255, 255, 0.98);
		transform: translateY(-120%);
		opacity: 0;
		pointer-events: none;
		transition: transform 0.22s ease, opacity 0.22s ease;
	}

	.main-nav.open {
		transform: translateY(0);
		opacity: 1;
		pointer-events: auto;
	}

	.main-nav a {
		padding: 14px;
		font-size: 15px;
	}

	.main-nav .nav-contact {
		margin: 8px 0 0;
		text-align: center;
	}

	.hero { padding-top: 120px; }
	.section { padding: 72px 0; }
}

@media (max-width: 600px) {
	.container {
		width: min(calc(100% - 28px), var(--container));
	}

	.header-inner { min-height: 70px; }

	.main-nav {
		top: 70px;
		height: calc(100vh - 70px);
	}

	.hero {
		min-height: auto;
		padding: 110px 0 65px;
	}

	.hero h1 {
		font-size: 42px;
		letter-spacing: -2px;
	}

	.hero-copy > p { font-size: 14px; }

	.hero-actions { flex-direction: column; }

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

	.hero-meta { gap: 18px; }

	.hero-meta span { font-size: 9px; }

	.hero-card-wrap { min-height: 375px; }

	.hero-card {
		inset: 28px 0 18px 0;
		transform: none;
	}

	.floating-note { display: none; }

	.section-title h2,
	.approach-copy h2,
	.focus-main h2,
	.contact-copy h2 {
		font-size: 31px;
		letter-spacing: -1.2px;
	}

	.section-heading .section-title h2 {
		font-size: 28px;
		line-height: 1.22;
	}

	.section-heading > p {
		font-size: 11.5px;
	}

	.services-grid,
	.focus-cards {
		grid-template-columns: 1fr;
	}

	.approach-wrap,
	.contact-box {
		padding: 30px 22px;
		border-radius: 20px 20px 0 0;
	}

	.approach-wrap { border-radius: 20px; }

	.footer-inner {
		min-height: 130px;
		flex-direction: column;
		justify-content: center;
	}
}

/* =========================================================
   SOFTGR V3 — CENTERED CONTENT DIRECTION
   ========================================================= */

.section {
	padding-top: 78px;
	padding-bottom: 78px;
}

/* About: one centered column instead of the previous 2-column layout */
.about-grid {
	display: block;
	max-width: 820px;
	margin: 0 auto;
}

.about-content {
	width: 100%;
	padding-top: 0;
	text-align: center;
}

.about-lead {
	max-width: 760px;
	margin: 0 auto 22px;
	font-family: "Manrope", sans-serif;
	font-size: clamp(24px, 2.7vw, 36px);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -1.3px;
	text-align: center;
}

.about-content > p {
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.about-list {
	max-width: 720px;
	margin: 30px auto 0;
	text-align: left;
}

/* All major section introductions follow the same centered hierarchy */
.section-heading,
.approach-copy,
.focus-main,
.contact-copy {
	text-align: center;
}

.section-heading {
	max-width: 760px;
	margin: 0 auto 42px;
}

.section-heading .section-title {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.section-heading .section-title h2,
.approach-copy h2,
.focus-main h2,
.contact-copy h2 {
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
	font-size: clamp(27px, 2.8vw, 36px);
	line-height: 1.2;
	letter-spacing: -1.25px;
}

.section-heading > p,
.approach-copy > p,
.focus-main > p,
.contact-copy > p {
	max-width: 620px;
	margin-left: auto;
	margin-right: auto;
	font-size: 14px;
	line-height: 1.75;
}

.approach-copy .section-kicker,
.focus-main .section-kicker,
.contact-copy .section-kicker {
	display: block;
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
}

/* Approach: heading on top, steps below */
.approach-wrap {
	display: block;
	max-width: 1000px;
	margin: 0 auto;
	padding: 48px 54px;
}

.approach-copy {
	max-width: 760px;
	margin: 0 auto 34px;
}

.steps {
	max-width: 820px;
	margin: 0 auto;
}

/* Focus: heading on top, cards below */
.focus-grid {
	display: block;
	max-width: 1000px;
	margin: 0 auto;
}

.focus-main {
	max-width: 760px;
	margin: 0 auto 34px;
}

.focus-cards {
	max-width: 820px;
	margin: 0 auto;
	grid-template-columns: repeat(4, 1fr);
}

.focus-cards div {
	min-height: 105px;
	text-align: center;
	align-items: center;
}

/* Contact: heading on top, contact information below */
.contact-box {
	display: block;
	max-width: 1000px;
	margin: 0 auto;
	padding: 48px 54px;
}

.contact-copy {
	max-width: 760px;
	margin: 0 auto 32px;
}

.contact-info {
	max-width: 820px;
	margin: 0 auto;
	grid-template-columns: repeat(3, 1fr);
}

.contact-info div {
	text-align: center;
	align-items: center;
}

/* Slightly more compact service cards */
.service-card {
	min-height: 225px;
	padding: 22px;
}

.service-icon {
	margin-bottom: 28px;
}

@media (max-width: 900px) {
	.focus-cards {
		grid-template-columns: repeat(2, 1fr);
	}

	.contact-info {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 600px) {
	.section {
		padding-top: 62px;
		padding-bottom: 62px;
	}

	.about-lead,
	.section-heading .section-title h2,
	.approach-copy h2,
	.focus-main h2,
	.contact-copy h2 {
		font-size: 27px;
		letter-spacing: -1px;
	}

	.approach-wrap,
	.contact-box {
		padding: 34px 20px;
	}

	.focus-cards {
		grid-template-columns: 1fr;
	}

	.about-list {
		text-align: left;
	}
}
