/**
 * Landing page (template-landing.php).
 *
 * A port of the original Elementor build at l.web36t.com/landing-page. Values
 * that the original set explicitly — hero type scale, the 100vh hero, the 0.6
 * navy overlay, the 10px media radius — are reproduced here; everything else is
 * built from the shared tokens so the page stays in the site's design system
 * rather than drifting into a second one.
 *
 * All sections are laid out inside .container, so they inherit the page gutter
 * (see the .container comment in base.css) and never need their own.
 */

:root {
	/* Pale blue used for the "How It Works" panels and the help-tile icons. */
	--lp-panel: #EEF4F9;
	--lp-panel-border: #DCE7EF;

	/* Case-review form field height. Single knob — the inputs, the select and
	   their text centring all derive from it, so nudging this stays consistent. */
	--lp-field-height: 52px;
}

/* ---------------------------------------------------------------- Hero -- */

.lp-hero {
	position: relative;
	background-color: var(--plf-color-secondary);
	background-position: center right;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 80px 0;
	min-height: 100vh;
	display: flex;
	align-items: center;
}

/* Navy wash at the original's 0.6 opacity: the abstract art stays visible
   behind the headline without competing with the form. */
.lp-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: var(--plf-color-secondary);
	opacity: 0.6;
}

/* 55/45 with a 60px gutter, straight from the original's column widths. */
.lp-hero__row {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: stretch;
	gap: 60px;
}

/* 55/45 bases that shrink against the 60px gap, which is what Elementor's
   flex container does — hard-coding one side to calc(45% - 60px) instead would
   leave the left column ~33px wider than the original. */
.lp-hero__left {
	flex: 0 1 55%;
	min-width: 0;
	padding-top: 10px;
}

.lp-hero__right {
	flex: 0 1 45%;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 20px 0 20px 20px;
}

.lp-hero__title {
	font-family: var(--plf-font-display);
	font-size: 50px;
	font-weight: 900;
	line-height: 1.1em;
	text-transform: uppercase;
	color: var(--plf-color-accent);
	margin: 0 0 18px;
}

.lp-hero__subtitle {
	font-family: var(--plf-font-display);
	font-size: 32px;
	font-weight: 900;
	line-height: 1.1em;
	text-transform: none;
	color: var(--plf-color-accent);
	margin: 0 0 26px;
}

.lp-hero__subtitle .highlight {
	color: var(--plf-color-yellow);
}

/* --- Inline video ------------------------------------------------------- */

/* The iframe sits underneath; the poster and play button cover it until the
   click handler in app.js removes them (initInlineVideos). Sizing comes from
   the 16:9 ratio so the box doesn't jump when the poster is pulled out. */
.lp-hero__media {
	position: relative;
	aspect-ratio: 16 / 9;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 26px;
	background: #000;
}

.lp-hero__video,
.lp-hero__poster {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.lp-hero__poster img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.lp-hero__play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 50px;
	height: 50px;
	border: none;
	border-radius: 50%;
	background: var(--plf-color-primary);
	color: #fff;
	font-size: 18px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: transform 0.2s, background-color 0.2s;
}

/* The original's "glow ripple" — a pulsing ring rather than a static button. */
.lp-hero__play::after {
	content: "";
	position: absolute;
	inset: -8px;
	border-radius: 50%;
	background: var(--plf-color-primary);
	opacity: 0.45;
	z-index: -1;
	animation: lp-ripple 1.8s ease-out infinite;
}

