:root {
	--eas-ink: #10324a;
	--eas-ink-soft: #527082;
	--eas-deep: #075985;
	--eas-aqua: #0ea5a8;
	--eas-aqua-dark: #087f8c;
	--eas-aqua-pale: #e9fbfa;
	--eas-green: #4aa762;
	--eas-green-pale: #effaf1;
	--eas-orange: #f47b20;
	--eas-orange-dark: #db5f0d;
	--eas-white: #fff;
	--eas-sand: #fbf9f3;
	--eas-line: #dcebed;
	--eas-shadow: 0 24px 70px rgba(15, 73, 91, .14);
	--eas-shadow-soft: 0 12px 36px rgba(15, 73, 91, .09);
	--eas-radius: 24px;
	--eas-container: 1180px;
}

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

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

body.eas-site {
	margin: 0;
	background: var(--eas-white);
	color: var(--eas-ink);
	font-family: Tahoma, "Segoe UI", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.75;
	text-align: right;
	-webkit-font-smoothing: antialiased;
}

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

.eas-site a {
	color: inherit;
	text-decoration: none;
}

.eas-site button,
.eas-site input,
.eas-site textarea {
	font: inherit;
}

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

.eas-skip-link {
	position: fixed;
	top: 10px;
	right: 10px;
	z-index: 9999;
	padding: 10px 18px;
	border-radius: 10px;
	background: var(--eas-deep);
	color: var(--eas-white) !important;
	transform: translateY(-150%);
}

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

.eas-header {
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid rgba(10, 116, 126, .1);
	background: rgba(255, 255, 255, .91);
	backdrop-filter: blur(16px);
}

.eas-header__inner {
	display: flex;
	min-height: 72px;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

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

.eas-brand__mark {
	display: grid;
	width: 34px;
	height: 42px;
	place-items: center;
}

.eas-brand__mark svg {
	width: 30px;
	overflow: visible;
	fill: var(--eas-aqua);
}

.eas-brand__mark svg path:last-child {
	fill: none;
	stroke: var(--eas-white);
	stroke-linecap: round;
	stroke-width: 2.5;
}

.eas-brand b {
	display: block;
	color: var(--eas-deep);
	font-family: "Segoe UI", Arial, sans-serif;
	font-size: 17px;
	font-weight: 800;
	letter-spacing: 1.7px;
}

.eas-brand small {
	display: block;
	margin-top: 2px;
	color: var(--eas-ink-soft);
	font-size: 10px;
	letter-spacing: 0;
}

.eas-button {
	display: inline-flex;
	min-height: 54px;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border: 0;
	border-radius: 14px;
	font-weight: 800;
	line-height: 1.2;
	cursor: pointer;
	transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

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

.eas-button:focus-visible,
.eas-text-link:focus-visible,
.eas-mobile-cta:focus-visible,
.eas-site input:focus-visible,
.eas-site textarea:focus-visible {
	outline: 3px solid rgba(244, 123, 32, .3);
	outline-offset: 3px;
}

.eas-button--small {
	min-height: 42px;
	padding: 10px 18px;
	background: var(--eas-aqua-dark);
	box-shadow: 0 8px 20px rgba(8, 127, 140, .18);
	color: var(--eas-white) !important;
	font-size: 14px;
}

.eas-button--primary,
.eas-button--submit {
	padding: 16px 25px;
	background: linear-gradient(135deg, var(--eas-orange), #ff942f);
	box-shadow: 0 14px 30px rgba(244, 123, 32, .27);
	color: var(--eas-white) !important;
}

.eas-button--primary:hover,
.eas-button--submit:hover {
	background: linear-gradient(135deg, var(--eas-orange-dark), var(--eas-orange));
	box-shadow: 0 17px 34px rgba(219, 95, 13, .3);
}

.eas-button--secondary {
	padding: 14px 22px;
	background: var(--eas-aqua-dark);
	color: var(--eas-white) !important;
}

.eas-button[disabled] {
	box-shadow: none;
	cursor: not-allowed;
	filter: grayscale(.4);
	opacity: .55;
	transform: none;
}

.eas-hero {
	position: relative;
	overflow: hidden;
	padding: 54px 0 62px;
	background:
		radial-gradient(circle at 10% 8%, rgba(111, 211, 197, .2), transparent 30%),
		linear-gradient(155deg, #f6ffff 0%, #edfafa 48%, #fff 100%);
}

.eas-hero::after {
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	height: 46px;
	background: var(--eas-white);
	clip-path: polygon(0 76%, 20% 30%, 44% 75%, 70% 25%, 100% 72%, 100% 100%, 0 100%);
	content: "";
}

.eas-hero__orb {
	position: absolute;
	border: 1px solid rgba(12, 151, 156, .1);
	border-radius: 50%;
	pointer-events: none;
}

.eas-hero__orb--one {
	top: 12%;
	right: -130px;
	width: 360px;
	height: 360px;
}

.eas-hero__orb--two {
	bottom: 4%;
	left: -80px;
	width: 220px;
	height: 220px;
}

.eas-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 44px;
}

.eas-hero__copy {
	align-self: center;
}

.eas-eyebrow,
.eas-kicker {
	margin: 0 0 12px;
	color: var(--eas-aqua-dark);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .4px;
}

.eas-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 13px;
	border: 1px solid rgba(8, 127, 140, .15);
	border-radius: 999px;
	background: rgba(255, 255, 255, .7);
}

.eas-eyebrow span {
	color: var(--eas-green);
	font-size: 9px;
}

.eas-hero h1,
.eas-section-heading h2,
.eas-how__copy h2,
.eas-order-copy h2,
.eas-success h2 {
	margin: 0;
	color: var(--eas-ink);
	font-size: clamp(34px, 8.8vw, 62px);
	font-weight: 900;
	letter-spacing: -.8px;
	line-height: 1.28;
}

.eas-hero h1 span {
	position: relative;
	color: var(--eas-aqua-dark);
}

.eas-hero h1 span::after {
	position: absolute;
	right: 2%;
	bottom: -7px;
	width: 75%;
	height: 8px;
	border-radius: 50%;
	background: rgba(74, 167, 98, .2);
	content: "";
	transform: rotate(-1deg);
}

.eas-hero__lead {
	max-width: 600px;
	margin: 20px 0 18px;
	color: var(--eas-ink-soft);
	font-size: 17px;
	line-height: 1.9;
}

.eas-hero__lead strong {
	color: var(--eas-deep);
}

.eas-check-list {
	display: grid;
	margin: 0 0 26px;
	padding: 0;
	gap: 8px;
	list-style: none;
}

.eas-check-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #294d61;
	font-size: 14px;
	font-weight: 700;
}

.eas-check-list li span {
	display: grid;
	width: 23px;
	height: 23px;
	flex: 0 0 23px;
	place-items: center;
	border-radius: 50%;
	background: var(--eas-green-pale);
	color: var(--eas-green);
	font-size: 13px;
}

.eas-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px;
}

