body {
	padding: 0;
	margin: 0;
	cursor:default;
}
html {
	scroll-behavior: smooth;
}

/* Scroll top */
#gotoTop.show {
	opacity: 1;
	visibility: visible;
}

#gotoTop {
	display: inline-block;
	background-color: #0C6983;
	width: 40px;
	height: 40px;
	text-align: center;
	border-radius: 4px;
	position: fixed;
	bottom: 85px;
	right: 30px;
	transition: background-color .3s, opacity .5s, visibility .5s;
	opacity: 0;
	visibility: hidden;
	z-index: 998;
	cursor: pointer;
	border-radius: 20px;
	color: white;
	font-size: 20px;
	line-height: 40px;
}
@media (max-width: 768px){
	#gotoTop {
		display: inline-block;
		background-color: #0C6983;
		width: 40px;
		height: 40px;
		text-align: center;
		border-radius: 4px;
		position: fixed;
		bottom: 105px;
		right: 30px;
		transition: background-color .3s, opacity .5s, visibility .5s;
		opacity: 0;
		visibility: hidden;
		z-index: 998;
		cursor: pointer;
		border-radius: 20px;
		color: white;
		font-size: 20px;
		line-height: 40px;
	}
}

/* ==========================================================================
   HUBSPOT MODAL — #scrollableModal ("Explore the Platform")
   ========================================================================== */
.technology_form {
	padding: 36px 50px;
	gap: 24px;
	background: #FFFFFF;
	box-shadow: -23px 0px 82px rgba(0, 0, 0, 0.07);
	border-radius: 16px;
}

@media (max-width: 1200px) {
	.technology_form {
		padding: 30px 20px;
	}
}

.technology_form .form_header .form_heading {
	font-family: "DM Sans", sans-serif;
	font-style: normal;
	font-weight: 700;
	line-height: 36px;
	color: #0C6983;
	margin-bottom: 16px;
	font-size: calc(24px + (32 - 24) * ((100vw - 320px) / (1920 - 320))) !important;
}

.technology_form .form_header .form_para {
	font-family: "DM Sans", sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320))) !important;
	line-height: 26px;
	color: rgba(0, 0, 0, 0.6);
	margin-bottom: 24px;
}

.technology_form .form_footer p {
	font-family: "DM Sans", sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 150%;
	color: #B4B4B4;
}

.copyright {
	text-align: center;
}

/* ==========================================================================
   SHARED PAGE BACKGROUND
   One gradient behind every section from the hero to the CTA. It is pinned to
   the viewport (background-attachment: fixed) so it stays constant while the
   page scrolls instead of restarting at each section. The wrapper ends before
   the footer, which keeps its own colour.
   ========================================================================== */
.mit-page-bg {
	position: relative;
	background-color: #071823;
	background-image: radial-gradient(75% 70% at 92% 6%, rgba(34, 211, 238, 0.15) 0%, rgba(23, 99, 124, 0.13) 38%, rgba(7, 24, 35, 0) 72%);
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: 100% 100%;
	background-position: center top;
}

/* Mobile browsers handle fixed attachment poorly (repaint jank, iOS ignores
   it): let the gradient scroll with the page and stretch it over the wrapper. */
@media (max-width: 991px) {
	.mit-page-bg {
		background-attachment: scroll;
		background-size: 100% 900px;
	}
}

/* ==========================================================================
   SECTION 1 — MODERNIZEIT HERO
   ========================================================================== */
.mit-hero {
	position: relative;
	overflow: hidden;
	padding: 140px 0 90px;
	background: transparent;
	font-family: "DM Sans", sans-serif;
}

.mit-hero-copy {
	position: relative;
	z-index: 1;
}

/* Extra breathing room from the visual — added ON TOP of Bootstrap's gutter
   padding, never replacing it: the .row negative margins depend on the column
   keeping that padding, or the content overflows the container. */
@media (min-width: 992px) {
	.mit-hero-copy {
		padding-right: 54px;
	}
}