@keyframes lp-ripple {
	0%   { transform: scale(0.85); opacity: 0.55; }
	70%  { transform: scale(1.35); opacity: 0; }
	100% { transform: scale(1.35); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
	.lp-hero__play::after {
		animation: none;
	}
}

.lp-hero__play:hover {
	background: var(--plf-color-secondary);
	transform: translate(-50%, -50%) scale(1.08);
}

/* --- Ruled label + badge strip ------------------------------------------ */

/* "RECOGNIZED. TRUSTED. TOP-RATED." is a rule with the label knocked out of the
   middle — a 1px white line running to both edges, as in the original divider. */
.lp-hero__rule {
	display: flex;
	align-items: center;
	gap: 14px;
	font-family: var(--plf-font-body);
	font-size: 14px;
	font-weight: 200;
	letter-spacing: 0.06em;
	color: var(--plf-color-accent);
	margin: 0 0 18px;
}

.lp-hero__rule::before,
.lp-hero__rule::after {
	content: "";
	flex: 1 1 auto;
	height: 1px;
	background: var(--plf-color-accent);
}

.lp-hero__badges {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.lp-hero__badges img {
	max-height: 52px;
	width: auto;
}

/* ------------------------------------------------------- Case-review form -- */

/* Transparent panel on the hero, not a filled card: 1px white-54% border and a
   10px radius, exactly as the original. */
.lp-form {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.54);
	border-radius: 10px;
	padding: 20px;
	display: flex;
	flex-direction: column;
}

.lp-form__title {
	font-family: var(--plf-font-display);
	font-size: 30px;
	font-weight: 700;
	line-height: 1.2em;
	color: var(--plf-color-accent);
	text-align: center;
	margin: 0 0 2px;
}

.lp-form__subtitle {
	font-family: var(--plf-font-body);
	font-size: 16px;
	color: var(--plf-color-accent);
	text-align: center;
	margin: 0 0 18px;
}

/* CF7 owns the submit button, so the consent block can't be interleaved in the
   markup. Ordering the panel as a flex column and giving the legal text a lower
   order than the fields wrapper puts it back above the button, where it belongs. */
.lp-form__fields {
	order: 1;
}

.lp-form__legal {
	order: 2;
}

.lp-form__fields .wpcf7-form {
	display: flex;
	flex-direction: column;
}

.lp-form__fields .wpcf7-form > p {
	margin: 0 0 10px;
}

.lp-form__fields .wpcf7-form .mf-row {
	gap: 10px;
	margin-bottom: 10px;
}

.lp-form__fields .wpcf7-form .mf-row > p {
	margin: 0;
}

/* 16px/38px comes from the original, but it set that on top of Elementor's own
   field padding — so the box lands at 60px tall, not 38px. Stating the padding
   here reproduces that height instead of a squat 40px field. */
.lp-form__fields .wpcf7-form input[type="text"],
.lp-form__fields .wpcf7-form input[type="email"],
.lp-form__fields .wpcf7-form input[type="tel"],
.lp-form__fields .wpcf7-form select,
.lp-form__fields .wpcf7-form textarea {
	width: 100%;
	background: #fff;
	border: 1px solid transparent;
	border-radius: 5px;
	color: #000;
	font-family: var(--plf-font-body);
	font-size: 16px;
	/* Border-box minus the 1px borders, so the text sits centred without padding
	   having to fight the fixed height. */
	line-height: calc(var(--lp-field-height) - 2px);
	padding: 0 17px;
	box-shadow: none;
	appearance: none;
	-webkit-appearance: none;
}

/* Pinned rather than left to line-height, which <select> ignores — without this
   the dropdown sits ~17px shorter than the inputs beside it. With border-box the
   60px absorbs the 10px padding and 1px border, leaving exactly the 38px content
   box the original's line-height was written against. */
.lp-form__fields .wpcf7-form input[type="text"],
.lp-form__fields .wpcf7-form input[type="email"],
.lp-form__fields .wpcf7-form input[type="tel"],
.lp-form__fields .wpcf7-form select {
	height: var(--lp-field-height);
}

/* The caret the browser stops drawing once appearance is reset. Stroked rather
   than filled — a filled open path renders as a solid wedge, not a chevron. */
.lp-form__fields .wpcf7-form select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' fill='none' stroke='%231C3A59' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 18px center;
	background-size: 12px 8px;
	padding-right: 44px;
	cursor: pointer;
	text-overflow: ellipsis;
}