.eas-microcopy {
	display: grid;
	line-height: 1.45;
}

.eas-microcopy b {
	font-size: 13px;
}

.eas-microcopy small {
	color: var(--eas-ink-soft);
	font-size: 11px;
}

.eas-product-stage {
	position: relative;
	width: min(100%, 570px);
	min-height: 460px;
	margin-inline: auto;
	isolation: isolate;
}

.eas-product-stage__halo {
	position: absolute;
	top: 8%;
	right: 8%;
	bottom: 8%;
	left: 8%;
	z-index: -2;
	border: 1px solid rgba(8, 127, 140, .12);
	border-radius: 49% 51% 47% 53% / 45% 43% 57% 55%;
	background: linear-gradient(145deg, rgba(255, 255, 255, .85), rgba(196, 241, 238, .75));
	box-shadow: inset 0 0 70px rgba(255, 255, 255, .7), var(--eas-shadow);
	transform: rotate(-5deg);
}

.eas-product-stage > img {
	position: absolute;
	top: 5%;
	right: 12%;
	width: 76%;
	height: 82%;
	object-fit: contain;
	filter: drop-shadow(0 22px 25px rgba(15, 73, 91, .14));
}

.eas-product-stage__leaf {
	position: absolute;
	z-index: -1;
	width: 110px;
	height: 52px;
	border-radius: 100% 0 100% 0;
	background: linear-gradient(135deg, #6fc77e, #2c9052);
	opacity: .75;
}

.eas-product-stage__leaf--one {
	top: 9%;
	left: 0;
	transform: rotate(19deg);
}

.eas-product-stage__leaf--two {
	right: 1%;
	bottom: 14%;
	width: 90px;
	height: 43px;
	transform: rotate(-35deg) scaleX(-1);
}

.eas-price-card {
	position: absolute;
	right: 0;
	bottom: 4%;
	display: grid;
	min-width: 155px;
	padding: 14px 18px;
	border: 1px solid rgba(255, 255, 255, .75);
	border-radius: 18px;
	background: rgba(255, 255, 255, .93);
	box-shadow: var(--eas-shadow-soft);
	line-height: 1.35;
}

.eas-price-card small {
	color: var(--eas-ink-soft);
	font-size: 11px;
}

.eas-price-card strong {
	color: var(--eas-deep);
	font-size: 22px;
	font-weight: 900;
}

.eas-price-card del,
.eas-order-product del,
.eas-mobile-cta del {
	margin-inline-end: 6px;
	color: #8ba0aa;
	font-size: .65em;
}

.eas-price-card ins,
.eas-order-product ins,
.eas-mobile-cta ins {
	background: none;
	text-decoration: none;
}

.eas-price-card span {
	color: var(--eas-green);
	font-size: 11px;
	font-weight: 700;
}

.eas-float-badge {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 8px 12px;
	border: 1px solid rgba(8, 127, 140, .1);
	border-radius: 999px;
	background: rgba(255, 255, 255, .92);
	box-shadow: 0 8px 24px rgba(12, 94, 107, .1);
	color: var(--eas-ink);
	font-size: 11px;
	font-weight: 800;
}

.eas-float-badge span {
	color: var(--eas-aqua);
	font-size: 16px;
}

.eas-float-badge--top {
	top: 17%;
	right: 0;
}

.eas-float-badge--bottom {
	bottom: 13%;
	left: 0;
}

.eas-trust {
	position: relative;
	z-index: 2;
	padding: 24px 0;
	border-bottom: 1px solid var(--eas-line);
	background: var(--eas-white);
}

.eas-trust__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px 12px;
}