/* ── Badge pill ───────────────────────────────── */
.mit-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(145deg, rgba(148, 163, 184, 0.14) 0%, rgba(148, 163, 184, 0.04) 100%);
	-webkit-backdrop-filter: blur(18px) saturate(140%);
	        backdrop-filter: blur(18px) saturate(140%);
	border: none;
	border-radius: 40px;
	padding: 9px 20px;
	margin-bottom: 28px;
	font-size: 15px;
	font-weight: 500;
	color: #dbe3ec;
	position: relative;
}

/* Diagonal gradient glass border */
.mit-hero-badge::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 1px;
	background: linear-gradient(145deg,
		rgba(255, 255, 255, 0.55) 0%,
		rgba(255, 255, 255, 0.04) 45%,
		rgba(255, 255, 255, 0.04) 55%,
		rgba(255, 255, 255, 0.55) 100%);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	        mask-composite: exclude;
	pointer-events: none;
}


.mit-badge-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #38bdf8;
	flex-shrink: 0;
	animation: mit-blink 1.5s infinite;
	box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.25);
}

@keyframes mit-blink {
	0%, 100% {
		opacity: 1;
		box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.25);
	}
	50% {
		opacity: 0.6;
		box-shadow: 0 0 0 6px rgba(56, 189, 248, 0.08);
	}
}


.mit-badge-text {
	display: inline-block;
	line-height: 1.2;
}

/* ── Headline ─────────────────────────────────── */
.mit-hero-headline {
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 56px;
	line-height: 115%;
	letter-spacing: -1.6px;
	color: #f0f9ff;
	margin-bottom: 26px;
}

.mit-hero-accent {
	font-weight: 700;
	color: #22d3ee;
}

/* ── Description ──────────────────────────────── */
.mit-hero-description {
	font-size: 17px;
	font-weight: 400;
	line-height: 175%;
	color: #A4B6C4;
	margin-bottom: 28px;
	max-width: 560px;
}

.mit-hero-description strong {
	color: #e2e8f0;
	font-weight: 700;
}

/* ── Key points ───────────────────────────────── */
.mit-hero-points {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px 30px;
	list-style: none;
	padding: 0;
	margin: 0 0 34px 0;
}

.mit-hero-point {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	font-weight: 400;
	color: #cbd5e1;
}

.mit-point-icon {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	border: 1.5px solid rgba(34, 211, 238, 0.55);
	background: rgba(34, 211, 238, 0.10);
	color: #22d3ee;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	line-height: 1;
}

.mit-point-icon svg {
	width: 12px;
	height: 12px;
	display: block;
}

/* ── CTA buttons ──────────────────────────────── */
.mit-hero-buttons {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 0;
}

.mit-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
	color: #ffffff;
	border: none;
	border-radius: 50px;
	padding: 15px 30px;
	font-family: "DM Sans", sans-serif;
	font-weight: 700;
	font-size: 15px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(14, 165, 233, 0.35);
}