/* The open option list is drawn by the OS, not the page, so only these few
   properties actually reach it — enough to carry the site's font and navy
   instead of falling back to the system UI font. The selection highlight is
   the OS accent colour and cannot be restyled on a native <select>. */
.lp-form__fields .wpcf7-form select option {
	background-color: #fff;
	color: #000;
	font-family: var(--plf-font-body);
	font-size: 16px;
	padding: 10px 17px;
}

.lp-form__fields .wpcf7-form textarea {
	line-height: 1.5em;
	padding: 12px 17px;
	min-height: 150px;
	resize: vertical;
}

/* The original's placeholders read near-black, not the browser's default grey —
   Elementor renders them as the field colour knocked back slightly, so they match
   the #000 text rather than sitting in a lighter grey. */
.lp-form__fields .wpcf7-form ::placeholder {
	color: #000;
	opacity: 0.85;
}

.lp-form__fields .wpcf7-form input:focus,
.lp-form__fields .wpcf7-form select:focus,
.lp-form__fields .wpcf7-form textarea:focus {
	outline: none;
	border-color: var(--plf-color-primary);
}

/* Submit sits last in the panel and spans it, with the arrow trailing the label
   (the original flipped the button's content direction to get the same order). */
.lp-form__fields .wpcf7-form > p:last-of-type {
	order: 3;
	margin: 0;
}

.lp-form__fields .wpcf7-form input[type="submit"],
.lp-form__fields .wpcf7-submit {
	width: 100%;
	background: var(--plf-color-primary);
	color: #fff;
	font-family: var(--plf-font-body);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border: none;
	border-radius: 2px;
	padding: 16px 25px;
	cursor: pointer;
	transition: background-color 0.3s;
}

.lp-form__fields .wpcf7-form input[type="submit"]:hover,
.lp-form__fields .wpcf7-submit:hover {
	background: var(--plf-color-accent);
	color: var(--plf-color-secondary);
}

.lp-form__consent,
.lp-form__terms {
	font-family: var(--plf-font-body);
	font-size: 13px;
	line-height: 17px;
	color: var(--plf-color-accent);
	margin: 0 0 10px;
}

/* ---------------------------------------------------------- Intro cards -- */

.lp-intro {
	background: var(--plf-color-bg-cream);
	padding: 70px 0;
}

.lp-intro__head,
.lp-results__head,
.lp-help__head,
.lp-steps__head,
.lp-team__head,
.lp-testimonials__head {
	max-width: 760px;
	margin: 0 auto 40px;
	text-align: center;
}

/* Every section description is the original's one global "text" style: Outfit
   400, 18px/1.4em, #4B535D — which the theme already carries as body tokens.
   16px is that global's MOBILE override, not the desktop size. */
.lp-intro__body,
.lp-results__body,
.lp-help__body,
.lp-steps__body,
.lp-team__body,
.lp-testimonials__body {
	font-family: var(--plf-font-body);
	font-size: var(--plf-body-size);
	font-weight: 400;
	line-height: var(--plf-body-line-height);
	color: var(--plf-color-text-black);
	margin: 0;
}

.lp-intro__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

/* Transparent, not white — the original's card background is #D1B06B00, i.e.
   fully clear, so the cream section shows through. Square corners, and the
   border is the same #90909073 the theme already carries as --plf-color-border. */
.lp-intro__card {
	background: transparent;
	border: 1px solid var(--plf-color-border);
	border-radius: 0;
	padding: 20px;
	text-align: center;
}

/* No circular chip behind the glyph in the original — just a 50px line icon. */
.lp-intro__card-icon {
	display: block;
	color: var(--plf-color-primary);
	font-size: 50px;
	line-height: 1;
	margin-bottom: 18px;
}