.eas-trust__grid > div {
	display: flex;
	align-items: center;
	gap: 10px;
}

.eas-icon {
	display: grid;
	width: 42px;
	height: 42px;
	flex: 0 0 42px;
	place-items: center;
	border-radius: 13px;
	background: var(--eas-aqua-pale);
	font-size: 19px;
}

.eas-trust p {
	margin: 0;
	line-height: 1.35;
}

.eas-trust b,
.eas-trust small {
	display: block;
}

.eas-trust b {
	font-size: 12px;
}

.eas-trust small {
	margin-top: 3px;
	color: var(--eas-ink-soft);
	font-size: 9px;
}

.eas-section {
	padding: 76px 0;
}

.eas-section-heading {
	max-width: 700px;
	margin: 0 auto 38px;
	text-align: center;
}

.eas-section-heading h2,
.eas-how__copy h2,
.eas-order-copy h2,
.eas-success h2 {
	font-size: clamp(28px, 6vw, 42px);
}

.eas-section-heading > p:last-child {
	margin: 12px auto 0;
	color: var(--eas-ink-soft);
	font-size: 15px;
}

.eas-card-grid {
	display: grid;
	gap: 16px;
}

.eas-feature-card {
	position: relative;
	overflow: hidden;
	padding: 28px;
	border: 1px solid var(--eas-line);
	border-radius: var(--eas-radius);
	background: var(--eas-white);
	box-shadow: var(--eas-shadow-soft);
}

