:root {
	--ink: #082f26;
	--ink-2: #174b3e;
	--muted: #58736a;
	--line: #d3e8dc;
	--paper: #ffffff;
	--soft: #f3fbf6;
	--soft-green: #e8fff1;
	--mint: #00b85a;
	--mint-dark: #008f46;
	--cyan: #72dba0;
	--violet: #8067ff;
	--orange: #ffad42;
	--shadow: 0 24px 64px rgba(10, 44, 36, 0.12);
	--radius: 24px;
	--container: 1220px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--ink);
	background: var(--paper);
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

a {
	color: inherit;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.2em;
}

img,
svg {
	display: block;
	max-width: 100%;
}

button,
input,
select,
textarea {
	font: inherit;
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1,
h2,
h3 {
	line-height: 1.08;
	letter-spacing: -0.035em;
}

h1 {
	font-size: clamp(2.55rem, 6vw, 5.8rem);
}

h2 {
	font-size: clamp(2rem, 4vw, 3.8rem);
}

h3 {
	font-size: clamp(1.2rem, 2vw, 1.55rem);
}

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

.narrow {
	max-width: 820px;
}

.section {
	padding: clamp(72px, 9vw, 132px) 0;
}

.section-soft {
	background:
		radial-gradient(circle at 10% 10%, rgba(85, 229, 183, 0.18), transparent 28%),
		var(--soft);
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: fixed;
	z-index: 9999;
	left: 16px;
	top: 16px;
	padding: 10px 14px;
	color: var(--paper);
	background: var(--ink);
	transform: translateY(-150%);
}

.skip-link:focus {
	transform: translateY(0);
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
	color: var(--mint-dark);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.eyebrow::before {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: currentColor;
	content: "";
	box-shadow: 0 0 0 5px rgba(85, 229, 183, 0.12);
}

.eyebrow-light {
	color: var(--mint);
}

.button {
	display: inline-flex;
	min-height: 54px;
	align-items: center;
	justify-content: center;
	padding: 0 24px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
	transform: translateY(-2px);
}

.button-primary {
	color: #ffffff;
	background: var(--mint);
	box-shadow: 0 14px 34px rgba(0, 184, 90, 0.22);
}

.button-primary:hover {
	background: var(--mint-dark);
	box-shadow: 0 18px 42px rgba(0, 184, 90, 0.3);
}

.button-secondary {
	color: var(--ink);
	border-color: var(--line);
	background: var(--paper);
}

.button-ghost {
	color: var(--paper);
	border-color: rgba(255, 255, 255, 0.32);
	background: rgba(255, 255, 255, 0.06);
}

.button-small {
	min-height: 44px;
	padding: 0 19px;
	font-size: 0.9rem;
}

.button-block {
	width: 100%;
}

.text-link {
	font-weight: 800;
	text-decoration: none;
}

.site-header {
	position: sticky;
	z-index: 100;
	top: 0;
	border-bottom: 1px solid rgba(7, 29, 53, 0.08);
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(18px);
}

.header-row {
	display: grid;
	min-height: 78px;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 18px;
}

.brand {
	display: grid;
	grid-template-columns: 38px auto;
	grid-template-rows: auto auto;
	column-gap: 10px;
	align-items: center;
	color: var(--ink);
	text-decoration: none;
}

.brand-mark {
	display: grid;
	width: 40px;
	height: 40px;
	grid-row: 1 / 3;
	place-items: center;
	border-radius: 12px;
	background: transparent;
	padding: 0;
}

.brand-mark svg {
	width: 100%;
	height: 100%;
}

.brand-name {
	font-size: 1.15rem;
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 1;
}

.brand-name span {
	color: var(--mint-dark);
}

.brand-caption {
	margin-top: 3px;
	color: var(--muted);
	font-size: 0.6rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1;
	text-transform: uppercase;
}

.site-navigation {
	justify-self: end;
}

.primary-menu,
.site-navigation ul {
	display: flex;
	align-items: center;
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-navigation a {
	display: flex;
	align-items: center;
	min-height: 44px;
	font-size: 0.81rem;
	font-weight: 750;
	text-decoration: none;
	white-space: nowrap;
}

.site-navigation .sub-menu {
	position: absolute;
	display: none;
	min-width: 240px;
	flex-direction: column;
	align-items: stretch;
	gap: 0;
	padding: 12px;
	border: 1px solid var(--line);
	border-radius: 18px;
	background: var(--paper);
	box-shadow: var(--shadow);
}

.site-navigation li:hover > .sub-menu,
.site-navigation li:focus-within > .sub-menu {
	display: flex;
}

.menu-toggle {
	display: none;
	width: 46px;
	height: 46px;
	align-content: center;
	justify-items: center;
	gap: 4px;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: 14px;
	background: var(--paper);
}

.menu-toggle > span:not(.screen-reader-text) {
	display: block;
	width: 20px;
	height: 2px;
	border-radius: 99px;
	background: var(--ink);
}

.hero,
.inner-hero {
	position: relative;
	overflow: hidden;
	color: var(--ink);
	background:
		radial-gradient(circle at 86% 18%, rgba(0, 184, 90, 0.22), transparent 30%),
		linear-gradient(115deg, #f2fff6 0%, #e4ffed 52%, #c9f8dc 125%);
}

.hero .eyebrow-light,
.inner-hero .eyebrow-light {
	color: var(--mint-dark);
}

.hero .button-ghost,
.inner-hero .button-ghost {
	color: var(--ink);
	border-color: rgba(0, 184, 90, 0.24);
	background: rgba(255, 255, 255, 0.72);
}

.hero {
	padding: clamp(42px, 4.5vw, 68px) 0;
}

.hero-grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
	align-items: center;
	gap: clamp(30px, 4vw, 58px);
}

.hero-copy h1 {
	max-width: 880px;
	margin-bottom: 18px;
	font-size: clamp(2.75rem, 3.7vw, 4.35rem);
	line-height: 0.98;
}

.hero-lead {
	max-width: 670px;
	color: var(--ink-2);
	font-size: clamp(1rem, 1.35vw, 1.18rem);
	line-height: 1.35;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 24px 0 20px;
}

.trust-list {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 24px;
	margin: 0;
	padding: 0;
	color: var(--ink-2);
	font-size: 0.9rem;
	list-style: none;
}

.trust-list li::before {
	margin-right: 8px;
	color: var(--mint-dark);
	content: "✓";
	font-weight: 900;
}

.hero-panel {
	position: relative;
}

.price-visual {
	position: relative;
	min-height: 288px;
}

.visual-card {
	position: absolute;
	inset: 0;
	border: 1px solid rgba(0, 184, 90, 0.16);
	border-radius: 28px;
}

.visual-card-back {
	inset: 28px -14px -8px 34px;
	background: linear-gradient(140deg, rgba(0, 184, 90, 0.24), rgba(114, 219, 160, 0.28));
	transform: rotate(7deg);
}

.visual-card-front {
	display: flex;
	flex-direction: column;
	padding: 32px;
	color: var(--ink);
	background:
		radial-gradient(circle at 85% 14%, rgba(0, 184, 90, 0.38), transparent 29%),
		linear-gradient(145deg, #fff, #edfff4);
	box-shadow: 0 38px 90px rgba(10, 44, 36, 0.2);
}

.visual-card-front > span {
	color: var(--muted);
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.visual-card-front > strong {
	max-width: 230px;
	margin-top: 10px;
	font-size: 1.65rem;
	line-height: 1.08;
}

.visual-number {
	position: absolute;
	right: 28px;
	top: 25px;
	color: rgba(7, 29, 53, 0.12);
	font-size: 4rem;
	font-weight: 900;
	line-height: 1;
}

.visual-card-front svg {
	width: 100%;
	margin-top: auto;
	color: var(--mint-dark);
}

.hero-stat-grid {
	position: relative;
	z-index: 4;
	display: grid;
	width: calc(100% - 36px);
	grid-template-columns: repeat(2, 1fr);
	margin: -30px auto 0;
	border-radius: 19px;
	background: var(--paper);
	box-shadow: var(--shadow);
}

.hero-stat-grid > div {
	display: flex;
	padding: 15px 18px;
	flex-direction: column;
	color: var(--ink);
}

.hero-stat-grid > div + div {
	border-left: 1px solid var(--line);
}

.hero-stat-grid strong {
	font-size: 1.5rem;
}

.hero-stat-grid span {
	color: var(--muted);
	font-size: 0.78rem;
}

.hero-orbit {
	position: absolute;
	border: 1px solid rgba(0, 184, 90, 0.12);
	border-radius: 999px;
}

.hero-orbit-one {
	width: 680px;
	height: 680px;
	right: -260px;
	top: -330px;
}

.hero-orbit-two {
	width: 480px;
	height: 480px;
	right: -30px;
	bottom: -410px;
}

.section-calculator {
	background:
		linear-gradient(180deg, var(--paper), var(--soft));
}

.calculator-shell {
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 32px;
	background: var(--paper);
	box-shadow: var(--shadow);
}

.calculator-heading {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 35px;
	padding: clamp(28px, 5vw, 58px);
	border-bottom: 1px solid var(--line);
}

.calculator-heading .eyebrow {
	grid-column: 1 / -1;
	margin-bottom: -10px;
}

.calculator-heading h2 {
	margin: 0;
	font-size: clamp(2rem, 4vw, 3.3rem);
}

.calculator-heading p {
	align-self: end;
	margin: 0;
	color: var(--muted);
}

.calculator-widget {
	min-height: 480px;
	padding: 24px;
	background: var(--soft);
}

.calculator-loader {
	display: grid;
	min-height: 240px;
	place-items: center;
	color: var(--muted);
}

.calculator-shell > .disclosure {
	margin: 0;
	padding: 16px 28px;
	color: var(--muted);
	border-top: 1px solid var(--line);
	font-size: 0.78rem;
}

.section-heading {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
	align-items: end;
	gap: 40px;
	margin-bottom: 42px;
}

.section-heading h2 {
	margin-bottom: 0;
}

.section-heading > p {
	margin: 0;
	color: var(--muted);
}

.section-heading > .text-link {
	justify-self: end;
}

.service-grid {
	display: grid;
	grid-template-columns: 1.35fr repeat(3, 1fr);
	gap: 14px;
}

.service-card {
	position: relative;
	display: flex;
	min-height: 350px;
	flex-direction: column;
	padding: 28px;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--paper);
	text-decoration: none;
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
	z-index: 2;
	border-color: var(--mint-dark);
	box-shadow: var(--shadow);
	transform: translateY(-5px);
}

.service-card-main {
	background:
		radial-gradient(circle at 80% 12%, rgba(85, 229, 183, 0.35), transparent 33%),
		var(--soft-green);
}

.service-icon {
	display: grid;
	width: 54px;
	height: 54px;
	margin: 2px 0 58px;
	place-items: center;
	color: var(--paper);
	border-radius: 17px;
	background: var(--ink);
	font-size: 1.35rem;
	font-weight: 900;
	box-shadow: 0 14px 26px rgba(7, 29, 53, 0.15);
	transform: rotate(-5deg);
}

.service-card:nth-child(2) .service-icon {
	background: var(--violet);
}

.service-card:nth-child(3) .service-icon {
	background: var(--orange);
}

.service-card:nth-child(4) .service-icon {
	background: var(--mint-dark);
}

.card-index {
	position: absolute;
	right: 22px;
	top: 20px;
	color: #93a2b2;
	font-size: 0.72rem;
	font-weight: 900;
}

.service-card h3 {
	margin-bottom: 14px;
}

.service-card p {
	color: var(--muted);
}

.service-card strong {
	margin-top: auto;
	font-size: 0.88rem;
}

.company-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}

.company-grid-large {
	grid-template-columns: repeat(3, 1fr);
}

.company-card {
	display: flex;
	min-height: 120px;
	align-items: center;
	gap: 18px;
	padding: 18px;
	border: 1px solid var(--line);
	border-radius: 20px;
	background: var(--paper);
	text-decoration: none;
	transition: transform 180ms ease, border-color 180ms ease;
}

.company-card:hover {
	border-color: var(--mint-dark);
	transform: translateY(-3px);
}

.company-card-large {
	min-height: 190px;
	align-items: flex-start;
}

.company-card h2,
.company-card h3 {
	margin: 0 0 7px;
	font-size: 1.05rem;
}

.company-card p,
.company-card span,
.company-card strong {
	color: var(--muted);
	font-size: 0.78rem;
}

.company-logo {
	display: grid;
	width: 70px;
	height: 70px;
	flex: 0 0 70px;
	place-items: center;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 18px;
	background: var(--paper);
}

.company-logo img {
	width: 86%;
	height: 86%;
	object-fit: contain;
}

.company-logo > span {
	color: var(--mint-dark);
	font-size: 1.6rem;
	font-weight: 900;
}

.methodology {
	color: var(--paper);
	background: var(--ink);
}

.methodology-grid {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 70px;
}

.methodology h2 {
	max-width: 470px;
}

.method-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.method-steps > div {
	padding: 32px;
}

.method-steps > div + div {
	border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.method-steps span {
	color: var(--mint);
	font-weight: 900;
}

.method-steps h3 {
	margin-top: 60px;
}

.method-steps p {
	margin: 0;
	color: #aabfd1;
	font-size: 0.9rem;
}

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

.article-card {
	display: block;
	padding: 22px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--paper);
	text-decoration: none;
}

.article-card .eyebrow {
	margin-bottom: 12px;
	font-size: 0.64rem;
}

.article-card h3,
.article-card h2 {
	margin-bottom: 12px;
}

.article-card p {
	color: var(--muted);
}

.article-media {
	aspect-ratio: 16 / 9;
	margin: -12px -12px 22px;
	overflow: hidden;
	border-radius: 16px;
	background: var(--soft);
}

.article-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.inner-hero {
	padding: clamp(64px, 8vw, 112px) 0;
}

.inner-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.55fr);
	align-items: end;
	gap: 60px;
}

.inner-hero h1 {
	max-width: 900px;
	margin: 8px 0 22px;
	font-size: clamp(2.6rem, 5vw, 5rem);
}

.inner-hero p {
	max-width: 760px;
	margin: 0;
	color: #b8ccdc;
	font-size: 1.06rem;
}

.inner-hero-note {
	display: flex;
	padding: 24px;
	flex-direction: column;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.06);
}