.lp-intro__card h3 {
	font-family: var(--plf-font-display);
	font-size: var(--plf-h4-size);
	font-weight: 700;
	line-height: 1.3em;
	text-transform: capitalize;
	color: var(--plf-color-primary);
	margin: 0 0 10px;
}

.lp-intro__card p {
	font-family: var(--plf-font-body);
	font-size: var(--plf-body-size);
	font-weight: 400;
	line-height: var(--plf-body-line-height);
	color: var(--plf-color-text-black);
	margin: 0;
}

/* --------------------------------------------------------- Real results -- */

.lp-results {
	padding: 70px 0;
}

.lp-results__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

/* Every value here is the original's: 420px tall, 10px radius, a heavy soft
   shadow, and the photo offset -31px/-49px so the group is framed the same way
   on each card. Content is bottom-anchored and centred. */
.lp-result {
	position: relative;
	min-height: 420px;
	border-radius: 10px;
	box-shadow: 0 0 14px 1px rgba(0, 0, 0, 0.5);
	background-color: var(--plf-color-secondary);
	background-position: -31px -49px;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 20px;
	overflow: hidden;
	text-align: center;
}

/* The navy wash is a gradient layer over the photo, not a background on the
   copy block — it starts at 30% alpha just under half way and is solid by 70%. */
.lp-result::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: linear-gradient(180deg, #1D3A5A4D 43%, #1D3A5A 70%);
}

.lp-result__body {
	position: relative;
	width: 100%;
}

/* Typography below is the original's computed values, measured off the live
   page rather than read out of its stylesheet — the CSS declares 1.063rem for
   the name, but what actually renders is 16px/22px. */
.lp-result__name {
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 22px;
	text-transform: uppercase;
	color: var(--plf-color-yellow);
	margin: 0 0 6px;
}

.lp-result__title {
	font-family: var(--plf-font-body);
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	letter-spacing: 0.9px;
	text-transform: uppercase;
	color: var(--plf-color-accent);
	margin: 0;
	padding-bottom: 16px;
}

.lp-result__figures {
	display: flex;
	justify-content: center;
	gap: 0;
}

/* Fixed 130px columns rather than a 50/50 split, so the gold rule between them
   lands in the same place on every card regardless of label length. */
.lp-result__figure {
	flex: 0 0 auto;
	width: 130px;
	padding-bottom: 10px;
}

.lp-result__figure--to {
	border-left: 1px solid #D6B239;
}

.lp-result__amount {
	display: block;
	font-family: var(--plf-font-body);
	font-size: 18px;
	font-weight: 600;
	line-height: 18px;
	color: var(--plf-color-accent);
	margin-bottom: 8px;
}

.lp-result__figure--to .lp-result__amount {
	color: var(--plf-color-yellow);
}

.lp-result__label {
	display: block;
	font-family: var(--plf-font-body);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4em;
	color: var(--plf-color-accent);
}

.lp-results__ctas {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-top: 40px;
}

/* ------------------------------------------------------ Ways we can help -- */

.lp-help {
	background: var(--plf-color-bg-cream);
	padding: 70px 0;
}

.lp-help__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.lp-help__tile {
	background: #fff;
	border: 1px solid var(--plf-color-border);
	border-radius: 10px;
	padding: 20px;
	text-align: center;
	text-decoration: none;
	display: block;
	transition: border-color 0.3s, transform 0.3s;
}

a.lp-help__tile:hover {
	border-color: var(--plf-color-primary);
	transform: translateY(-3px);
}

/* The pale blue circle is painted into the artwork itself — it is not a chip
   behind the icon. The original sizes the figure at 55% of the tile and styles
   nothing else, so the PNG's own transparent margin supplies the gap to the
   title. Boxing it into a fixed 72px circle shrinks the illustration to a
   fraction of its intended size. */
.lp-help__tile-icon {
	display: block;
	width: 55%;
	margin: 0 auto;
}

