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.
   ========================================================================== */
.atp-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) {
	.atp-page-bg {
		background-attachment: scroll;
		background-size: 100% 900px;
	}
}

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

.atp-hero-inner {
	position: relative;
	z-index: 1;
}

/* ── Badge pill ───────────────────────────────── */
.atp-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: 30px;
	font-size: 15px;
	font-weight: 500;
	color: #dbe3ec;
	position: relative;
}

/* Diagonal gradient glass border */
.atp-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;
}

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

@keyframes atp-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);
	}
}

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

/* ── Headline ─────────────────────────────────── */
.atp-hero-headline {
	font-family: "DM Sans", sans-serif;
	font-weight: 700;
	font-size: 62px;
	line-height: 118%;
	letter-spacing: -1.8px;
	color: #f0f9ff;
	margin-bottom: 24px;
	max-width: 950px;
}

.atp-hero-accent {
	color: #22d3ee;
}

/* ── Description ──────────────────────────────── */
.atp-hero-description {
	font-size: 18px;
	font-weight: 400;
	line-height: 170%;
	color: #A4B6C4;
	margin-bottom: 26px;
	max-width: 800px;
}

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

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

.atp-point-icon {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	border: 1.5px solid rgba(148, 163, 184, 0.55);
	background: rgba(255, 255, 255, 0.04);
	color: #e2e8f0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	line-height: 1;
}

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

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

.atp-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	/* same fill as "Schedule a Demo" on index.html (.hero-btn-primary-new) */
	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);
}

.atp-btn-primary:hover,
.atp-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);
}

.atp-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;
}

.atp-btn-secondary:hover,
.atp-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);
}

/* ── Trusted and certified strip ──────────────── */
.atp-trust-badges {
	margin-top: 60px;
}

/* Centered label row: line — text — line */
.atp-trust-label {
	display: flex;
	align-items: center;
	gap: 18px;
	font-size: 10.5px;
	font-weight: 500;
	letter-spacing: 2.5px;
	color: #94a3b8;
	text-transform: uppercase;
	margin-bottom: 18px;
	white-space: nowrap;
}

.atp-trust-label::before,
.atp-trust-label::after {
	content: '';
	flex: 1;
	height: 1px;
	background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.15), transparent);
}

/* Glass strip wrapping the four cells */
.atp-trust-container {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
	-webkit-backdrop-filter: blur(18px) saturate(150%);
	        backdrop-filter: blur(18px) saturate(150%);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35),
	            inset 0 1px 0 rgba(255, 255, 255, 0.10),
	            inset 0 0 40px rgba(255, 255, 255, 0.04);
	position: relative;
	overflow: hidden;
}

.atp-trust-card {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 22px 32px;
	flex: 1;
	position: relative;
}

/* Vertical divider — full height, edge to edge */
.atp-trust-card::after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: 1px;
	background: rgba(255, 255, 255, 0.14);
}

.atp-trust-card:last-child::after {
	display: none;
}

.atp-trust-link {
	display: flex;
	align-items: center;
	gap: 14px;
	text-decoration: none;
	color: inherit;
}

.atp-trust-logo {
	height: 38px;
	width: auto;
	flex-shrink: 0;
	object-fit: contain;
}

.atp-trust-text {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.atp-trust-title {
	font-size: 15px;
	font-weight: 700;
	color: #f1f5f9;
	line-height: 1.25;
	white-space: nowrap;
}

.atp-trust-sub {
	font-size: 13px;
	font-weight: 400;
	color: #94a3b8;
	line-height: 1.3;
	white-space: nowrap;
}

/* ==========================================================================
   SECTION 2 — START WITH DISCOVERY
   ========================================================================== */
.atp-discovery {
	position: relative;
	overflow: hidden;
	padding: 90px 0;
	background: transparent;
	font-family: "DM Sans", sans-serif;
}

.atp-discovery-copy {
	position: relative;
	z-index: 1;
}

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

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

.atp-discovery-heading {
	font-family: "DM Sans", sans-serif;
	font-weight: 700;
	font-size: 44px;
	line-height: 118%;
	letter-spacing: -1.2px;
	color: #f0f9ff;
	margin-bottom: 20px;
	max-width: 520px;
}

.atp-discovery-subheading {
	font-size: 24px;
	font-weight: 700;
	line-height: 140%;
	color: #f0f9ff;
	margin-bottom: 22px;
}

.atp-discovery-accent {
	color: #22d3ee;
}

.atp-discovery-text {
	font-size: 17px;
	font-weight: 400;
	line-height: 175%;
	color: #A4B6C4;
	margin-bottom: 22px;
	max-width: 560px;
}

.atp-discovery-callout {
	font-size: 17px;
	font-weight: 700;
	line-height: 160%;
	color: #e2e8f0;
	margin-bottom: 26px;
}

.atp-discovery-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	font-weight: 700;
	color: #22d3ee;
	text-decoration: none;
	transition: color 0.25s ease, gap 0.25s ease;
}

