/* ------------------------------------------------------------------
   PayItMonthly Demo Store — tokens from the Figma "Website" library
   ------------------------------------------------------------------ */
:root {
	--purple: #875FC8;
	--purple-700: #604291;
	--purple-800: #4C2F7A;
	--navy: #160041;
	--black: #06080E;
	--grey-90: #333851;
	--grey-70: #515671;
	--grey-60: #656985;
	--grey-50: #8D91AF;
	--grey-30: #D1D5F5;
	--grey-20: #E2E5FF;
	--grey-10: #ECEFFF;
	--bg-grey: #F1F3FA;
	--lavender: #EDECFB;
	--off-white: #FBFCFD;
	--footer-bg: #F6F7F9;
	--lilac-text: #E1D6FF;
	--body-text: #464A63;
	--banner-text: #3F4149;

	--font-display: "General Sans", "General Sans Variable", system-ui, sans-serif;
	--font-body: "Hind", system-ui, sans-serif;

	--shadow-3d: 0 30px 50px -40px rgba(0, 0, 0, 0.08), 0 50px 90px -30px rgba(0, 0, 0, 0.05);
	--container: 1428px;
	--container-narrow: 1352px;
	--gutter: 24px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.5;
	color: var(--black);
	background: #fff;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

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

a:focus-visible,
button:focus-visible {
	outline: 3px solid var(--purple);
	outline-offset: 2px;
}

h1,
h2,
h3,
h4 {
	margin: 0;
	font-family: var(--font-display);
	font-weight: 500;
}

.container {
	width: min(100% - (var(--gutter) * 2), var(--container));
	margin-inline: auto;
}

.container--narrow {
	width: min(100% - (var(--gutter) * 2), var(--container-narrow));
	margin-inline: auto;
}

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

.skip-link:focus {
	position: fixed !important;
	top: 12px;
	left: 12px;
	z-index: 1000;
	width: auto;
	height: auto;
	margin: 0;
	padding: 12px 20px;
	clip: auto;
	background: var(--black);
	color: #fff;
	border-radius: 56px;
}

/* ---------------------------------------------------------------- Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	height: 56px;
	padding: 0 32px;
	border-radius: 56px;
	border: 1px solid transparent;
	font-family: var(--font-display);
	font-size: 20px;
	font-weight: 500;
	line-height: 27px;
	letter-spacing: 0.2px;
	white-space: nowrap;
	cursor: pointer;
	transition: transform 0.15s ease, background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
	transform: translateY(-1px);
}

.btn img {
	width: 20px;
	height: 20px;
	flex: none;
}

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

.btn--black:hover {
	background: #1b1e2c;
}

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

.btn--white:hover {
	background: var(--grey-10);
}

.btn--outline {
	border-color: var(--grey-90);
	color: var(--grey-90);
	background: transparent;
}

.btn--outline:hover {
	background: rgba(51, 56, 81, 0.06);
}

.btn--outline-black {
	border-color: var(--black);
	color: var(--black);
	background: transparent;
}

.btn--outline-black:hover {
	background: rgba(6, 8, 14, 0.06);
}

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

.btn--navy:hover {
	background: #24105e;
}

.btn--slate {
	background: var(--grey-90);
	color: #fff;
}

.btn--slate:hover {
	background: #42486a;
}

.btn--sm {
	height: auto;
	padding: 12px 19px;
	border-radius: 100px;
	font-size: 16px;
	line-height: 22px;
	filter: drop-shadow(0 2px 1px rgba(0, 0, 0, 0.06));
}

.btn-row {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.btn-row--center {
	justify-content: center;
	gap: 12px;
}

/* ----------------------------------------------------------------- Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.03);
}

.site-header__inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	width: min(100% - (var(--gutter) * 2), var(--container-narrow));
	margin-inline: auto;
	padding: 20px 0 16px;
}

.site-header__logo img {
	width: 211px;
	height: 40px;
}

.site-nav__list {
	display: flex;
	align-items: center;
	gap: clamp(28px, 4.4vw, 76px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav__list a {
	font-family: var(--font-body);
	font-size: 18px;
	font-weight: 500;
	line-height: 28px;
	color: var(--black);
	white-space: nowrap;
}

.site-nav__list a:hover,
.site-nav__list .current-menu-item > a {
	color: var(--purple-700);
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--bg-grey);
	border: 1px solid var(--grey-20);
	border-radius: 50px;
}

.site-header__icon-btn {
	position: relative;
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	transition: transform 0.15s ease;
}

.site-header__icon-btn:hover {
	transform: translateY(-1px);
}

.site-header__icon-btn img {
	width: 24px;
	height: 24px;
}

.site-header__icon-btn--account {
	background: var(--bg-grey);
	border: 1px solid var(--grey-20);
}

.site-header__icon-btn--cart {
	background: var(--purple);
	border: 1px solid var(--grey-20);
	box-shadow: var(--shadow-3d);
}

.pim-cart-count {
	position: absolute;
	top: -4px;
	right: -4px;
	min-width: 20px;
	height: 20px;
	padding: 0 6px;
	border-radius: 10px;
	background: var(--black);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	line-height: 20px;
	text-align: center;
}

.pim-cart-count.is-empty {
	display: none;
}

.site-nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 52px;
	height: 52px;
	padding: 0 14px;
	border: 1px solid var(--grey-20);
	border-radius: 50%;
	background: #fff;
	cursor: pointer;
}

.site-nav-toggle span {
	display: block;
	height: 2px;
	border-radius: 2px;
	background: var(--black);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-open .site-nav-toggle span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .site-nav-toggle span:nth-child(2) {
	opacity: 0;
}

.site-header.is-open .site-nav-toggle span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ------------------------------------------------------------------- Hero */
.hero {
	position: relative;
	overflow: hidden;
	background: var(--lavender);
}

.hero__inner {
	position: relative;
	width: min(100% - (var(--gutter) * 2), var(--container));
	margin-inline: auto;
	min-height: 940px;
	padding: 195px 0 120px;
}

.hero__text {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 42px;
	max-width: 726px;
}

.hero__copy {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.hero__eyebrow {
	margin: 0;
	font-family: var(--font-body);
	font-size: 22px;
	font-weight: 700;
	line-height: 29px;
	text-transform: uppercase;
	color: var(--purple-700);
}

.hero__title {
	font-family: var(--font-display);
	font-size: clamp(38px, 3.25vw, 56px);
	font-weight: 400;
	line-height: 1.29;
	letter-spacing: 0.2px;
	color: var(--black);
}

.hero__title span {
	display: block;
	color: var(--purple-700);
}

.hero__lede {
	margin: 0;
	max-width: 487px;
	font-size: 22px;
	line-height: 29px;
	color: var(--body-text);
}

.hero__stickies {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin: 53px 0 0;
	padding: 0;
	list-style: none;
}

.hero__stickies li {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 181px;
	height: 78px;
	padding: 16px;
	border-radius: 16px;
	background: rgba(135, 95, 200, 0.15);
	border: 1px solid rgba(96, 66, 145, 0.35);
	font-size: 16px;
	font-weight: 500;
	line-height: 20px;
	color: var(--purple-700);
}

.hero__stickies img {
	/* 4x PNG exports include the tile's drop shadow: the 56px image holds a 43px tile
	   offset 6.5px/4.5px from its top-left. Negative margins make the tile the layout box. */
	width: 56px;
	height: 56px;
	margin: -4px -7px -9px -6px;
	flex: none;
}

.hero__visual {
	position: absolute;
	top: -89px;
	left: 36.8%;
	width: 71.3%;
	z-index: 1;
	pointer-events: none;
}

.hero__visual img {
	width: 100%;
	height: auto;
}

/* Purple variant (Figma "BS 1") */
.hero--purple {
	background: var(--purple);
}

.hero--purple .hero__eyebrow,
.hero--purple .hero__title span {
	color: var(--lilac-text);
}

.hero--purple .hero__title {
	color: #fff;
}

.hero--purple .hero__lede {
	color: var(--grey-10);
}

.hero--purple .hero__stickies li {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.35);
	color: var(--lilac-text);
}

/* --------------------------------------------------------------- Products */
.products-section {
	position: relative;
	z-index: 2;
	margin-top: -59px;
	padding: 130px 0 190px;
	background: var(--off-white);
	border-radius: 60px 60px 0 0;
}

.section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 35px;
}