.mit-btn-primary:hover,
.mit-btn-primary:focus {
	background: linear-gradient(135deg, #22b8e8 0%, #16c5d6 100%);
	color: #ffffff;
	box-shadow: 0 8px 28px rgba(14, 165, 233, 0.55);
	transform: translateY(-2px);
}

.mit-btn-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.04);
	color: #e2e8f0;
	border: 1.5px solid rgba(148, 163, 184, 0.35);
	border-radius: 50px;
	padding: 15px 30px;
	font-family: "DM Sans", sans-serif;
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.mit-btn-secondary:hover,
.mit-btn-secondary:focus {
	background-color: rgba(255, 255, 255, 0.09);
	border-color: rgba(255, 255, 255, 0.6);
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* ── Product visual ───────────────────────────── */
.mit-hero-visual {
	position: relative;
	z-index: 1;
}

.mit-hero-image-wrap {
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 24px 60px rgba(2, 12, 18, 0.45);
	line-height: 0;
}

.mit-hero-image {
	width: 100%;
	height: auto;
	display: block;
}

/* ==========================================================================
   SECTION 2 — BUILT FOR THE HARD PART
   ========================================================================== */
.mit-callout {
	position: relative;
	overflow: hidden;
    padding: 10px 0px 2px;
	background: transparent;
	font-family: "DM Sans", sans-serif;
}

.mit-callout-panel {
	position: relative;
	z-index: 1;
	border-left: 3px solid #22d3ee;
	border-radius: 0 8px 8px 0;
	padding: 26px 30px 28px;
}

.mit-callout-eyebrow {
	display: block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #22d3ee;
	margin-bottom: 14px;
}

.mit-callout-text {
	font-size: 17px;
	font-weight: 400;
	line-height: 180%;
	color: #cbd5e1;
	margin-bottom: 0;
	max-width: 840px;
}

.mit-callout-text strong {
	color: #f0f9ff;
	font-weight: 700;
}

/* ==========================================================================
   SECTION 3 — FROM SOURCE CODE TO ACTION
   ========================================================================== */
.mit-flow {
	position: relative;
	overflow: hidden;
	padding: 60px 0 80px;
	background: transparent;
	font-family: "DM Sans", sans-serif;
}

.mit-flow-header {
	position: relative;
	z-index: 1;
	margin-bottom: 44px;
}

.mit-flow-eyebrow {
	display: block;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: #22d3ee;
	margin-bottom: 18px;
}

.mit-flow-heading {
	font-family: "DM Sans", sans-serif;
	font-weight: 700;
	font-size: 42px;
	line-height: 120%;
	letter-spacing: -1.2px;
	color: #f0f9ff;
	margin-bottom: 16px;
}

.mit-flow-accent {
	color: #22d3ee;
}

.mit-flow-intro {
	font-size: 17px;
	font-weight: 400;
	line-height: 165%;
	color: #A4B6C4;
	margin-bottom: 0;
	max-width: 640px;
}

/* ── Step cards ───────────────────────────────── */
.mit-flow-steps {
	position: relative;
	z-index: 1;
}

.mit-flow-card {
	height: 100%;
	padding: 24px 24px 28px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.10);
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 55%, rgba(255, 255, 255, 0.01) 100%);
	-webkit-backdrop-filter: blur(14px) saturate(140%);
	        backdrop-filter: blur(14px) saturate(140%);
	box-shadow: 0 8px 28px rgba(2, 12, 18, 0.30), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.mit-flow-num {
	display: block;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.5px;
	color: #22d3ee;
	margin-bottom: 12px;
}

.mit-flow-title {
	font-family: "DM Sans", sans-serif;
	font-size: 19px;
	font-weight: 700;
	line-height: 130%;
	color: #f0f9ff;
	margin-bottom: 12px;
}

.mit-flow-text {
	font-size: 14.5px;
	font-weight: 400;
	line-height: 160%;
	color: #A4B6C4;
	margin-bottom: 0;
}

/* Connector between steps — a col-auto column, hidden below lg */
.mit-flow-arrow {
	justify-content: center;
	color: #64748b;
	font-size: 15px;
}

/* ==========================================================================
   SECTION 4 — CORE CAPABILITIES
   ========================================================================== */
.mit-caps {
	position: relative;
	overflow: hidden;
	padding: 60px 0 80px;
	background: transparent;
	font-family: "DM Sans", sans-serif;
}

.mit-caps-header {
	position: relative;
	z-index: 1;
	margin-bottom: 44px;
}

.mit-caps-eyebrow {
	display: block;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: #22d3ee;
	margin-bottom: 18px;
}

.mit-caps-heading {
	font-family: "DM Sans", sans-serif;
	font-weight: 700;
	font-size: 42px;
	line-height: 120%;
	letter-spacing: -1.2px;
	color: #f0f9ff;
	margin-bottom: 0;
}

.mit-caps-accent {
	color: #22d3ee;
}

/* ── Capability cards ─────────────────────────── */
.mit-caps-list {
	position: relative;
	z-index: 1;
}

.mit-cap-card {
	height: 100%;
	padding: 26px 24px 28px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.10);
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 55%, rgba(255, 255, 255, 0.01) 100%);
	-webkit-backdrop-filter: blur(14px) saturate(140%);
	        backdrop-filter: blur(14px) saturate(140%);
	box-shadow: 0 8px 28px rgba(2, 12, 18, 0.30), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.mit-cap-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: rgba(34, 211, 238, 0.12);
	border: 1px solid rgba(34, 211, 238, 0.18);
	color: #22d3ee;
	font-size: 17px;
	margin-bottom: 24px;
}