.atp-discovery-link:hover,
.atp-discovery-link:focus {
	color: #67e8f9;
	gap: 14px;
}

/* Product visual */
.atp-discovery-visual {
	position: relative;
	z-index: 1;
}

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

.atp-discovery-image {
	width: 100%;
	height: auto;
	display: block;
}

/* ==========================================================================
   SECTION 3 — YOUR PATH TO AGENTIC READINESS
   ========================================================================== */
.atp-path {
	position: relative;
	overflow: hidden;
	padding: 30px 0;
	background: transparent;
	font-family: "DM Sans", sans-serif;
}

.atp-path-header {
	position: relative;
	z-index: 1;
	margin-bottom: 48px;
}

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

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

.atp-path-accent {
	color: #22d3ee;
}

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

/* ── Step row ─────────────────────────────────── */
.atp-path-steps {
	position: relative;
	z-index: 1;
}

.atp-path-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);
}

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

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

.atp-path-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 */
.atp-path-arrow {
	justify-content: center;
	color: #64748b;
	font-size: 15px;
}

/* ==========================================================================
   SECTION 4 — THE AGENTIC READINESS ASSESSMENT
   ========================================================================== */
.atp-assessment {
	position: relative;
	overflow: hidden;
	padding: 60px 0;
	background: transparent;
	font-family: "DM Sans", sans-serif;
}

.atp-assessment-copy {
	position: relative;
	z-index: 1;
}

@media (min-width: 992px) {
	.atp-assessment-copy {
		padding-right: 54px;
	}
}

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

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

.atp-assessment-accent {
	color: #22d3ee;
}

.atp-assessment-text {
	font-size: 17px;
	font-weight: 400;
	line-height: 175%;
	color: #A4B6C4;
	margin-bottom: 32px;
}

/* ── Deliverables card ────────────────────────── */
.atp-assessment-card {
	position: relative;
	z-index: 1;
	padding: 36px 34px;
	border-radius: 14px;
	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);
}

.atp-assessment-card-title {
	display: block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #22d3ee;
	margin-bottom: 26px;
}

.atp-assessment-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.atp-assessment-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	font-size: 15.5px;
	font-weight: 400;
	line-height: 160%;
	color: #cbd5e1;
}

.atp-assessment-item + .atp-assessment-item {
	margin-top: 20px;
}

.atp-assessment-check {
	flex-shrink: 0;
	color: #22d3ee;
	font-size: 14px;
	line-height: inherit;
	margin-top: 4px;
}

/* ==========================================================================
   SECTION 5 — AGENTS FOR EVERY AREA OF YOUR COMPANY
   ========================================================================== */
.atp-domains {
	position: relative;
	overflow: hidden;
	padding: 60px 0;
	background: transparent;
	font-family: "DM Sans", sans-serif;
	scroll-margin-top: 100px;
}

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

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

.atp-domains-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;
}

.atp-domains-accent {
	color: #22d3ee;
}

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

/* ── Domain pills ─────────────────────────────── */
.atp-domains-list {
	position: relative;
	z-index: 1;
}

.atp-domain-pill {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 11px 22px;
	border-radius: 50px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
	-webkit-backdrop-filter: blur(14px) saturate(140%);
	        backdrop-filter: blur(14px) saturate(140%);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.2;
	color: #e2e8f0;
	white-space: nowrap;
}

.atp-domain-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background-color: #22d3ee;
	flex-shrink: 0;
}

/* Muted trailing chip */
.atp-domain-pill-more {
	border-color: rgba(255, 255, 255, 0.07);
	background: rgba(255, 255, 255, 0.02);
	color: #7d8fa0;
}

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

.atp-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);
}

.atp-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;
}

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

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

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

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