.section-title {
	font-size: clamp(32px, 2.9vw, 50px);
	line-height: 1.2;
	letter-spacing: 0.2px;
	color: var(--black);
}

.section-empty {
	font-size: 18px;
	color: var(--grey-60);
}

.pim-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 75px 15px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.pim-card {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin: 0;
	padding: 26px 26px 30px;
	background: #fff;
	border: 1px solid var(--grey-20);
	border-radius: 26px;
	box-shadow: var(--shadow-3d);
	overflow: hidden;
	list-style: none;
}

.pim-card__media {
	display: block;
	aspect-ratio: 293 / 350;
	margin-bottom: 10px;
	border-radius: 16px;
	overflow: hidden;
	background: var(--bg-grey);
}

.pim-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pim-card__body {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.pim-card__title {
	font-family: var(--font-body);
	font-size: 20px;
	font-weight: 500;
	line-height: 1.3;
	color: var(--black);
}

.pim-card__title a:hover {
	color: var(--purple-700);
}

.pim-card__price-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}

.pim-card__price,
.pim-card__price .woocommerce-Price-amount {
	font-family: var(--font-display);
	font-size: 24px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0.2px;
	color: var(--black);
}

.pim-card__price del,
.pim-card__price del .woocommerce-Price-amount {
	font-size: 16px;
	color: var(--grey-50);
	margin-right: 6px;
}