.mit-cap-title {
	font-family: "DM Sans", sans-serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 130%;
	color: #f0f9ff;
	margin-bottom: 12px;
}

.mit-cap-text {
	font-size: 14.5px;
	font-weight: 400;
	line-height: 165%;
	color: #A4B6C4;
	margin-bottom: 0;
}

/* ==========================================================================
   SECTION 5 — WHY IT MATTERS
   ========================================================================== */
.mit-why {
	position: relative;
	overflow: hidden;
	padding: 60px 0 80px;
	background: transparent;
	font-family: "DM Sans", sans-serif;
}

.mit-why-header {
	position: relative;
	z-index: 1;
	margin-bottom: 40px;
}

.mit-why-eyebrow {
	display: block;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: #22d3ee;
	margin-bottom: 18px;
}

.mit-why-heading {
	font-family: "DM Sans", sans-serif;
	font-weight: 700;
	font-size: 42px;
	line-height: 120%;
	letter-spacing: -1.2px;
	color: #f0f9ff;
	margin-bottom: 0;
}

.mit-why-accent {
	color: #22d3ee;
}

/* ── Benefit cards ────────────────────────────── */
.mit-why-list {
	position: relative;
	z-index: 1;
}

.mit-why-card {
	height: 100%;
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 22px 24px 24px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.10);
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 55%, rgba(255, 255, 255, 0.01) 100%);
	-webkit-backdrop-filter: blur(14px) saturate(140%);
	        backdrop-filter: blur(14px) saturate(140%);
	box-shadow: 0 8px 28px rgba(2, 12, 18, 0.30), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Bare glyph, no chip — sits on the title's baseline */
.mit-why-icon {
	flex-shrink: 0;
	width: 18px;
	color: #22d3ee;
	font-size: 16px;
	line-height: 1;
	margin-top: 3px;
	text-align: center;
}

.mit-why-body {
	min-width: 0;
}

.mit-why-title {
	font-family: "DM Sans", sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 135%;
	color: #f0f9ff;
	margin-bottom: 8px;
}

.mit-why-text {
	font-size: 14.5px;
	font-weight: 400;
	line-height: 160%;
	color: #A4B6C4;
	margin-bottom: 0;
}

/* ==========================================================================
   SECTION 6 — CLOSING CTA
   ========================================================================== */
.mit-cta {
	position: relative;
	overflow: hidden;
	padding: 20px 0 90px;
	background: transparent;
	font-family: "DM Sans", sans-serif;
}

.mit-cta-card {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 62px 40px 66px;
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, 0.10);
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 55%, rgba(255, 255, 255, 0.01) 100%);
	-webkit-backdrop-filter: blur(14px) saturate(140%);
	        backdrop-filter: blur(14px) saturate(140%);
	box-shadow: 0 8px 28px rgba(2, 12, 18, 0.30), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.mit-cta-heading {
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 44px;
	line-height: 125%;
	letter-spacing: -1.2px;
	color: #f0f9ff;
	margin-bottom: 16px;
}

.mit-cta-accent {
	font-weight: 700;
	color: #22d3ee;
}

.mit-cta-text {
	font-size: 16px;
	font-weight: 400;
	line-height: 165%;
	color: #A4B6C4;
	margin: 0 auto 30px;
	max-width: 620px;
}

.mit-cta-buttons {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 16px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1399px) {
	.mit-hero-headline {
		font-size: 50px;
	}
}

@media (max-width: 1199px) {
	.mit-hero-headline {
		font-size: 42px;
		letter-spacing: -1.2px;
	}

	.mit-hero-description {
		max-width: 100%;
	}

	.mit-hero-points {
		gap: 14px 22px;
	}

	.mit-callout-text {
		max-width: 100%;
	}

	.mit-flow-heading {
		font-size: 36px;
	}

	.mit-flow-arrow {
		font-size: 13px;
	}

	.mit-flow-card {
		padding: 20px 18px 24px;
	}

	.mit-caps-heading {
		font-size: 36px;
	}

	.mit-cap-card {
		padding: 22px 20px 24px;
	}

	.mit-why-heading {
		font-size: 36px;
	}

	.mit-why-card {
		padding: 20px 18px 22px;
		gap: 12px;
	}

	.mit-cta-heading {
		font-size: 38px;
	}
}