.lp-help__tile-icon img {
	width: 100%;
	height: auto;
	display: block;
}

.lp-help__tile h3 {
	font-family: var(--plf-font-display);
	font-size: var(--plf-h4-size);
	font-weight: 700;
	line-height: 1.3em;
	text-transform: capitalize;
	color: var(--plf-color-primary);
	margin: 0;
}

/* --------------------------------------------------------- How it works -- */

.lp-steps {
	padding: 70px 0;
}

.lp-steps__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

/* A bordered, white row — not a filled panel. The pale blue belongs to the
   artwork on the left, which is why the row itself carries no background. */
.lp-step {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	gap: 0;
	background: transparent;
	border: 1px solid var(--plf-color-border);
	border-radius: 10px;
	padding: 0;
	overflow: hidden;
}

.lp-step--reversed {
	flex-direction: row-reverse;
}

.lp-step__media,
.lp-step__content {
	flex: 1 1 50%;
	min-width: 0;
	min-height: 360px;
}

/* Background rather than an <img>: the composite graphic fills and crops with
   the column the way the original does. */
.lp-step__media {
	background-color: var(--lp-panel);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.lp-step__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding-left: 50px;
	padding-right: 20px;
}

/* A pill, not a fixed circle — the original pads 5px/15px and rounds to 100%,
   so a two-digit step would widen rather than clip. */
.lp-step__number {
	display: inline-block;
	background: var(--plf-color-primary);
	color: var(--plf-color-accent);
	font-family: var(--plf-font-body);
	font-size: 24px;
	line-height: 1.3em;
	padding: 5px 15px;
	border-radius: 100%;
	margin-bottom: 20px;
}

.lp-step__title {
	font-family: var(--plf-font-display);
	font-size: var(--plf-h3-size);
	font-weight: 700;
	line-height: 1.3em;
	text-transform: capitalize;
	color: var(--plf-color-secondary);
	margin: 0 0 12px;
}

.lp-step__text {
	font-family: var(--plf-font-body);
	font-size: var(--plf-body-size);
	line-height: var(--plf-body-line-height);
	color: var(--plf-color-text-black);
	margin: 0 0 20px;
}

/* ----------------------------------------------------------- CTA banner -- */

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

/* #212121 under a backdrop photo, then a 59% navy wash on top — three layers,
   which is why the papers/scales art stays faintly readable behind the copy. */
.lp-cta__panel {
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: stretch;
	gap: 50px;
	min-height: 447px;
	border-radius: 10px;
	padding: 2em 3em;
	background-color: #212121;
	background-position: center left;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
}

.lp-cta__panel::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: var(--plf-color-secondary);
	opacity: 0.59;
}