.pim-card__price ins {
	text-decoration: none;
}

.pim-card__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-display);
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	color: var(--purple-800);
	white-space: nowrap;
}

.pim-card__link:hover {
	color: var(--purple);
}

.pim-card__link img {
	width: 20px;
	height: 20px;
}

.pim-card__finance {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding-top: 20px;
	border-top: 1px solid var(--grey-20);
}

.pim-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 1 154px;
	min-width: 132px;
	width: 154px;
	height: 49px;
	border-radius: 10px;
	background: var(--purple);
	border: 3px solid rgba(255, 255, 255, 0.05);
	box-shadow: 0 1.55px 1.55px rgba(0, 0, 0, 0.06);
}

.pim-badge img {
	width: 118px;
	height: 22px;
}

.pim-card__finance-text {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	flex: none;
	text-align: right;
	white-space: nowrap;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.25;
	color: var(--grey-50);
}

.pim-card__finance-text strong {
	font-size: 16px;
	font-weight: 500;
}

/* ----------------------------------------------------------------- Banner */
.banner {
	position: relative;
	overflow: hidden;
	background: var(--lavender) url("../img/banner-pattern.svg") center / cover no-repeat;
}

.banner__inner {
	position: relative;
	width: min(100% - (var(--gutter) * 2), var(--container));
	min-height: 425px;
	margin-inline: auto;
}

.banner__logo {
	position: absolute;
	top: -22px;
	left: -2px;
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	width: 292px;
	height: 137px;
	padding-top: 64px;
	border-radius: 20px;
	background: var(--purple-700);
	box-shadow: 0 13.75px 110px rgba(171, 143, 216, 0.06);
}

.banner__logo img {
	width: 227px;
	height: 44px;
}

.banner__glow {
	position: absolute;
	top: 99px;
	left: -42px;
	width: 583px;
	height: 194px;
	border-radius: 57px;
	background: rgba(237, 236, 251, 0.66);
	pointer-events: none;
}

/* Wide translucent strip behind the Trustpilot badge; hangs off the right edge and is clipped by .banner. */
.banner__band {
	position: absolute;
	top: 17px;
	left: calc(100% - 596px);
	width: 1187px;
	height: 88px;
	border-radius: 57px;
	background: rgba(237, 236, 251, 0.66);
	pointer-events: none;
}

.banner__title {
	position: relative;
	z-index: 1;
	max-width: 648px;
	padding-top: 144px;
	font-size: clamp(30px, 2.9vw, 50px);
	font-weight: 500;
	letter-spacing: 0.2px;
	line-height: 1.35;
	color: var(--banner-text);
}

.banner__title span {
	display: block;
	font-size: 0.96em;
	font-weight: 400;
}

.banner__cta {
	position: relative;
	z-index: 1;
	margin: 38px 0 55px;
}

.banner__calendar {
	position: absolute;
	top: 18px;
	left: 40.5%;
	width: 45.75%;
	max-width: 654px;
	transform: rotate(11.04deg);
	pointer-events: none;
	z-index: 0;
}

.banner__trust {
	position: absolute;
	top: 42px;
	right: -15px;
	z-index: 2;
	display: flex;
	align-items: flex-start;
	gap: 18px;
	height: 63px;
	padding: 4px 16px 0 30px;
	border-radius: 57px;
	background: rgba(237, 236, 251, 0.66);
}

.banner__trust img {
	width: auto;
}

.banner__trust img:first-child {
	height: 40px;
}