@media (max-width: 1199px) {
	.atp-hero-headline {
		font-size: 48px;
		letter-spacing: -1.4px;
	}

	.atp-discovery-heading {
		font-size: 38px;
	}

	.atp-discovery-subheading {
		font-size: 21px;
	}

	.atp-path-heading {
		font-size: 36px;
	}

	.atp-assessment-heading {
		font-size: 36px;
	}

	.atp-assessment-card {
		padding: 30px 26px;
	}

	.atp-domains-heading {
		font-size: 36px;
	}

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

	.atp-path-arrow {
		font-size: 13px;
	}

	.atp-path-card {
		padding: 20px 18px 24px;
	}

	.atp-trust-card {
		padding: 20px 22px;
		gap: 12px;
	}

	.atp-trust-logo {
		height: 32px;
	}

	.atp-trust-title {
		font-size: 14px;
	}

	.atp-trust-sub {
		font-size: 12px;
	}
}

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

	.atp-hero-headline {
		font-size: 42px;
		letter-spacing: -1px;
	}

	.atp-hero-break {
		display: none;
	}

	.atp-hero-description {
		font-size: 17px;
	}

	.atp-discovery {
		padding: 70px 0;
	}

	.atp-discovery-copy {
		margin-bottom: 40px;
	}

	.atp-discovery-heading,
	.atp-discovery-text {
		max-width: 100%;
	}

	.atp-path {
		padding: 70px 0;
	}

	.atp-path-heading {
		font-size: 32px;
		letter-spacing: -0.8px;
	}

	.atp-path-header {
		margin-bottom: 36px;
	}

	.atp-assessment {
		padding: 70px 0;
	}

	.atp-assessment-heading {
		font-size: 32px;
		letter-spacing: -0.8px;
	}

	.atp-domains {
		padding: 70px 0;
	}

	.atp-domains-heading {
		font-size: 32px;
		letter-spacing: -0.8px;
	}

	.atp-domains-header {
		margin-bottom: 32px;
	}

	.atp-cta {
		padding: 30px 0 70px;
	}

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

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

	.atp-trust-container {
		flex-wrap: wrap;
	}

	.atp-trust-card {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.atp-trust-card:nth-child(2)::after {
		display: none;
	}

	.atp-trust-card:nth-child(1),
	.atp-trust-card:nth-child(2) {
		border-bottom: 1px solid rgba(255, 255, 255, 0.14);
	}
}

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

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

	.atp-hero-headline {
		font-size: 34px;
		letter-spacing: -0.6px;
		margin-bottom: 18px;
	}

	.atp-hero-description {
		font-size: 16px;
		margin-bottom: 22px;
	}

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

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

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

	.atp-discovery {
		padding: 55px 0;
	}

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

	.atp-discovery-heading {
		font-size: 30px;
		letter-spacing: -0.6px;
	}

	.atp-discovery-subheading {
		font-size: 19px;
	}

	.atp-discovery-text,
	.atp-discovery-callout {
		font-size: 16px;
	}

	.atp-path {
		padding: 55px 0;
	}

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

	.atp-path-heading {
		font-size: 28px;
		letter-spacing: -0.5px;
	}

	.atp-path-intro {
		font-size: 16px;
	}

	.atp-assessment {
		padding: 55px 0;
	}

	.atp-assessment-eyebrow {
		font-size: 12px;
		letter-spacing: 2px;
	}

	.atp-assessment-heading {
		font-size: 28px;
		letter-spacing: -0.5px;
	}

	.atp-assessment-text {
		font-size: 16px;
		margin-bottom: 26px;
	}

	.atp-assessment-card {
		padding: 26px 20px;
	}

	.atp-assessment-item {
		font-size: 15px;
		gap: 12px;
	}

	.atp-domains {
		padding: 55px 0;
	}

	.atp-domains-eyebrow {
		font-size: 12px;
		letter-spacing: 2px;
	}

	.atp-domains-heading {
		font-size: 28px;
		letter-spacing: -0.5px;
	}

	.atp-domains-intro {
		font-size: 16px;
	}

	.atp-domain-pill {
		padding: 9px 16px;
		font-size: 14px;
		white-space: normal;
	}

	.atp-cta {
		padding: 20px 0 55px;
	}

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

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

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

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

	.atp-trust-badges {
		margin-top: 44px;
	}

	.atp-trust-card {
		flex: 0 0 100%;
		max-width: 100%;
		justify-content: flex-start;
		padding: 18px 20px;
	}

	.atp-trust-card::after {
		display: none;
	}

	.atp-trust-card:not(:last-child) {
		border-bottom: 1px solid rgba(255, 255, 255, 0.14);
	}
}

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

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

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

	.atp-trust-label {
		letter-spacing: 1.8px;
		gap: 12px;
	}
}