.lp-cta__content {
	position: relative;
	flex: 0 1 55%;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.lp-cta__heading {
	font-family: var(--plf-font-display);
	font-size: var(--plf-h1-h2-size);
	font-weight: var(--plf-h1-h2-weight);
	line-height: var(--plf-h1-h2-line-height);
	text-transform: capitalize;
	color: var(--plf-color-accent);
	margin: 0 0 16px;
}

.lp-cta__heading .highlight {
	color: var(--plf-color-primary);
}

.lp-cta__body {
	font-family: var(--plf-font-body);
	font-size: var(--plf-body-size);
	line-height: var(--plf-body-line-height);
	color: var(--plf-color-accent);
	margin: 0 0 24px;
}

/* The button is inline-flex, so without this it stretches to the column width
   in a flex-column parent. */
.lp-cta__content .btn {
	align-self: flex-start;
}

/* Background rather than an <img>, so the photo crops to the column instead of
   dictating its height. */
.lp-cta__media {
	position: relative;
	flex: 0 1 45%;
	min-width: 0;
	border-radius: 10px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

/* ------------------------------------------------- Team & testimonials -- */

/*
 * Both grids reuse the homepage card design — .home-team__* and
 * .home-testimonials__*, styled in home.css, which is enqueued on this template
 * for exactly that reason (see functions-enqueue.php). Nothing about the cards
 * is restyled here; duplicating them would mean two card designs drifting apart.
 *
 * Only the section heads differ from the homepage: centred heading + copy in
 * place of its two-column intro.
 */

/* Cream behind the team, white behind the reviews — the reverse of the
   homepage's rhythm, because the landing page's preceding section differs. */
.lp-team {
	background: var(--plf-color-bg-cream);
	padding: 70px 0;
}

.lp-testimonials {
	background: #fff;
	padding: 70px 0;
}

/* ---------------------------------------------------------- Tablet -- */

@media (max-width: 1024px) {
	.lp-hero {
		min-height: 0;
		padding: 60px 0;
	}

	.lp-hero__row {
		flex-direction: column;
		gap: 40px;
	}

	.lp-hero__left,
	.lp-hero__right {
		flex: 1 1 100%;
		width: 100%;
		padding: 0;
	}

	.lp-hero__title {
		font-size: 40px;
	}

	.lp-hero__subtitle {
		font-size: 27px;
	}

	/* The team and testimonial grids are home.css's responsibility now — it
	   already handles their breakpoints. */
	.lp-intro__grid,
	.lp-results__grid,
	.lp-help__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	/* Stacked: the artwork becomes a shorter banner above the copy, and the
	   50px reading indent the two-column layout needs collapses to even padding
	   (the original drops to 20px all round at this breakpoint). */
	.lp-step,
	.lp-step--reversed {
		flex-direction: column;
		gap: 0;
	}

	.lp-step__media,
	.lp-step__content {
		flex: 1 1 100%;
		width: 100%;
	}

	.lp-step__media {
		min-height: 240px;
	}

	.lp-step__content {
		min-height: 0;
		padding: 20px;
	}

	/* Stacked, and the 447px floor is dropped so the panel sizes to its copy
	   rather than leaving a gap under it. The photo keeps a fixed band since a
	   background image has no intrinsic height to fall back on. */
	.lp-cta__panel {
		flex-direction: column;
		min-height: 0;
		gap: 30px;
		padding: 30px;
	}

	.lp-cta__content,
	.lp-cta__media {
		flex: 1 1 100%;
		width: 100%;
	}

	.lp-cta__media {
		height: 320px;
	}
}

/* ---------------------------------------------------------- Mobile -- */

@media (max-width: 767px) {
	.lp-hero {
		padding: 40px 0;
	}

	.lp-hero__title {
		font-size: 32px;
	}

	.lp-hero__subtitle {
		font-size: 23px;
	}

	.lp-hero__badges {
		justify-content: center;
		gap: 12px;
	}

	.lp-hero__badges img {
		max-height: 38px;
	}

	.lp-form {
		padding: 22px 18px;
	}

	.lp-intro,
	.lp-results,
	.lp-help,
	.lp-steps,
	.lp-testimonials {
		padding: 45px 0;
	}

	.lp-cta,
	.lp-team {
		padding: 0 0 45px;
	}

	/* The global body style steps down to 16px on phones; these carry an
	   explicit size so they need the override stated. */
	.lp-intro__body,
	.lp-results__body,
	.lp-help__body,
	.lp-steps__body,
	.lp-team__body,
	.lp-testimonials__body,
	.lp-intro__card p,
	.lp-step__text,
	.lp-cta__body {
		font-size: var(--plf-body-size-mobile);
	}

	.lp-intro__grid,
	.lp-results__grid,
	.lp-help__grid {
		grid-template-columns: 1fr;
	}

	.lp-step {
		padding: 22px 18px;
	}

	.lp-step__title {
		font-size: 24px;
	}

	.lp-results__ctas .btn {
		width: 100%;
		justify-content: center;
	}
}