.banner__trust img:last-child {
	height: 31px;
	margin-top: 7px;
}

/* ------------------------------------------------------- WooCommerce promo */
.woo-section {
	padding: 136px 0;
	background: var(--bg-grey);
	border-top: 1px solid var(--grey-20);
	border-bottom: 1px solid var(--grey-20);
}

.woo-card {
	display: flex;
	align-items: center;
	gap: 52px;
	padding: 52px 60px;
	background: #fff;
	border: 1px solid #D9E8CE;
	border-radius: 30px;
	box-shadow: var(--shadow-3d);
}

.woo-card__visual {
	flex: 1 1 0;
	min-width: 0;
	aspect-ratio: 630 / 556;
	border-radius: 22px;
	overflow: hidden;
	background: var(--purple-700);
}

.woo-card__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.woo-card__content {
	flex: 1 1 0;
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 38px;
	padding: 32px 46px 32px 36px;
}

.woo-card__logo {
	width: 133px;
	height: 35px;
}

.woo-card__title {
	font-size: clamp(28px, 2.1vw, 36px);
	line-height: 1.39;
	letter-spacing: 0.2px;
	color: var(--black);
}

.woo-card__text {
	margin: 20px 0 0;
	max-width: 512px;
	font-size: 22px;
	line-height: 28px;
	color: var(--grey-70);
}

/* ------------------------------------------------------------ How it works */
.how-section {
	padding: 126px 0;
	background: #fff;
}

.how__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 60px;
}

.how__text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 38px;
	max-width: 648px;
}

.how__title {
	font-size: clamp(30px, 2.6vw, 45px);
	font-weight: 400;
	line-height: 1.35;
	letter-spacing: 0.2px;
	color: var(--black);
}

.how__title strong {
	font-weight: 500;
}

.how__lede {
	margin: 20px 0 0;
	max-width: 560px;
	font-size: 22px;
	line-height: 28px;
	color: var(--grey-70);
}

.how__card {
	flex: none;
	width: min(668px, 100%);
	aspect-ratio: 668 / 636;
	border-radius: 38px;
	border: 1px solid var(--grey-20);
	background: var(--bg-grey);
	overflow: hidden;
}

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

/* ------------------------------------------------------------- Partner CTA */
.cta-section {
	position: relative;
	overflow: hidden;
	padding: 110px 0;
	background: var(--lavender);
}

.cta-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url("../img/cta-pattern.svg") center / cover no-repeat;
	pointer-events: none;
}

.cta__inner {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 42px;
	text-align: center;
}

.cta__icon {
	width: 57px;
	height: 57px;
}

.cta__title {
	font-size: clamp(30px, 2.7vw, 46px);
	line-height: 1.35;
	letter-spacing: 0.2px;
	color: var(--black);
}

.cta__text {
	margin: 20px 0 0;
	font-size: 22px;
	line-height: 28px;
	color: var(--body-text);
}

/* ----------------------------------------------------------------- Footer */
.site-footer {
	padding: 80px 0 60px;
	background: var(--footer-bg);
}

.site-footer__inner {
	display: flex;
	flex-direction: column;
	gap: 36px;
	width: min(100% - (var(--gutter) * 2), var(--container-narrow));
	margin-inline: auto;
}

.site-footer__top {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 40px;
}

.site-footer__brand {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.site-footer__brand img {
	width: 208px;
	height: 39px;
}

.site-footer__contact {
	display: flex;
	gap: 11px;
	margin: 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 26px;
}

.site-footer__contact span {
	color: var(--grey-60);
}

.site-footer__contact a {
	color: var(--black);
}

.site-footer__cols {
	display: flex;
	gap: 14px;
	width: 467px;
	max-width: 100%;
}

.site-footer__col {
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	gap: 14.5px;
}

.site-footer__col h4 {
	font-family: "Rethink Sans", var(--font-body);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--black);
}

.site-footer__col ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 14px;
	line-height: 22px;
	color: var(--black);
}

.site-footer__col a:hover {
	color: var(--purple-700);
}

.site-footer__divider {
	height: 1px;
	background: var(--grey-30);
}

.site-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 40px;
}

.site-footer__legal {
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-width: 756px;
	font-family: "Public Sans", var(--font-body);
	font-size: 14px;
	line-height: 18px;
	color: var(--grey-50);
}

.site-footer__legal p {
	margin: 0;
}

.site-footer__legal p:first-child {
	color: var(--grey-60);
}

.site-footer__legal a {
	text-decoration: underline;
}