@media (max-width: 991px) {
	.mit-hero {
		padding: 120px 0 70px;
	}

	.mit-hero-headline {
		font-size: 40px;
		letter-spacing: -1px;
	}

	.mit-callout {
		padding: 20px 0 50px;
	}

	.mit-flow {
		padding: 45px 0 65px;
	}

	.mit-flow-heading {
		font-size: 32px;
		letter-spacing: -0.8px;
	}

	.mit-flow-header {
		margin-bottom: 34px;
	}

	.mit-caps {
		padding: 45px 0 65px;
	}

	.mit-caps-heading {
		font-size: 32px;
		letter-spacing: -0.8px;
	}

	.mit-caps-header {
		margin-bottom: 34px;
	}

	.mit-why {
		padding: 45px 0 65px;
	}

	.mit-why-heading {
		font-size: 32px;
		letter-spacing: -0.8px;
	}

	.mit-why-header {
		margin-bottom: 32px;
	}

	.mit-cta {
		padding: 10px 0 70px;
	}

	.mit-cta-card {
		padding: 48px 30px 52px;
	}

	.mit-cta-heading {
		font-size: 32px;
		letter-spacing: -0.8px;
	}
}

@media (max-width: 767px) {
	.mit-hero {
		padding: 105px 0 55px;
	}

	.mit-hero-badge {
		font-size: 13px;
		padding: 8px 16px;
		margin-bottom: 22px;
	}

	.mit-hero-headline {
		font-size: 32px;
		letter-spacing: -0.6px;
		margin-bottom: 20px;
	}

	.mit-hero-description {
		font-size: 16px;
		margin-bottom: 24px;
	}

	.mit-hero-points {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
		margin-bottom: 28px;
	}

	.mit-hero-buttons {
		gap: 12px;
	}

	.mit-btn-primary,
	.mit-btn-secondary {
		padding: 13px 24px;
		font-size: 14px;
	}

	.mit-callout {
		padding: 10px 0 40px;
	}

	.mit-callout-panel {
		padding: 22px 20px 24px;
	}

	.mit-callout-eyebrow {
		font-size: 11px;
		letter-spacing: 1.6px;
	}

	.mit-callout-text {
		font-size: 16px;
		line-height: 175%;
	}

	.mit-flow {
		padding: 35px 0 50px;
	}

	.mit-flow-eyebrow {
		font-size: 12px;
		letter-spacing: 2px;
		margin-bottom: 14px;
	}

	.mit-flow-heading {
		font-size: 28px;
		letter-spacing: -0.5px;
	}

	.mit-flow-intro {
		font-size: 16px;
	}

	.mit-caps {
		padding: 35px 0 50px;
	}

	.mit-caps-eyebrow {
		font-size: 12px;
		letter-spacing: 2px;
		margin-bottom: 14px;
	}

	.mit-caps-heading {
		font-size: 28px;
		letter-spacing: -0.5px;
	}

	.mit-cap-icon {
		margin-bottom: 18px;
	}

	.mit-why {
		padding: 35px 0 50px;
	}

	.mit-why-eyebrow {
		font-size: 12px;
		letter-spacing: 2px;
		margin-bottom: 14px;
	}

	.mit-why-heading {
		font-size: 28px;
		letter-spacing: -0.5px;
	}

	.mit-cta {
		padding: 0 0 12px;
	}

	.mit-cta-card {
		padding: 36px 20px 40px;
	}

	.mit-cta-heading {
		font-size: 26px;
		letter-spacing: -0.5px;
	}

	.mit-cta-text {
		font-size: 15px;
		margin-bottom: 24px;
	}

	.mit-cta-buttons {
		gap: 12px;
	}
}

@media (max-width: 575px) {
	.mit-hero-headline {
		font-size: 28px;
	}

	.mit-hero-buttons {
		flex-direction: column;
		align-items: stretch;
	}

	.mit-btn-primary,
	.mit-btn-secondary {
		width: 100%;
		justify-content: center;
	}
}