.inner-hero-note strong {
	color: var(--mint);
}

.inner-hero-note span {
	margin-top: 8px;
	color: #b8ccdc;
	font-size: 0.82rem;
}

.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 22px;
	color: #9cb4c8;
	font-size: 0.76rem;
}

.breadcrumbs a {
	text-decoration: none;
}

.page-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 330px;
	align-items: start;
	gap: 42px;
}

.prose {
	font-size: 1.05rem;
	line-height: 1.78;
}

.prose > * {
	max-width: 820px;
}

.prose h2,
.prose h3 {
	margin-top: 2.1em;
	margin-bottom: 0.75em;
}

.prose h2 {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.prose h3 {
	font-size: 1.45rem;
}

.prose p,
.prose li {
	color: #2d4660;
}

.prose a {
	color: #007d69;
	font-weight: 700;
}

.prose table {
	display: block;
	width: 100%;
	max-width: 100%;
	overflow-x: auto;
	border-spacing: 0;
	border-collapse: collapse;
	font-size: 0.9rem;
}

.prose th,
.prose td {
	min-width: 130px;
	padding: 13px 15px;
	border: 1px solid var(--line);
	text-align: left;
	vertical-align: top;
}

.prose th {
	background: var(--soft);
}

.sticky-cta {
	position: sticky;
	top: 108px;
	padding: 28px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--paper);
	box-shadow: var(--shadow);
}