.site-footer__social {
	display: flex;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__social img {
	width: 24px;
	height: 24px;
}

/* ------------------------------------------------------------- Inner pages */
.entry {
	width: min(100% - (var(--gutter) * 2), var(--container));
	margin-inline: auto;
	padding: 60px 0 120px;
}

.entry-title {
	margin: 0 0 32px;
	font-size: clamp(32px, 2.9vw, 50px);
	line-height: 1.2;
	letter-spacing: 0.2px;
}

.entry-content {
	font-size: 18px;
	line-height: 1.6;
	color: var(--grey-70);
}

.entry-content a {
	text-decoration: underline;
}

/* -------------------------------------------------------------- Responsive */
@media (max-width: 1279px) {
	.hero__inner {
		min-height: 0;
		padding-top: 150px;
	}

	.hero__visual {
		top: -40px;
		left: 42%;
		width: 70%;
	}

	.how__card {
		width: min(560px, 100%);
	}
}

@media (max-width: 1023px) {
	.site-nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		padding: 16px var(--gutter) 24px;
		background: #fff;
		box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
	}

	.site-header.is-open .site-nav {
		display: block;
	}

	.site-nav__list {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.site-nav-toggle {
		display: flex;
	}

	.hero__inner {
		padding: 72px 0 0;
	}

	.hero__text {
		max-width: none;
	}

	.hero__visual {
		position: relative;
		top: 0;
		left: 0;
		width: auto;
		height: clamp(360px, 62vw, 620px);
		margin: 24px 0 0;
		overflow: hidden;
	}

	.hero__visual img {
		width: 125%;
		max-width: none;
		margin-left: -14%;
		margin-top: 0;
	}

	.products-section {
		padding: 90px 0 120px;
		border-radius: 40px 40px 0 0;
	}

	.pim-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 40px 15px;
	}

	.banner__inner {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		min-height: 0;
		padding: 0 0 56px;
	}

	.banner__logo {
		position: relative;
		top: 0;
		left: 0;
		height: 110px;
		margin-top: -22px;
		padding-top: 44px;
	}

	.banner__glow,
	.banner__band {
		display: none;
	}

	.banner__title {
		padding-top: 40px;
	}

	.banner__cta {
		margin: 32px 0 0;
	}

	.banner__calendar {
		position: absolute;
		top: auto;
		bottom: -40%;
		left: auto;
		right: -10%;
		width: 55%;
		opacity: 0.5;
	}

	.banner__trust {
		position: relative;
		top: 0;
		right: 0;
		align-items: center;
		gap: 14px;
		margin-top: 32px;
		padding: 0 26px;
	}

	.banner__trust img:last-child {
		margin-top: 0;
	}

	.woo-section {
		padding: 80px 0;
	}

	.woo-card {
		flex-direction: column;
		align-items: stretch;
		gap: 32px;
		padding: 32px;
	}

	.woo-card__content {
		padding: 0;
	}

	.how-section {
		padding: 80px 0;
	}

	.how__inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.how__card {
		width: 100%;
	}

	.cta-section {
		padding: 80px 0;
	}

	.site-footer__cols {
		width: 100%;
	}
}

@media (max-width: 599px) {
	.site-header__logo img {
		width: 158px;
		height: 30px;
	}

	.site-header__actions {
		gap: 6px;
	}

	.site-header__icon-btn,
	.site-nav-toggle {
		width: 44px;
		height: 44px;
	}

	.hero__lede {
		font-size: 18px;
		line-height: 26px;
	}

	.hero__stickies {
		gap: 12px;
		margin-top: 32px;
	}

	.hero__stickies li {
		width: calc(50% - 6px);
	}

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

	.section-head {
		flex-direction: column;
		align-items: flex-start;
	}

	.btn:not(.btn--sm) {
		font-size: 18px;
		padding: 0 24px;
	}

	.banner__logo {
		width: 240px;
	}

	.banner__trust {
		flex-wrap: wrap;
		height: auto;
		max-width: 100%;
		padding: 10px 18px;
	}

	.banner__trust img:first-child {
		height: 32px;
	}

	.banner__trust img:last-child {
		height: 24px;
	}

	.banner__logo img {
		width: 186px;
		height: 36px;
	}

	.woo-card__text,
	.how__lede,
	.cta__text {
		font-size: 18px;
		line-height: 26px;
	}

	.site-footer {
		padding: 56px 0 40px;
	}
}