.eas-feature-card:nth-child(2) {
	background: linear-gradient(145deg, #f5fffe, var(--eas-aqua-pale));
}

.eas-feature-card:nth-child(3) {
	background: linear-gradient(145deg, #fff, var(--eas-green-pale));
}

.eas-feature-card__number {
	position: absolute;
	top: 12px;
	left: 18px;
	color: rgba(7, 89, 133, .07);
	font-family: Georgia, serif;
	font-size: 62px;
	font-weight: 900;
	line-height: 1;
}

.eas-feature-card__icon {
	display: grid;
	width: 54px;
	height: 54px;
	place-items: center;
	border-radius: 17px;
	background: var(--eas-aqua-pale);
	font-size: 24px;
}

.eas-feature-card h3 {
	margin: 18px 0 5px;
	font-size: 20px;
}

.eas-feature-card p {
	margin: 0;
	color: var(--eas-ink-soft);
	font-size: 14px;
}

.eas-how {
	overflow: hidden;
	background: var(--eas-sand);
}

.eas-how__grid {
	display: grid;
	gap: 45px;
}

.eas-how__visual {
	position: relative;
	display: grid;
	min-height: 390px;
	place-items: center;
}

.eas-how__visual img {
	position: relative;
	z-index: 2;
	width: min(80%, 420px);
	height: 350px;
	object-fit: contain;
	filter: drop-shadow(0 24px 24px rgba(16, 50, 74, .14));
}

.eas-how__rings,
.eas-how__rings span {
	position: absolute;
	border-radius: 50%;
}

.eas-how__rings {
	inset: 7%;
	background: radial-gradient(circle, rgba(255, 255, 255, .95) 0 38%, rgba(199, 239, 234, .8) 39% 55%, transparent 56%);
}

.eas-how__rings span {
	border: 1px solid rgba(8, 127, 140, .14);
}

.eas-how__rings span:nth-child(1) { inset: 2%; }
.eas-how__rings span:nth-child(2) { inset: 13%; }
.eas-how__rings span:nth-child(3) { inset: 25%; }

.eas-steps {
	display: grid;
	margin: 28px 0;
	padding: 0;
	gap: 15px;
	list-style: none;
}

.eas-steps li {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px;
	border: 1px solid rgba(8, 127, 140, .1);
	border-radius: 18px;
	background: rgba(255, 255, 255, .66);
}

.eas-steps li > span {
	display: grid;
	width: 42px;
	height: 42px;
	flex: 0 0 42px;
	place-items: center;
	border-radius: 50%;
	background: var(--eas-aqua-dark);
	color: var(--eas-white);
	font-weight: 900;
}

.eas-steps h3,
.eas-steps p {
	margin: 0;
}

.eas-steps h3 {
	font-size: 15px;
}

.eas-steps p {
	color: var(--eas-ink-soft);
	font-size: 12px;
}

.eas-text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border-bottom: 2px solid rgba(244, 123, 32, .35);
	color: var(--eas-orange-dark) !important;
	font-weight: 900;
}

.eas-reviews {
	background: linear-gradient(180deg, #fff, #f7fdfd);
}

.eas-reviews__grid {
	display: grid;
	gap: 16px;
}

.eas-review-card {
	margin: 0;
	padding: 25px;
	border: 1px solid var(--eas-line);
	border-radius: var(--eas-radius);
	background: var(--eas-white);
	box-shadow: var(--eas-shadow-soft);
}

.eas-review-card--featured {
	border-color: rgba(8, 127, 140, .25);
	background: linear-gradient(145deg, #fff, #f0fbfa);
}

.eas-stars {
	color: #f8a91b;
	font-family: Arial, sans-serif;
	font-size: 16px;
	letter-spacing: 2px;
}

.eas-review-card blockquote {
	margin: 13px 0 21px;
	color: #294d61;
	font-size: 14px;
}

.eas-review-card figcaption {
	display: flex;
	align-items: center;
	gap: 10px;
}

.eas-review-card figcaption > span {
	display: grid;
	width: 40px;
	height: 40px;
	place-items: center;
	border-radius: 50%;
	background: var(--eas-aqua-dark);
	color: var(--eas-white);
	font-weight: 900;
}

.eas-review-card figcaption p,
.eas-review-card figcaption b,
.eas-review-card figcaption small {
	display: block;
	margin: 0;
	line-height: 1.4;
}

.eas-review-card figcaption b {
	font-size: 13px;
}

.eas-review-card figcaption small {
	color: var(--eas-ink-soft);
	font-size: 10px;
}

.eas-order-section {
	position: relative;
	overflow: hidden;
	padding: 82px 0;
	background:
		radial-gradient(circle at 8% 15%, rgba(68, 183, 174, .25), transparent 25%),
		linear-gradient(140deg, #075985, #087f8c 62%, #0d9697);
	color: var(--eas-white);
}

.eas-order-section::before,
.eas-order-section::after {
	position: absolute;
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 50%;
	content: "";
}

.eas-order-section::before {
	top: -180px;
	right: -110px;
	width: 480px;
	height: 480px;
}

.eas-order-section::after {
	bottom: -220px;
	left: -120px;
	width: 520px;
	height: 520px;
}

.eas-order-grid {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 40px;
}

.eas-kicker--light,
.eas-order-copy h2 {
	color: var(--eas-white);
}

.eas-order-copy > p:not(.eas-kicker) {
	max-width: 570px;
	margin: 15px 0 24px;
	color: rgba(255, 255, 255, .78);
}

.eas-order-product {
	display: flex;
	max-width: 460px;
	align-items: center;
	gap: 18px;
	padding: 14px;
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 20px;
	background: rgba(255, 255, 255, .1);
	backdrop-filter: blur(8px);
}

.eas-order-product img {
	width: 94px;
	height: 94px;
	border-radius: 15px;
	background: rgba(255, 255, 255, .92);
	object-fit: contain;
}

.eas-order-product div {
	display: grid;
	line-height: 1.5;
}

.eas-order-product small {
	color: rgba(255, 255, 255, .65);
	font-size: 11px;
}

.eas-order-product b {
	font-size: 15px;
}

.eas-order-product strong {
	color: #c8ffdc;
	font-size: 20px;
}

.eas-order-promises {
	display: grid;
	margin: 22px 0 0;
	padding: 0;
	gap: 7px;
	color: rgba(255, 255, 255, .86);
	font-size: 13px;
	font-weight: 700;
	list-style: none;
}

.eas-form-card {
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, .6);
	border-radius: 28px;
	background: var(--eas-white);
	box-shadow: 0 30px 75px rgba(1, 40, 55, .25);
	color: var(--eas-ink);
}

.eas-form-card__heading {
	margin-bottom: 19px;
}

.eas-form-card__heading > span {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 999px;
	background: var(--eas-green-pale);
	color: var(--eas-green);
	font-size: 10px;
	font-weight: 800;
}

.eas-form-card__heading h2 {
	margin: 8px 0 2px;
	font-size: 23px;
	line-height: 1.35;
}

.eas-form-card__heading p {
	margin: 0;
	color: var(--eas-ink-soft);
	font-size: 12px;
}

.eas-alert {
	margin-bottom: 17px;
	padding: 12px 14px;
	border: 1px solid;
	border-radius: 13px;
	font-size: 12px;
}

.eas-alert--error {
	border-color: #f3b8b5;
	background: #fff1f0;
	color: #8a2824;
}

.eas-alert--warning {
	border-color: #f5d797;
	background: #fff8e6;
	color: #79520a;
}

.eas-alert ul {
	margin: 5px 0 0;
	padding-right: 20px;
}

.eas-order-form,
.eas-form-row {
	display: grid;
	gap: 14px;
}

.eas-field label {
	display: block;
	margin-bottom: 6px;
	font-size: 12px;
	font-weight: 800;
}

.eas-field label span {
	color: #d4493f;
}

.eas-field label small {
	color: var(--eas-ink-soft);
	font-size: 10px;
	font-weight: 400;
}

.eas-site .eas-field input,
.eas-site .eas-field textarea {
	display: block;
	width: 100%;
	margin: 0;
	padding: 12px 14px;
	border: 1px solid #cbdfe3;
	border-radius: 12px;
	background: #fbfdfd;
	box-shadow: none;
	color: var(--eas-ink);
	font-size: 14px;
	line-height: 1.5;
	transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.eas-site .eas-field input {
	height: 49px;
}

.eas-site .eas-field textarea {
	min-height: 72px;
	resize: vertical;
}

.eas-site .eas-field input::placeholder,
.eas-site .eas-field textarea::placeholder {
	color: #96a9b2;
}

.eas-site .eas-field input:focus,
.eas-site .eas-field textarea:focus {
	border-color: var(--eas-aqua);
	background: var(--eas-white);
	box-shadow: 0 0 0 4px rgba(14, 165, 168, .1);
	outline: 0;
}

.eas-button--submit {
	width: 100%;
	margin-top: 3px;
}

.eas-button--submit.is-loading {
	cursor: progress;
	opacity: .75;
}

.eas-form-note {
	margin: 0;
	color: var(--eas-ink-soft);
	font-size: 10px;
	text-align: center;
}

.eas-honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.eas-success {
	display: grid;
	min-height: 470px;
	place-items: center;
	align-content: center;
	padding: 20px;
	text-align: center;
}

.eas-success__icon {
	display: grid;
	width: 76px;
	height: 76px;
	margin-bottom: 15px;
	place-items: center;
	border-radius: 50%;
	background: var(--eas-green-pale);
	box-shadow: 0 0 0 12px rgba(74, 167, 98, .08);
	color: var(--eas-green);
	font-size: 36px;
	font-weight: 900;
}

.eas-success p {
	max-width: 420px;
	margin: 6px 0;
	color: var(--eas-ink-soft);
}

.eas-success .eas-kicker {
	color: var(--eas-green);
}

.eas-success .eas-button {
	margin-top: 18px;
}

.eas-footer {
	padding: 26px 0 94px;
	background: #062f46;
	color: rgba(255, 255, 255, .65);
}

.eas-footer__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
	text-align: center;
}

.eas-brand--footer b,
.eas-brand--footer small {
	color: var(--eas-white);
}

.eas-footer p {
	margin: 0;
	font-size: 11px;
}

.eas-mobile-cta {
	position: fixed;
	right: 14px;
	bottom: calc(12px + env(safe-area-inset-bottom));
	left: 14px;
	z-index: 150;
	display: flex;
	min-height: 54px;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 10px 20px;
	border: 1px solid rgba(255, 255, 255, .4);
	border-radius: 16px;
	background: linear-gradient(135deg, var(--eas-orange), #ff942f);
	box-shadow: 0 14px 35px rgba(50, 40, 20, .28);
	color: var(--eas-white) !important;
	font-size: 14px;
	font-weight: 900;
}

.eas-mobile-cta b {
	font-size: 13px;
}

@media (min-width: 680px) {
	.eas-container {
		width: min(100% - 64px, var(--eas-container));
	}

	.eas-hero {
		padding-top: 72px;
	}

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

	.eas-review-card--featured {
		transform: translateY(-12px);
	}

	.eas-form-row {
		grid-template-columns: 1fr 1fr;
	}

	.eas-form-card {
		padding: 34px;
	}
}

@media (min-width: 900px) {
	.eas-header__inner {
		min-height: 82px;
	}

	.eas-brand__mark {
		width: 40px;
		height: 48px;
	}

	.eas-brand__mark svg {
		width: 35px;
	}

	.eas-brand b {
		font-size: 19px;
	}

	.eas-brand small {
		font-size: 11px;
	}

	.eas-button--small {
		padding-inline: 24px;
	}

	.eas-hero {
		min-height: 700px;
		padding: 86px 0 90px;
	}

	.eas-hero__grid {
		grid-template-columns: minmax(0, 1.02fr) minmax(460px, .98fr);
		align-items: center;
		gap: 55px;
	}

	.eas-product-stage {
		min-height: 540px;
	}

	.eas-hero__lead {
		font-size: 18px;
	}

	.eas-check-list li {
		font-size: 15px;
	}

	.eas-trust__grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 0;
	}

	.eas-trust__grid > div {
		justify-content: center;
		padding: 5px 24px;
		border-left: 1px solid var(--eas-line);
	}

	.eas-trust__grid > div:last-child {
		border-left: 0;
	}

	.eas-trust b {
		font-size: 13px;
	}

	.eas-trust small {
		font-size: 10px;
	}

	.eas-section {
		padding: 105px 0;
	}

	.eas-card-grid,
	.eas-reviews__grid {
		gap: 24px;
	}

	.eas-feature-card {
		padding: 34px;
	}

	.eas-how__grid {
		grid-template-columns: minmax(0, 1fr) minmax(0, .95fr);
		align-items: center;
		gap: 80px;
	}

	.eas-how__visual {
		min-height: 520px;
	}

	.eas-how__visual img {
		height: 450px;
	}

	.eas-order-section {
		padding: 110px 0;
	}

	.eas-order-grid {
		grid-template-columns: minmax(0, .9fr) minmax(480px, .72fr);
		align-items: center;
		gap: 85px;
	}

	.eas-footer {
		padding-bottom: 28px;
	}

	.eas-footer__inner {
		flex-direction: row;
		justify-content: space-between;
		text-align: right;
	}

	.eas-mobile-cta {
		display: none;
	}
}

@media (max-width: 420px) {
	.eas-header__inner {
		min-height: 66px;
	}

	.eas-brand small {
		display: none;
	}

	.eas-button--small {
		min-height: 39px;
		padding-inline: 14px;
	}

	.eas-hero h1 {
		font-size: 33px;
	}

	.eas-product-stage {
		min-height: 400px;
	}

	.eas-float-badge {
		font-size: 9px;
	}

	.eas-trust__grid {
		grid-template-columns: 1fr;
	}

	.eas-trust__grid > div {
		padding: 7px 4px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.eas-site *,
	.eas-site *::before,
	.eas-site *::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}
}