.sticky-cta h2 {
	font-size: 1.65rem;
}

.sticky-cta p {
	color: var(--muted);
	font-size: 0.9rem;
}

.sticky-cta .disclosure {
	margin: 14px 0 0;
	font-size: 0.7rem;
}

.company-hero-grid {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.company-identity {
	display: flex;
	align-items: center;
	gap: 28px;
}

.company-logo-hero {
	width: 128px;
	height: 128px;
	flex-basis: 128px;
	border-radius: 30px;
}

.company-identity h1 {
	margin-bottom: 15px;
}

.fact-grid {
	display: grid;
	max-width: 100%;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	margin: 26px 0 38px;
}

.fact-grid > div {
	display: flex;
	padding: 18px;
	flex-direction: column;
	border: 1px solid var(--line);
	border-radius: 16px;
	background: var(--soft);
}

.fact-grid span {
	color: var(--muted);
	font-size: 0.73rem;
	font-weight: 800;
	text-transform: uppercase;
}

.fact-grid strong {
	margin-top: 5px;
	font-size: 0.95rem;
	line-height: 1.45;
}

.fact-wide {
	grid-column: 1 / -1;
}

.inline-cta {
	display: flex;
	max-width: 100%;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-top: 52px;
	padding: 28px;
	border-radius: var(--radius);
	background: var(--ink);
	color: var(--paper);
}

.inline-cta h2 {
	margin: 0 0 8px;
	font-size: 1.65rem;
}

.inline-cta p {
	margin: 0;
	color: #b8ccdc;
}

.inline-cta .eyebrow {
	margin-bottom: 8px;
	color: var(--mint);
}

.article-hero {
	padding: clamp(68px, 8vw, 120px) 0 42px;
	background:
		radial-gradient(circle at 90% 20%, rgba(85, 229, 183, 0.22), transparent 30%),
		var(--soft);
}

.article-hero h1 {
	margin-bottom: 24px;
	font-size: clamp(2.55rem, 5vw, 4.8rem);
}

.article-hero p {
	color: var(--muted);
	font-size: 1.15rem;
}

.article-cover {
	overflow: hidden;
	margin-top: 38px;
	border-radius: var(--radius);
}

.article-cover img {
	width: 100%;
	height: auto;
}

.error-page {
	display: grid;
	min-height: 66vh;
	place-items: center;
	text-align: center;
}

.site-footer {
	padding: 72px 0 24px;
	color: #a9bed0;
	background: #041629;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.35fr repeat(3, 1fr);
	gap: 54px;
}

.brand-inverse {
	color: var(--paper);
}

.brand-inverse .brand-caption {
	color: #8da5ba;
}

.footer-brand p {
	max-width: 350px;
	margin-top: 24px;
	font-size: 0.88rem;
}

.site-footer h2 {
	color: var(--paper);
	font-size: 0.86rem;
	letter-spacing: 0;
}

.site-footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer li + li {
	margin-top: 8px;
}

.site-footer a {
	font-size: 0.86rem;
	text-decoration: none;
}

.site-footer a:hover {
	color: var(--mint);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-top: 58px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.72rem;
}

.to-top {
	position: fixed;
	z-index: 90;
	right: 20px;
	bottom: 20px;
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	color: var(--paper);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	background: var(--ink);
	box-shadow: var(--shadow);
	opacity: 0;
	pointer-events: none;
	transform: translateY(15px);
	transition: opacity 180ms ease, transform 180ms ease;
}

.to-top.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

@media (max-width: 1120px) {
	.header-row {
		grid-template-columns: auto auto 1fr;
	}

	.menu-toggle {
		display: grid;
		grid-column: 3;
		justify-self: end;
	}

	.header-cta {
		display: none;
	}

	.site-navigation {
		position: fixed;
		inset: 78px 0 auto;
		display: none;
		max-height: calc(100vh - 78px);
		padding: 18px 20px 28px;
		overflow: auto;
		background: var(--paper);
		box-shadow: 0 22px 40px rgba(7, 29, 53, 0.14);
	}

	.site-navigation.is-open {
		display: block;
	}

	.primary-menu,
	.site-navigation ul {
		align-items: stretch;
		flex-direction: column;
		gap: 0;
	}

	.site-navigation a {
		padding: 6px 0;
		font-size: 1rem;
	}

	.site-navigation .sub-menu {
		position: static;
		display: flex;
		margin-left: 18px;
		padding: 0;
		border: 0;
		box-shadow: none;
	}

	.hero-grid,
	.inner-hero-grid,
	.methodology-grid {
		grid-template-columns: 1fr;
	}

	.hero-copy {
		max-width: 800px;
	}

	.hero-panel {
		max-width: 620px;
	}

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

	.company-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 840px) {
	.section {
		padding: 70px 0;
	}

	.calculator-heading,
	.section-heading,
	.page-layout {
		grid-template-columns: 1fr;
	}

	.section-heading > .text-link {
		justify-self: start;
	}

	.page-layout {
		gap: 26px;
	}

	.sticky-cta {
		position: static;
	}

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

	.method-steps {
		grid-template-columns: 1fr;
	}

	.method-steps > div + div {
		border-top: 1px solid rgba(255, 255, 255, 0.14);
		border-left: 0;
	}

	.method-steps h3 {
		margin-top: 20px;
	}

	.company-hero-grid,
	.company-identity {
		align-items: flex-start;
		flex-direction: column;
	}

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

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

	.hero {
		padding: 42px 0 54px;
	}

	h1,
	.hero-copy h1 {
		font-size: 2.35rem;
	}

	h2 {
		font-size: 2.1rem;
	}

	.hero-grid {
		gap: 30px;
	}

	.hero-actions,
	.hero-actions .button {
		width: 100%;
	}

	.price-visual {
		min-height: 255px;
	}

	.visual-card-front {
		padding: 30px;
	}

	.visual-card-front > strong {
		font-size: 1.6rem;
	}

	.visual-number {
		right: 24px;
		top: 24px;
		font-size: 4rem;
	}

	.hero-stat-grid {
		width: calc(100% - 24px);
	}

	.hero-stat-grid > div {
		padding: 16px;
	}

	.service-grid,
	.company-grid,
	.company-grid-large,
	.article-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.service-card {
		min-height: 280px;
	}

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

	.calculator-heading {
		padding: 26px 22px;
	}

	.calculator-widget {
		min-height: 430px;
		padding: 6px;
	}

	.inner-hero {
		padding: 52px 0 64px;
	}

	.inner-hero h1 {
		font-size: 2.7rem;
	}

	.company-logo-hero {
		width: 100px;
		height: 100px;
		flex-basis: 100px;
	}

	.fact-grid {
		grid-template-columns: 1fr;
	}

	.fact-wide {
		grid-column: auto;
	}

	.inline-cta {
		align-items: stretch;
		flex-direction: column;
	}

	.footer-bottom {
		flex-direction: column;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}
