/*
Theme Name:   Restore the Day Child
Theme URI:    https://restoretheday.com
Description:  GeneratePress child theme for Restore the Day. Built by The Marketing Squad.
Author:       The Marketing Squad
Author URI:   https://themarketingsquad.com
Template:     generatepress
Version:      1.0.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  rtd-child
*/

/* =============================================
   RESET
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
ul, ol { list-style: none; padding: 0; margin: 0; }
p { margin: 0; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

/* =============================================
   BRAND TOKENS
   ============================================= */

:root {
	--rtd-blue:        #254688;
	--rtd-orange:      #ee7b44;
	--rtd-cta-blue:    #1d8bff;
	--rtd-cream:       #fafaf7;
	--rtd-dark:        #1e1e1e;
	--rtd-white:       #ffffff;

	--rtd-font:        'Poppins', sans-serif;

	--rtd-container:   1200px;
	--rtd-gutter:      80px;
	--rtd-radius-sm:   5px;
	--rtd-radius-md:   12px;
	--rtd-radius-lg:   15px;
	--rtd-radius-xl:   25px;
}

/* =============================================
   BASE TYPOGRAPHY
   ============================================= */

body {
	font-family: var(--rtd-font);
	font-size: 18px;
	line-height: 1.7;
	color: var(--rtd-dark);
	background-color: var(--rtd-white);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--rtd-font);
	font-weight: 700;
	line-height: 1.15;
	color: var(--rtd-blue);
}

h1 { font-size: clamp(2.5rem, 4vw, 4rem); }
h2 { font-size: clamp(2rem, 3vw, 3rem); }
h3 { font-size: clamp(1.5rem, 2vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
	font-size: 1.125rem;
	line-height: 1.8;
	color: var(--rtd-dark);
	margin-bottom: 1rem;
	text-wrap:balance;
}

p:last-child { margin-bottom: 0; }

/* =============================================
   CONTAINER UTILITY
   ============================================= */

.rtd-container {
	max-width: var(--rtd-container);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--rtd-gutter);
	padding-right: var(--rtd-gutter);
}

/* =============================================
   BUTTONS
   ============================================= */

.rtd-btn {
	display: inline-block;
	font-family: var(--rtd-font);
	background: var(--rtd-blue);
	color: var(--rtd-white);
	font-weight: 600;
	font-size: 0.875rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	text-align: center;
	border-radius: var(--rtd-radius-sm);
	padding: 0 28px;
	height: 55px;
	line-height: 55px;
	border: none;
	cursor: pointer;
	transition: opacity 0.2s ease, transform 0.2s ease;
	white-space: nowrap;
}

.rtd-btn:hover {
	opacity: 0.88;
	transform: translateY(-1px);
	background: var(--rtd-cta-blue);
	color: var(--rtd-white);
}

.rtd-btn-orange {
	background-color: var(--rtd-orange);
	color: var(--rtd-white);
}

.rtd-btn-blue {
	background-color: var(--rtd-cta-blue);
	color: var(--rtd-white);
}

.rtd-btn-dark-blue {
	background-color: var(--rtd-blue);
	color: var(--rtd-white);
}

.rtd-btn-white {
	background-color: var(--rtd-white);
	color: var(--rtd-orange);
}

@media screen and (max-width:768px){
	.rtd-btn{
		font-size:.65rem;
	}
}

/* =============================================
   LABEL / EYEBROW
   ============================================= */

.rtd-eyebrow {
	font-family: var(--rtd-font);
	font-size: 0.875rem;
	font-weight: 400;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--rtd-white);
}

.rtd-eyebrow-blue {
	color: var(--rtd-blue);
}

/* =============================================
   SECTION PADDING
   ============================================= */

.rtd-section {
	padding-top: 80px;
	padding-bottom: 80px;
}

.rtd-section-lg {
	padding-top: 120px;
	padding-bottom: 120px;
}

/* =============================================
   HEADER / NAVIGATION
   ============================================= */

/* GP default header — hide if using Global Element replacement */
.site-header,
#site-header {
	background-color: var(--rtd-white);
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

/* Custom GB-based header (Global Element) */
.rtd-header {
	position: sticky;
	top: 0;
	z-index: 200;
	background-color: var(--rtd-white);
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.rtd-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height:90px;
	height: 100%;
	gap: 32px;
}

/* Logo — GB element tagName:"a" with className:"rtd-header__logo" */
.rtd-header__logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	text-decoration: none;
}

.rtd-header__logo img {
	height: 25px;
	width: auto;
	display: block;
}

@media screen and (max-width:768px){
	.rtd-header__logo img{
		height:15px;
	}
}

/* -----------------------------------------------
   GB Pro Navigation (desktop)
   ----------------------------------------------- */

/* Hide hamburger toggle on desktop */
.rtd-header .gb-menu-toggle {
	display: none;
}

/* Menu container — visible inline on desktop */
.rtd-header .gb-menu-container {
	display: flex;
	align-items: center;
}

/* Classic menu ul — horizontal row */
.rtd-header .gb-classic-menu {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 4px;
}

.rtd-header .gb-classic-menu .menu-item {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Nav links */
.rtd-header .gb-classic-menu .menu-item > a {
	display: block;
	font-family: var(--rtd-font);
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--rtd-blue);
	text-decoration: none;
	padding: 8px 18px;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.rtd-header .gb-classic-menu .menu-item > a:hover,
.rtd-header .gb-classic-menu .current-menu-item > a {
	color: var(--rtd-orange);
}

/* "Let's Talk" CTA button (separate GB element) */
.rtd-header__cta {
	flex-shrink: 0;
	font-family: var(--rtd-font);
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	padding: 0 28px;
	background-color: var(--rtd-orange);
	color: var(--rtd-white) !important;
	border-radius: var(--rtd-radius-sm);
	transition: background-color 0.2s ease, transform 0.2s ease;
	white-space: nowrap;
}

.rtd-header__cta:hover {
	background-color: #d96a33;
	transform: translateY(-1px);
}

/* -----------------------------------------------
   GB Pro Navigation (mobile ≤ 768px)
   ----------------------------------------------- */
@media (max-width: 768px) {
	
	/*mobile-menu image */
	.site-logo.mobile-header-logo img{
		height:40px!important;
	}
	
	/* Show hamburger */
	.rtd-header .gb-menu-toggle {
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
		border: none;
		padding: 8px;
		cursor: pointer;
		color: var(--rtd-blue);
		width: 44px;
		height: 44px;
	}

	.rtd-header .gb-menu-toggle svg {
		width: 28px;
		height: 28px;
	}

	/* GB Pro handles the overlay visibility via JS; just reset our desktop override */
	.rtd-header .gb-menu-container {
		display: none;
	}

	.rtd-header .gb-menu-container.gb-menu-open {
		display: flex !important;
		flex-direction: column;
		position: fixed;
		inset: 0;
		background-color: var(--rtd-blue);
		z-index: 999;
		align-items: center;
		justify-content: center;
		padding: 40px 24px;
	}

	.rtd-header .gb-menu-container.gb-menu-open .gb-classic-menu {
		flex-direction: column;
		align-items: center;
		gap: 8px;
	}

	.rtd-header .gb-menu-container.gb-menu-open .menu-item > a {
		font-size: 1.5rem;
		font-weight: 600;
		color: var(--rtd-white);
		padding: 12px 24px;
	}

	.rtd-header .gb-menu-container.gb-menu-open .menu-item > a:hover {
		color: var(--rtd-orange);
	}

	/* Shrink CTA on mobile */
	.rtd-header__cta {
		height: 42px;
		padding: 0 18px;
		font-size: 0.75rem;
	}
}

/* =============================================
   HERO — HOMEPAGE
   Blue gradient background section
   ============================================= */

.rtd-hero {
	position: relative;
	overflow: hidden;
	background-color: var(--rtd-blue);
	padding-top: 160px;
	padding-bottom: 120px;
	min-height: 700px;
}

/* Dot pattern overlay — decorative, no GB block needed */
.rtd-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url('/wp-content/uploads/2026/07/RTD_Dots_Blue-1.png');
	background-repeat: repeat;
	background-size: cover;
	opacity: 1;
	pointer-events: none;
	z-index: 0;
}

.rtd-hero .rtd-container { position: relative; z-index: 1; }

.rtd-hero__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.rtd-hero__content {}

.rtd-hero__heading {
	font-size: clamp(2rem, 4vw, 4rem);
	font-weight: 700;
	line-height: 1.15;
	color: var(--rtd-white);
	margin-bottom: 24px;
	max-width: 600px;
}

.rtd-hero__heading span,
.rtd-hero__heading .rtd-accent {
	color: var(--rtd-orange);
}

.rtd-hero__subheading {
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.65;
	color: var(--rtd-white);
	margin-bottom: 40px;
	max-width: 560px;
}

.rtd-hero__image {
	/* Grid column stays in flow to balance layout; video escapes via absolute */
}

.rtd-hero__image img {
	width: 100%;
	border-radius: var(--rtd-radius-lg);
	object-fit: cover;
}

/* Circle video — absolute relative to .rtd-hero (full viewport width),
   so right: -80px always bleeds 80px off the right edge at any viewport size. */
.rtd-hero__video-wrap {
	position: absolute;
	right: -280px;
	top: 60%;
	transform: translateY(-50%);
	border-radius: 50%;
	overflow: hidden;
	width: 740px;
	height: 740px;
	box-shadow: 0 0 0 8px var(--rtd-orange);
	z-index: 1;
}

.rtd-hero__video-wrap video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Hero page header (inner pages — How It Works / About / Contact / Blog) */
.rtd-page-hero {
	position: relative;
	overflow: hidden;
	background-color: var(--rtd-blue);
	padding-top: 80px;
	padding-bottom: 80px;
	text-align: center;
}

.rtd-page-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url('/wp-content/uploads/2026/07/RTD_Dots_Blue-1.png');
	background-repeat: repeat;
	opacity: 0.06;
	pointer-events: none;
	z-index: 0;
}

.rtd-page-hero .rtd-container { position: relative; z-index: 1; }

.rtd-page-hero__title {
	font-size: clamp(2.5rem, 4vw, 4.5rem);
	font-weight: 700;
	color: var(--rtd-white);
	margin-bottom: 0;
}

/* =============================================
   SOCIAL PROOF / LOGO BAR
   ============================================= */

.rtd-logo-bar {
	background-color: var(--rtd-white);
	padding-top: 32px;
	padding-bottom: 32px;
	border-top: 1px solid rgba(37, 70, 136, 0.1);
	border-bottom: 1px solid rgba(37, 70, 136, 0.1);
	overflow: hidden;
}

.rtd-logo-bar__track {
	display: flex;
	align-items: center;
	gap: 60px;
	flex-wrap: wrap;
	justify-content: center;
}

.rtd-logo-bar__track img {
	height: 48px;
	width: auto;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: 0.6;
	transition: opacity 0.2s, filter 0.2s;
}

.rtd-logo-bar__track img:hover {
	filter: none;
	opacity: 1;
}

/* =============================================
   WHAT WE SEE — blue card section (homepage)
   ============================================= */

.rtd-what-we-see {
	padding-top: 80px;
	padding-bottom: 80px;
	background-color: var(--rtd-white);
}

.rtd-wws-card {
	position: relative;
	background-color: var(--rtd-blue);
	border-radius: var(--rtd-radius-lg);
	padding: 64px;
	overflow: hidden;
}

/* Dot pattern inside card */
.rtd-wws-card::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: var(--rtd-radius-lg);
	background-image: url('/wp-content/uploads/2026/07/RTD_Dots_Blue-1.png');
	background-repeat: repeat;
	opacity: 1;
	pointer-events: none;
	z-index: 0;
}

.rtd-wws-card .rtd-container { position: relative; z-index: 1; }

.rtd-wws-card__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.rtd-wws-card__eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}

.rtd-wws-card__eyebrow img {
	width: 42px;
	height: 42px;
}

.rtd-wws-card__heading {
	font-size: clamp(1.75rem, 2.5vw, 3rem);
	font-weight: 700;
	color: var(--rtd-white);
	margin-bottom: 24px;
	line-height: 1.15;
}

.rtd-wws-card__body {
	font-size: 1.05rem;
	line-height: 1.75;
	color: var(--rtd-white);
}

/* Stats cluster — triangular circle layout on the blue card.
   Circles: DISTRACTION (top-left), UNUSED (bottom-left), TURNOVER (right, centred).
   Decorative orange dots above/below TURNOVER; small light dots alongside. */
.rtd-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto auto;
	gap: 20px;
	position: relative;
}

/* Small semi-transparent white dots — appear light on the dark blue card */
.rtd-stats::before,
.rtd-stats::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	width: 13px;
	height: 13px;
	background: var(--rtd-orange);
	pointer-events: none;
	z-index: 2;
}

/* Upper small dot: alongside upper orange dot */
.rtd-stats::before {
	top: 68px;
	right: 80px;
}

/* Lower small dot: alongside lower orange dot */
.rtd-stats::after {
	bottom: 80px;
	right: 42%;
}

.rtd-stat {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 50%;
	aspect-ratio: 1 / 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px;
	text-align: center;
	width: 100%;
}

/* DISTRACTION — top left */
.rtd-stat:nth-child(1) {
	grid-column: 1;
	grid-row: 1;
}

/* TURNOVER — right column, spans both rows, vertically centred.
   Hosts the two large orange decorative dots above and below it. */
.rtd-stat:nth-child(2) {
	grid-column: 2;
	grid-row: 1 / 3;
	align-self: center;
	position: relative;
}

/* Large orange dot above the TURNOVER circle */
.rtd-stat:nth-child(2)::before {
	content: '';
	position: absolute;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	background: var(--rtd-cta-blue);
	top: -86px;
	left: 28px;
	pointer-events: none;
	z-index: 2;
}

/* Large orange dot below the TURNOVER circle */
.rtd-stat:nth-child(2)::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	background: var(--rtd-cta-blue);
	bottom: -74px;
	left: 20px;
	pointer-events: none;
	z-index: 2;
}

/* UNUSED BENEFITS — bottom left */
.rtd-stat:nth-child(3) {
	grid-column: 1;
	grid-row: 2;
}

.rtd-stat__label {
	font-size: 0.6rem;
	font-weight: 400;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--rtd-blue);
	margin-bottom: 6px;
}

.rtd-stat__number {
	font-size: clamp(1.5rem, 2.2vw, 2.25rem);
	font-weight: 700;
	color: var(--rtd-orange);
	line-height: 1.1;
	margin-bottom: 8px;
}

.rtd-stat__description {
	font-size: 0.68rem;
	line-height: 1.5;
	color: var(--rtd-blue);
}

.rtd-stat__description strong {
	font-weight: 700;
}

/* =============================================
   RESULTS / CASE STUDIES SECTION
   ============================================= */

.rtd-results {
	background-color: var(--rtd-cream);
	padding-top: 80px;
	padding-bottom: 80px;
}

.rtd-results__header {
	text-align: center;
	margin-bottom: 60px;
}

.rtd-results__heading {
	font-size: clamp(2rem, 3vw, 3rem);
	font-weight: 700;
	color: var(--rtd-blue);
}

.rtd-results__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.rtd-results__image {
	position: relative;
}

.rtd-results__image img {
	width: 100%;
	object-fit: cover;
	border-radius: var(--rtd-radius-lg);
}

.rtd-results__cases {
	display: flex;
	flex-direction: column;
	gap: 48px;
}

.rtd-case {
	border-top: 1px solid rgba(37, 70, 136, 0.15);
	padding-top: 32px;
}

.rtd-case:first-child { border-top: none; padding-top: 0; }

.rtd-case__label {
	font-size: 0.75rem;
	font-weight: 400;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--rtd-blue);
	margin-bottom: 8px;
}

.rtd-case__number {
	font-size: clamp(2.5rem, 4vw, 4rem);
	font-weight: 700;
	color: var(--rtd-orange);
	line-height: 1;
	margin-bottom: 8px;
}

.rtd-case__body {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--rtd-blue);
}

/* =============================================
   HOW IT WORKS / CTA STEPS — orange card
   ============================================= */

.rtd-steps {
	padding-top: 80px;
	padding-bottom: 80px;
	background-color: var(--rtd-white);
}

.rtd-steps-card {
	position: relative;
	background-color: var(--rtd-orange);
	border-radius: var(--rtd-radius-lg);
	padding: 64px;
	overflow: hidden;
}

.rtd-steps-card::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: var(--rtd-radius-lg);
	background-image: url('/wp-content/uploads/2026/07/RTD_Dots-2.png');
	background-repeat: repeat;
	opacity: 1;
	pointer-events: none;
	z-index: 0;
}

.rtd-steps-card__inner {
	position: relative;
	z-index: 1;
	text-align: center;
}

.rtd-steps-card__preheading {
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--rtd-white);
	margin-bottom: 8px;
}

.rtd-steps-card__heading {
	font-size: clamp(2rem, 3vw, 3rem);
	font-weight: 700;
	color: var(--rtd-white);
	margin-bottom: 48px;
}

.rtd-step-panel {
	position: relative;
	max-width: 680px;
	margin: 0 auto 40px;
	min-height: 340px;
}

.rtd-step-panel__image {
	width: 63%;
	border-radius: var(--rtd-radius-md);
	overflow: hidden;
}

.rtd-step-panel__image img {
	width: 100%;
	min-height: 340px;
	object-fit: cover;
	display: block;
}

.rtd-step-panel__card {
	position: absolute;
	right: -100px;
	top: 50%;
	transform: translateY(-50%);
	width: 58%;
	background-color: var(--rtd-white);
	border-radius: var(--rtd-radius-md);
	padding: 36px 32px;
	text-align: center;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
}

.rtd-step-panel__label {
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--rtd-orange);
	margin-bottom: 14px;
}

.rtd-step-panel__card h3 {
	font-size: clamp(1.1rem, 2vw, 1.4rem);
	font-weight: 400;
	color: var(--rtd-dark);
	line-height: 1.45;
	margin: 0;
}

.rtd-steps-card__cta-text {
	font-size: 1rem;
	color: var(--rtd-white);
	margin-bottom: 20px;
}

.rtd-steps .gb-tabs__menu-item {
	align-items: center;
	background-color: var(--rtd-orange);
	border: 2px solid rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	color: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	display: inline-flex;
	font-family: var(--rtd-font);
	font-size: 1.75rem;
	font-weight: 700;
	height: 80px;
	justify-content: center;
	line-height: 1;
	padding: 0;
	position: relative;
	transition: all 0.25s ease;
	width: 80px;
	z-index: 1;
}

.rtd-steps .gb-tabs__menu-item.gb-block-is-current,
.rtd-steps .gb-tabs__menu-item.gb-block-is-current:hover,
.rtd-steps .gb-tabs__menu-item.gb-block-is-current:focus {
	background-color: var(--rtd-white);
	border-color: var(--rtd-white);
	color: var(--rtd-orange);
}

.rtd-steps .gb-tabs__menu-item:hover,
.rtd-steps .gb-tabs__menu-item:focus {
	border-color: rgba(255, 255, 255, 0.85);
	color: rgba(255, 255, 255, 0.85);
}

.rtd-steps .gb-tabs__menu-item.gb-block-is-current {
	transform: scale(1.08);
}

/* Subtle entrance animation when switching steps.
   GenerateBlocks Pro's tabs.js toggles .gb-tabs__item-transition
   for ~100ms on every click regardless of block settings, so we
   hook into that instead of needing our own JS. */
.rtd-steps .rtd-step-panel__image,
.rtd-steps .rtd-step-panel__card {
	transition: opacity 0.45s ease, transform 0.45s ease;
}

.rtd-steps .rtd-step-panel__card {
	transition-delay: 0.08s;
}

.rtd-steps .gb-tabs__item-transition .rtd-step-panel__image,
.rtd-steps .gb-tabs__item-transition .rtd-step-panel__card {
	opacity: 0;
	transform: translateY(14px);
}

@media (prefers-reduced-motion: reduce) {
	.rtd-steps .gb-tabs__menu-item.gb-block-is-current {
		transform: none;
	}

	.rtd-steps .gb-tabs__item-transition .rtd-step-panel__image,
	.rtd-steps .gb-tabs__item-transition .rtd-step-panel__card {
		opacity: 1;
		transform: none;
	}
	

}

@media screen and (max-width:768px){
	.rtd-step-panel__image img {
		min-height:140px;
		
	}
	
	
	
}

/* =============================================
   WHITEPAPER / RESOURCE SECTION
   ============================================= */

.rtd-whitepaper {
	background-color: var(--rtd-cream);
	padding-top: 80px;
	padding-bottom: 80px;
}

.rtd-whitepaper__intro {
	text-align: center;
	font-size: 1.05rem;
	line-height: 1.75;
	color: var(--rtd-dark);
	max-width: 780px;
	margin: 0 auto 56px;
}

.rtd-whitepaper__intro strong {
	color: var(--rtd-blue);
	font-weight: 700;
}

.rtd-whitepaper__cols {
	display: grid;
	grid-template-columns: 380px 1fr;
	gap: 60px;
	align-items: start;
}

.rtd-whitepaper__left {
	position: relative;
}

.rtd-whitepaper__left img {
	width: 100%;
	border-radius: var(--rtd-radius-lg);
	box-shadow: -7px 7px 14px rgba(0, 0, 0, 0.25);
	transform: rotate(-4.5deg);
	margin-bottom: 48px;
}

.rtd-whitepaper__list {
	margin-top: 12px;
}

.rtd-whitepaper__list li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 20px;
	font-size: 1rem;
	line-height: 1.6;
	color: var(--rtd-dark);
}

.rtd-whitepaper__list li img {
	width: 34px;
	height: 34px;
	flex-shrink: 0;
	margin-top: 2px;
}

.rtd-whitepaper__list li strong {
	color: var(--rtd-blue);
}

.rtd-whitepaper__card {
	background-color: var(--rtd-white);
	border-radius: var(--rtd-radius-lg);
	padding: 48px 40px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.rtd-whitepaper__card-title {
	font-size: clamp(1.5rem, 2vw, 2rem);
	font-weight: 700;
	color: var(--rtd-blue);
	margin-bottom: 8px;
}

.rtd-whitepaper__card-sub {
	font-size: 0.9375rem;
	color: var(--rtd-dark);
	margin-bottom: 32px;
}

/* Gravity Forms — whitepaper card */
.rtd-whitepaper__card .gform_wrapper {
	background: none;
	border: none;
	padding: 0;
	margin: 0;
	max-width: none;
	box-shadow: none;
	text-align: left;
}

.rtd-whitepaper__card .gform_wrapper .gform_fields {
	display: block;
}

.rtd-whitepaper__card .gform_wrapper .gfield {
	padding: 0;
	margin-top: 20px;
	background: none;
	border: none;
}

.rtd-whitepaper__card .gform_wrapper .gfield:first-child {
	margin-top: 0;
}

.rtd-whitepaper__card .gform_wrapper .gfield_label {
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--rtd-blue);
	margin-bottom: 6px;
}

.rtd-whitepaper__card .gform_wrapper input[type="text"],
.rtd-whitepaper__card .gform_wrapper input[type="email"],
.rtd-whitepaper__card .gform_wrapper select {
	width: 100%;
	border: 1px solid #d1d5dc;
	border-radius: 6px;
	padding: 10px 14px;
	font-size: 0.9375rem;
	color: var(--rtd-dark);
	background-color: var(--rtd-white);
	appearance: none;
}

.rtd-whitepaper__card .gform_wrapper .ginput_complex {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.rtd-whitepaper__card .gform_wrapper .ginput_complex .ginput_container {
	width: 100%;
}

.rtd-whitepaper__card .gform_wrapper .name_sub_label {
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #6b7280;
	margin-top: 4px;
}

.rtd-whitepaper__card .gform_wrapper .ginput_container_select {
	position: relative;
}

.rtd-whitepaper__card .gform_wrapper .ginput_container_select::after {
	content: '';
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid var(--rtd-dark);
	pointer-events: none;
}

.rtd-whitepaper__card .gform_wrapper .gform_footer {
	display: flex;
	padding: 28px 0 0;
	border: none;
	background: none;
}

.rtd-whitepaper__card .gform_wrapper .gform_button {
	width: 100%;
	background-color: var(--rtd-orange);
	color: var(--rtd-white);
	border: none;
	border-radius: var(--rtd-radius-sm);
	padding: 14px 24px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.rtd-whitepaper__card .gform_wrapper .gform_button:hover {
	background-color: #d96a35;
}

/* =============================================
   TESTIMONIAL SECTION
   ============================================= */

.rtd-testimonials {
	background-color: var(--rtd-white);
	padding-top: 80px;
	padding-bottom: 80px;
}

.rtd-testimonials__heading {
	font-size: clamp(1.75rem, 2.5vw, 3rem);
	font-weight: 700;
	color: var(--rtd-blue);
	text-align: center;
	margin-bottom: 48px;
}

.rtd-testimonial-card {
	position: relative;
	background-color: var(--rtd-cta-blue);
	border-radius: var(--rtd-radius-xl);
	padding: 60px;
	overflow: hidden;
	max-width: 860px;
	margin: 0 auto;
}

.rtd-testimonial-card::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: var(--rtd-radius-xl);
	background-image: url('/wp-content/uploads/2026/07/RTD_Dots_Blue-1.png');
	background-repeat: repeat;
	opacity: 0.1;
	pointer-events: none;
	z-index: 0;
}

.rtd-testimonial-card__inner {
	position: relative;
	z-index: 1;
	text-align: center;
}

.rtd-testimonial-card__quote {
	font-size: 1.1rem;
	line-height: 1.75;
	color: var(--rtd-white);
	font-weight: 500;
	margin-bottom: 24px;
}

.rtd-testimonial-card__attr {
	font-size: 0.8rem;
	font-weight: 400;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.75);
}

/* =============================================
   BOTTOM CTA SECTION
   ============================================= */

.rtd-bottom-cta {
	background-color: var(--rtd-white);
	padding-top: 80px;
	padding-bottom: 80px;
	text-align: center;
}

.rtd-bottom-cta__body {
	font-size: 1.1rem;
	line-height: 1.75;
	color: var(--rtd-dark);
	max-width: 860px;
	margin: 0 auto 16px;
}

.rtd-bottom-cta__body .rtd-accent-orange {
	font-weight: 700;
	color: var(--rtd-orange);
}

.rtd-bottom-cta__subtext {
	font-size: 1rem;
	color: var(--rtd-dark);
	margin-bottom: 28px;
}

.rtd-bottom-cta__btn-wrap {
	background-color: var(--rtd-blue);
	border-radius: var(--rtd-radius-md);
	display: inline-block;
	padding: 4px;
}

.rtd-bottom-cta__btn-wrap .rtd-btn {
	background-color: var(--rtd-blue);
}

/* =============================================
   HOW IT WORKS PAGE
   ============================================= */

.rtd-hiw-intro {
	background-color: var(--rtd-cream);
	padding-top: 80px;
	padding-bottom: 80px;
}

.rtd-hiw-intro__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
}

.rtd-hiw-intro__content {}

.rtd-hiw-intro__tag {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--rtd-blue);
	background-color: rgba(37, 70, 136, 0.08);
	padding: 6px 14px;
	border-radius: 3px;
	margin-bottom: 20px;
}

.rtd-hiw-intro__heading {
	font-size: clamp(1.75rem, 2.5vw, 2.75rem);
	font-weight: 700;
	color: var(--rtd-blue);
	margin-bottom: 24px;
}

.rtd-hiw-intro__body {
	font-size: 1rem;
	line-height: 1.8;
	color: var(--rtd-dark);
	margin-bottom: 32px;
}

.rtd-hiw-intro__image img {
	width: 100%;
	border-radius: var(--rtd-radius-lg);
	object-fit: cover;
}

/* For employees / members tab */
.rtd-hiw-tabs {
	margin-bottom: 32px;
}

/* =============================================
   ABOUT US PAGE
   ============================================= */

.rtd-about-intro {
	background-color: var(--rtd-cream);
	padding-top: 80px;
	padding-bottom: 80px;
}

.rtd-about-intro__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
}

.rtd-about-intro__heading {
	font-size: clamp(1.75rem, 2.5vw, 2.75rem);
	font-weight: 700;
	color: var(--rtd-blue);
	margin-bottom: 20px;
}

.rtd-about-intro__body {
	font-size: 1rem;
	line-height: 1.8;
	color: var(--rtd-dark);
}

.rtd-about-intro__image {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.rtd-about-intro__image img {
	border-radius: var(--rtd-radius-lg);
	object-fit: cover;
	width: 100%;
	aspect-ratio: 3 / 4;
}

/* What Makes Us Different */
.rtd-different {
	background-color: var(--rtd-white);
	padding-top: 80px;
	padding-bottom: 80px;
}

.rtd-different__card {
	position: relative;
	background-color: var(--rtd-blue);
	border-radius: var(--rtd-radius-lg);
	padding: 64px;
	overflow: hidden;
}

.rtd-different__card::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: var(--rtd-radius-lg);
	background-image: url('/wp-content/uploads/2026/07/RTD_Dots_Blue-1.png');
	background-repeat: repeat;
	opacity: 0.07;
	pointer-events: none;
	z-index: 0;
}

.rtd-different__card__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.rtd-different__eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.rtd-different__eyebrow img { width: 42px; height: 42px; }

.rtd-different__heading {
	font-size: clamp(1.75rem, 2.5vw, 2.75rem);
	font-weight: 700;
	color: var(--rtd-white);
	margin-bottom: 20px;
}

.rtd-different__body {
	font-size: 1rem;
	line-height: 1.8;
	color: var(--rtd-white);
}

/* About — results grid */
.rtd-results-grid {
	background-color: var(--rtd-cream);
	padding-top: 80px;
	padding-bottom: 80px;
}

.rtd-results-grid__header {
	text-align: center;
	margin-bottom: 48px;
}

.rtd-results-grid__heading {
	font-size: clamp(1.75rem, 2.5vw, 2.5rem);
	font-weight: 700;
	color: var(--rtd-blue);
	margin-bottom: 8px;
}

.rtd-results-grid__subheading {
	font-size: 1.1rem;
	color: var(--rtd-dark);
}

.rtd-outcomes {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-bottom: 48px;
}

.rtd-outcome {
	text-align: center;
}

.rtd-outcome__icon {
	margin: 0 auto 16px;
	width: 88px;
	height: 88px;
}

.rtd-outcome__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.rtd-outcome__heading {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--rtd-blue);
	margin-bottom: 8px;
}

.rtd-outcome__body {
	font-size: 0.9rem;
	line-height: 1.65;
	color: var(--rtd-dark);
}

.rtd-results-grid__closing {
	text-align: center;
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--rtd-blue);
}

/* About — commitment section */
.rtd-commitment {
	background-color: var(--rtd-white);
	padding-top: 80px;
	padding-bottom: 80px;
}

.rtd-commitment__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.rtd-commitment__image img {
	width: 100%;
	border-radius: var(--rtd-radius-lg);
	object-fit: cover;
}

.rtd-commitment__heading {
	font-size: clamp(1.5rem, 2vw, 2rem);
	font-weight: 700;
	color: var(--rtd-blue);
	margin-bottom: 20px;
}

.rtd-commitment__body {
	font-size: 1rem;
	line-height: 1.8;
	color: var(--rtd-dark);
}

/* =============================================
   CONTACT US PAGE
   ============================================= */

.rtd-contact {
	background-color: var(--rtd-white);
	padding-top: 80px;
	padding-bottom: 80px;
}

.rtd-contact__inner {
	max-width: 800px;
	margin: 0 auto;
}

/* Gravity Forms overrides */
.gform_wrapper {
	background: none;
	border: none;
	padding: 0;
	margin: 0;
	max-width: none;
	box-shadow: none;
	text-align: left;
}

.gform_wrapper .gform_fields {
	display: block;
}

.gform_wrapper .gfield {
	padding: 0;
	margin-top: 32px;
	background: none;
	border: none;
}

.gform_wrapper .gfield:first-child {
	margin-top: 0;
}

.gform_wrapper .gfield_label {
	font-family: var(--rtd-font);
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--rtd-blue);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 8px;
}

.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="tel"],
.gform_wrapper select,
.gform_wrapper textarea {
	width: 100%;
	font-family: var(--rtd-font);
	font-size: 1rem;
	color: var(--rtd-dark);
	background-color: var(--rtd-white);
	border: 1px solid #d1d5dc;
	border-radius: var(--rtd-radius-sm);
	padding: 14px 16px;
	transition: border-color 0.2s;
}

.gform_wrapper input[type="text"]:focus,
.gform_wrapper input[type="email"]:focus,
.gform_wrapper input[type="tel"]:focus,
.gform_wrapper select:focus,
.gform_wrapper textarea:focus {
	outline: none;
	border-color: var(--rtd-blue);
}

.gform_wrapper textarea {
	min-height: 160px;
	resize: vertical;
}

/* Two-column field layout */
.rtd-gf-two-col .gform_fields {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 24px;
}

.rtd-gf-two-col .gfield--span-2 {
	grid-column: 1 / -1;
}

/* Checkboxes */
.gform_wrapper .ginput_container_checkbox .gfield_checkbox {
	display: grid !important;
	grid-template-columns: 1fr 1fr !important;
	gap: 16px !important;
}

.gform_wrapper .gchoice {
	display: flex;
	align-items: center;
	gap: 10px;
}

.gform_wrapper .gchoice label {
	font-size: 0.95rem;
	color: var(--rtd-dark);
	cursor: pointer;
}

.gform_wrapper .gchoice input[type="checkbox"] {
	appearance: none;
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	min-width: 20px;
	border: 1px solid #d1d5dc;
	border-radius: 4px;
	background-color: var(--rtd-white);
	margin: 0;
	cursor: pointer;
	transition: background-color 0.15s, border-color 0.15s;
}

.gform_wrapper .gchoice input[type="checkbox"]:checked {
	background-color: var(--rtd-blue);
	border-color: var(--rtd-blue);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M13.354 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
	background-size: 12px;
	background-repeat: no-repeat;
	background-position: center;
}

/* Submit button */
.gform_wrapper .gform_footer {
	display: flex;
	justify-content: center;
	padding: 48px 0 0;
	border: none;
	background: none;
}

.gform_wrapper .gform_button,
.gform_wrapper input[type="submit"] {
	font-family: var(--rtd-font);
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	background-color: var(--rtd-orange);
	color: var(--rtd-white);
	border: none;
	border-radius: var(--rtd-radius-sm);
	padding: 0 40px;
	height: 55px;
	cursor: pointer;
	transition: opacity 0.2s;
}

.gform_wrapper .gform_button:hover,
.gform_wrapper input[type="submit"]:hover {
	opacity: 0.88;
}

/* =============================================
   BLOG PAGE
   ============================================= */

.rtd-blog {
	background-color: var(--rtd-white);
	padding-top: 80px;
	padding-bottom: 80px;
}

.rtd-blog__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.rtd-post-card {
	background-color: var(--rtd-white);
	border-radius: var(--rtd-radius-lg);
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	transition: box-shadow 0.2s, transform 0.2s;
}

.rtd-post-card:hover {
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.14);
	transform: translateY(-2px);
}

.rtd-post-card__image {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.rtd-post-card__body {
	padding: 28px;
}

.rtd-post-card__title {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--rtd-blue);
	line-height: 1.4;
	margin-bottom: 16px;
}

.rtd-post-card__excerpt {
	font-size: 0.9rem;
	line-height: 1.65;
	color: var(--rtd-dark);
	margin-bottom: 20px;
}

/* =============================================
   FOOTER
   ============================================= */

/* GP default footer — override or hide when using Global Element */
.site-footer,
#site-footer {
	background-color: var(--rtd-blue);
}

/* GP footer bar */
.footer-bar {
	background-color: rgba(0, 0, 0, 0.2);
}

/* Custom GB-based footer */
.rtd-footer {
	background-color: var(--rtd-blue);
	padding-top: 72px;
	padding-bottom: 0;
}

/* 4-column grid: logo+tagline | Company | Resources | Get in Touch */
.rtd-footer__cols {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.5fr;
	gap: 48px;
	padding-bottom: 48px;
}

.rtd-footer__logo img {
	height: 60px;
	width: auto;
	display: block;
	margin-bottom: 20px;
}

.rtd-footer__tagline {
	font-size: 0.875rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.75);
}

.rtd-footer__col-heading {
	font-family: var(--rtd-font);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--rtd-white);
	margin-bottom: 20px;
}

.rtd-footer__links {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.rtd-footer__links a,
.rtd-footer__col a {
	font-size: 0.9375rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.75);
	transition: color 0.2s;
	text-decoration: none;
}

.rtd-footer__links a:hover,
.rtd-footer__col a:hover {
	color: var(--rtd-orange);
}

.rtd-footer__contact-item {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
}

.rtd-footer__contact-item svg,
.rtd-footer__contact-item img {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	opacity: 0.8;
}

.rtd-footer__contact-item a {
	font-size: 0.9375rem;
	color: rgba(255, 255, 255, 0.75);
	transition: color 0.2s;
	text-decoration: none;
}

.rtd-footer__contact-item a:hover {
	color: var(--rtd-orange);
}

/* Bottom copyright bar */
.rtd-footer__bar {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding-top: 24px;
	padding-bottom: 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
}

.rtd-footer__copy {
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.5);
}

.rtd-footer__credit {
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.5);
}

.rtd-footer__credit a {
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	transition: color 0.2s;
}

.rtd-footer__credit a:hover {
	color: var(--rtd-orange);
}

/* =============================================
   HOMEPAGE — ADDITIONAL CLASSES
   ============================================= */

/* Inline orange accent for headings (e.g. hero h1 second line) */
.rtd-accent { color: var(--rtd-orange); }

/* Hero — update to radial gradient matching Figma (orange top-right → blue) */
.rtd-hero {
	background: radial-gradient(ellipse at 100% 90%, #ee7b44 0%, #c87060 18%, #6c5790 38%, var(--rtd-blue) 58%);
}

/* Press release announcement banner — below hero */
.rtd-press-banner {
	background-color: var(--rtd-cream);
	padding: 36px 0;
	text-align: center;
	border-top: 1px solid rgba(37, 70, 136, 0.08);
	border-bottom: 1px solid rgba(37, 70, 136, 0.08);
}

.rtd-press-banner__text {
	font-size: 1rem;
	line-height: 1.75;
	color: var(--rtd-dark);
	max-width: 780px;
	margin: 0 auto 16px;
}

.rtd-press-banner__brand {
	color: var(--rtd-orange);
	font-weight: 700;
}

.rtd-press-banner__link {
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--rtd-orange);
	text-decoration: none;
	transition: opacity 0.2s;
}

.rtd-press-banner__link:hover { opacity: 0.7; }

/* Homepage about/intro section (two-column: photo left, text right) */
.rtd-hp-intro {
	padding-top: 80px;
	padding-bottom: 80px;
	background-color: var(--rtd-white);
}

.rtd-hp-intro__inner {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 80px;
	align-items: center;
}

.rtd-hp-intro__image img {
	width: 100%;
	border-radius: var(--rtd-radius-lg);
	object-fit: contain;
	aspect-ratio: 4 / 5;
}

.rtd-hp-intro__heading {
	font-size: clamp(1.35rem, 1.8vw, 1.75rem);
	font-weight: 700;
	color: var(--rtd-blue);
	line-height: 1.45;
	margin-bottom: 20px;
}

.rtd-hp-intro__body {
	font-size: 1.05rem;
	line-height: 1.85;
	color: var(--rtd-dark);
	margin-bottom: 16px;
}

.rtd-hp-intro__body:last-child { margin-bottom: 0; }

/* Features screenshot — full-width image strip */
.rtd-features-screenshot {
	background-color: var(--rtd-cream);
	line-height: 0;
}

.rtd-features-screenshot img {
	width: 100%;
	max-width: 100%;
	display: block;
}

/* Feature icon boxes below screenshot */
.rtd-features {
	background-color: var(--rtd-cream);
	padding-top: 48px;
	padding-bottom: 64px;
}

.rtd-features__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.rtd-feature {
	background-color: var(--rtd-white);
	border-radius: var(--rtd-radius-md);
	padding: 32px 24px;
	text-align: center;
	box-shadow: 0 2px 16px rgba(37, 70, 136, 0.08);
}

.rtd-feature__icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 16px;
}

.rtd-feature__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 0;
}

.rtd-feature__label {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--rtd-blue);
	line-height: 1.4;
}

/* Bottom CTA — accent colour for inline orange text */
.rtd-accent-orange {
	color: var(--rtd-orange);
	font-weight: 700;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
	:root {
		--rtd-gutter: 48px;
	}

	.rtd-hero__inner,
	.rtd-hp-intro__inner,
	.rtd-wws-card__inner,
	.rtd-results__inner,
	.rtd-hiw-intro__inner,
	.rtd-about-intro__inner,
	.rtd-different__card__inner,
	.rtd-commitment__inner,
	.rtd-whitepaper__cols {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.rtd-step-panel {
		min-height: 260px;
	}

	.rtd-step-panel__image {
		width: 100%;
	}

	.rtd-step-panel__card {
		position: static;
		transform: none;
		width: 90%;
		margin: -20px auto 0;
	}

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

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

	.rtd-features__grid {
		grid-template-columns: 1fr;
	}

	.rtd-whitepaper__cols {
		grid-template-columns: 1fr;
	}

	.rtd-pillars {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px;
	}
}

@media (max-width: 600px) {
	.rtd-pillars {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	:root {
		--rtd-gutter: 24px;
	}

	.rtd-section, .rtd-section-lg {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.rtd-hero {
		padding-top: 100px;
		padding-bottom: 60px;
	}

	.rtd-hero__video-wrap {
		position: relative;
		right: auto;
		top: auto;
		transform: none;
		width: 300px;
		height: 300px;
		margin: 40px auto 0;
	}

	.rtd-wws-card,
	.rtd-steps-card,
	.rtd-different__card {
		padding: 40px 28px;
	}

	.rtd-outcomes {
		grid-template-columns: 1fr;
	}

	.rtd-blog__grid {
		grid-template-columns: 1fr;
	}

	.rtd-footer__cols {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}

	.rtd-testimonial-card {
		padding: 40px 28px;
	}
}


/* ==========================================================
   SECTION 4 — GUIDE (pillars)
   ========================================================== */
/* Shared inner container used by sections that don't wrap with .rtd-container */
.rtd-inner {
	max-width: var(--rtd-container);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--rtd-gutter);
	padding-right: var(--rtd-gutter);
}

/* Utility used by GB shape blocks */
.margin-b-1 { margin-bottom: 1rem; }

/* =============================================
   WHY RESTORE THE DAY / PILLARS SECTION
   ============================================= */

.rtd-guide {
	background-color: var(--rtd-cream);
	padding-top: 110px;
	padding-bottom: 120px;
}

/* Eyebrow override — cream background, so use orange not white */
.rtd-guide .rtd-eyebrow {
	color: var(--rtd-orange);
	display: block;
	margin-bottom: 16px;
}

.rtd-guide__intro {
	max-width: 820px;
	margin: 0 auto;
	text-align: center;
}

.rtd-guide__intro h2 {
	font-weight: 700;
	font-size: clamp(2rem, 4vw, 3.25rem);
	line-height: 1.1;
	color: var(--rtd-blue);
	margin-bottom: 28px;
}

.rtd-guide__lead {
	font-size: 1.0625rem;
	line-height: 1.7;
	color: var(--rtd-dark);
	margin: 0 auto;
	max-width: 780px;
}

.rtd-guide__lead strong {
	color: var(--rtd-blue);
	font-weight: 700;
}

/* 4-col pillar grid */
.rtd-pillars {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
	margin-top: 64px;
}

.rtd-pillar {
	padding: 0 16px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.rtd-pillar__stat {
	font-family: var(--rtd-font);
	font-weight: 700;
	font-size: 2rem;
	color: var(--rtd-orange);
	margin-bottom: 12px;
	line-height: 1;
}

.rtd-pillar__title {
	font-family: var(--rtd-font);
	font-weight: 700;
	font-size: 1.125rem;
	color: var(--rtd-blue);
	margin-bottom: 10px;
	line-height: 1.25;
}

.rtd-pillar__body {
	font-size: 0.9375rem;
	line-height: 1.65;
	color: var(--rtd-dark);
	margin: 0;
}

.rtd-pillar__body strong {
	color: var(--rtd-dark);
	font-weight: 600;
}

/* =============================================
   BLOG INDEX PAGE
   ============================================= */

.rtd-blog {
	background-color: var(--rtd-white);
	padding: 80px 0;
}

/* 3-column post grid */
.rtd-blog .wp-block-post-template {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr);
	gap: 60px 40px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.rtd-blog-card {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* Circular featured image */
.rtd-blog .wp-block-post-featured-image {
	width: 100%;
	max-width: 300px;
	aspect-ratio: 1 / 1;
	margin: 0 auto 24px;
	overflow: hidden;
	border-radius: 50%;
}

.rtd-blog .wp-block-post-featured-image img,
.rtd-blog .wp-block-post-featured-image a {
	display: block;
	width: 100%;
	height: 100%;
}

.rtd-blog .wp-block-post-featured-image img {
	object-fit: cover;
	object-position: center;
	aspect-ratio: 1 / 1;
}

/* Post title */
.rtd-blog .wp-block-post-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--rtd-orange);
	line-height: 1.3;
	margin-bottom: 12px;
	text-align: center;
}

.rtd-blog .wp-block-post-title a {
	color: var(--rtd-orange);
	text-decoration: none;
}

.rtd-blog .wp-block-post-title a:hover {
	text-decoration: underline;
}

/* Excerpt */
.rtd-blog .wp-block-post-excerpt {
	font-size: 0.9375rem;
	color: var(--rtd-dark);
	line-height: 1.65;
	text-align: center;
	margin-bottom: 20px;
}

.rtd-blog .wp-block-post-excerpt p {
	margin: 0;
}

.rtd-blog .wp-block-post-excerpt__more-link {
	display: none;
}

/* Read More button */
.rtd-blog .wp-block-read-more {
	display: inline-block;
	font-family: var(--rtd-font);
	font-weight: 600;
	font-size: 0.875rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	background-color: var(--rtd-orange);
	color: var(--rtd-white);
	text-decoration: none;
	border-radius: var(--rtd-radius-sm);
	padding: 0 28px;
	height: 55px;
	line-height: 55px;
	transition: opacity 0.2s ease, transform 0.2s ease;
	white-space: nowrap;
}

.rtd-blog .wp-block-read-more:hover {
	opacity: 0.88;
	transform: translateY(-1px);
}

/* Pagination */
.rtd-blog .wp-block-query-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-top: 60px;
	flex-wrap: wrap;
}

.rtd-blog .wp-block-query-pagination-numbers,
.rtd-blog .wp-block-query-pagination-next,
.rtd-blog .wp-block-query-pagination-previous {
	display: flex;
	gap: 8px;
	align-items: center;
}

.rtd-blog .page-numbers,
.rtd-blog .wp-block-query-pagination-next a,
.rtd-blog .wp-block-query-pagination-previous a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	font-family: var(--rtd-font);
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--rtd-blue);
	background-color: transparent;
	border: 2px solid #d8d8d0;
	border-radius: var(--rtd-radius-sm);
	text-decoration: none;
	transition: all 0.2s ease;
}

.rtd-blog .page-numbers.current,
.rtd-blog .page-numbers:hover,
.rtd-blog .wp-block-query-pagination-next a:hover,
.rtd-blog .wp-block-query-pagination-previous a:hover {
	background-color: var(--rtd-blue);
	border-color: var(--rtd-blue);
	color: var(--rtd-white);
}

/* Blog responsive */
@media (max-width: 1024px) {
	.rtd-blog .wp-block-post-template {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

@media (max-width: 600px) {
	.rtd-blog .wp-block-post-template {
		grid-template-columns: 1fr !important;
	}

	.rtd-blog .wp-block-post-featured-image {
		max-width: 240px;
	}
}

/* =============================================
   CONTACT PAGE
   ============================================= */

.rtd-contact {
	background-color: var(--rtd-cream);
	padding: 80px 0;
}

.rtd-contact__cols {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 80px;
	align-items: start;
}

.rtd-contact__label {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--rtd-orange);
	margin-bottom: 14px;
}

.rtd-contact__heading {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 700;
	color: var(--rtd-blue);
	line-height: 1.2;
	margin-bottom: 20px;
}

.rtd-contact__body {
	font-size: 1.05rem;
	line-height: 1.8;
	color: var(--rtd-dark);
	margin-bottom: 36px;
}

.rtd-contact__detail {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1rem;
	font-weight: 600;
	color: var(--rtd-blue);
	text-decoration: none;
	margin-bottom: 14px;
}

.rtd-contact__detail:hover {
	color: var(--rtd-orange);
}

.rtd-contact__form-card {
	background-color: var(--rtd-white);
	border-radius: var(--rtd-radius-lg);
	padding: 48px 44px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

/* Gravity Forms overrides — contact form */
.rtd-contact__form-card .gform_wrapper {
	background: none;
	border: none;
	padding: 0;
	margin: 0;
	max-width: none;
	box-shadow: none;
	text-align: left;
}

.rtd-contact__form-card .gform_fields {
	display: block;
}

.rtd-contact__form-card .gfield {
	padding: 0;
	margin-top: 28px;
	background: none;
	border: none;
}

.rtd-contact__form-card .gfield:first-child {
	margin-top: 0;
}

.rtd-contact__form-card .gfield_label {
	font-family: var(--rtd-font);
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--rtd-dark);
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.rtd-contact__form-card .ginput_container input,
.rtd-contact__form-card .ginput_container textarea,
.rtd-contact__form-card .ginput_container select {
	width: 100%;
	font-family: var(--rtd-font);
	font-size: 0.9375rem;
	color: var(--rtd-dark);
	background-color: var(--rtd-cream);
	border: 1px solid #d8d8d0;
	border-radius: var(--rtd-radius-sm);
	padding: 12px 16px;
	outline: none;
	transition: border-color 0.2s ease;
}

.rtd-contact__form-card .ginput_container input:focus,
.rtd-contact__form-card .ginput_container textarea:focus {
	border-color: var(--rtd-blue);
}

.rtd-contact__form-card .ginput_container textarea {
	min-height: 130px;
	resize: vertical;
}

.rtd-contact__form-card .ginput_complex {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.rtd-contact__form-card .ginput_complex span {
	display: flex;
	flex-direction: column;
}

.rtd-contact__form-card .ginput_complex label {
	font-family: var(--rtd-font);
	font-size: 0.75rem;
	color: #888;
	margin-top: 6px;
}

.rtd-contact__form-card .gform_footer {
	display: flex;
	justify-content: flex-start;
	padding: 36px 0 0;
	border: none;
	background: none;
}

.rtd-contact__form-card .gform_button {
	font-family: var(--rtd-font);
	font-weight: 600;
	font-size: 0.875rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	background-color: var(--rtd-blue);
	color: var(--rtd-white);
	border: none;
	border-radius: var(--rtd-radius-sm);
	padding: 0 36px;
	height: 55px;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.rtd-contact__form-card .gform_button:hover {
	background-color: var(--rtd-orange);
	transform: translateY(-1px);
}

.rtd-contact__form-card .gfield_validation_message,
.rtd-contact__form-card .validation_message {
	font-size: 0.8125rem;
	color: #c0392b;
	margin-top: 4px;
}

/* Contact responsive */
@media (max-width: 1024px) {
	.rtd-contact__cols {
		grid-template-columns: 1fr;
		gap: 48px;
	}
}

/* =============================================
   ABOUT US — INTRO SECTION
   ============================================= */

.rtd-au-intro {
	background-color: var(--rtd-white);
	padding: 80px 0;
}

.rtd-au-intro__cols {
	display: grid;
	grid-template-columns: 3fr 2fr;
	gap: 60px;
	align-items: center;
}

.rtd-au-intro__headline {
	font-size: clamp(2rem, 4vw, 2.8rem);
	font-weight: 700;
	color: var(--rtd-blue);
	line-height: 1.25;
	margin-bottom: 32px;
}

.rtd-au-intro__headline-accent {
	color: var(--rtd-orange);
}

.rtd-au-intro__body {
	font-size: 1.05rem;
	line-height: 1.8;
	color: var(--rtd-dark);
	margin-bottom: 18px;
}

.rtd-au-intro__body strong {
	font-weight: 700;
	color: var(--rtd-blue);
}

.rtd-au-intro__accent {
	font-size: clamp(1.2rem, 2vw, 1.625rem);
	font-weight: 700;
	color: var(--rtd-blue);
	line-height: 1.35;
	margin-bottom: 18px;
}

.rtd-au-intro__image img {
	width: 100%;
	display: block;
}

/* =============================================
   ABOUT US — WHAT MAKES US DIFFERENT
   ============================================= */

.rtd-au-different {
	background-color: var(--rtd-white);
	padding: 0 0 80px;
}

.rtd-au-different__card {
	background-color: var(--rtd-blue);
	border-radius: var(--rtd-radius-md);
	padding: 56px 60px;
	position: relative;
	overflow: hidden;
}

.rtd-au-different__card::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url('REPLACE_WITH_RTD_DOTS_URL');
	background-size: cover;
	background-position: center;
	opacity: 0.07;
	pointer-events: none;
	z-index: 0;
}

.rtd-au-different__label-row {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 36px;
	position: relative;
	z-index: 1;
}

.rtd-au-different__label-row img {
	width: 42px;
	height: 42px;
	flex-shrink: 0;
}

.rtd-au-different__label {
	font-size: 0.8125rem;
	font-weight: 400;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--rtd-white);
}

.rtd-au-different__cols {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.rtd-au-different__body {
	font-size: 1.05rem;
	line-height: 1.8;
	color: var(--rtd-white);
	margin-bottom: 20px;
}

.rtd-au-different__highlight {
	font-size: clamp(1.2rem, 2vw, 1.625rem);
	font-weight: 700;
	color: var(--rtd-orange);
	line-height: 1.35;
	margin-bottom: 20px;
}

.rtd-au-different__photos {
	position: relative;
	height: 420px;
}

.rtd-au-different__photo {
	position: absolute;
	border-radius: 50%;
	overflow: hidden;
}

.rtd-au-different__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.rtd-au-different__photo--lg {
	width: 270px;
	height: 270px;
	top: 0;
	right: 10px;
}

.rtd-au-different__photo--sm {
	width: 210px;
	height: 210px;
	bottom: 50px;
	left: 0;
}

.rtd-au-different__photo--md {
	width: 165px;
	height: 165px;
	bottom: 20px;
	right: 0;
}

/* =============================================
   ABOUT US — RESULTS SECTION
   ============================================= */

.rtd-au-results {
	background-color: var(--rtd-cream);
	padding: 80px 0;
}

.rtd-au-results__heading {
	font-size: clamp(2rem, 4vw, 2.8rem);
	font-weight: 700;
	color: var(--rtd-blue);
	text-align: center;
	margin-bottom: 16px;
	line-height: 1.2;
}

.rtd-au-results__sub {
	font-size: 1.05rem;
	line-height: 1.7;
	color: var(--rtd-dark);
	text-align: center;
	max-width: 640px;
	margin: 0 auto 60px;
}

.rtd-au-results__grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 48px 60px;
	margin-bottom: 60px;
}

.rtd-au-result-item {
	text-align: center;
}

.rtd-au-result-item img {
	width: 80px;
	height: 80px;
	object-fit: contain;
	margin: 0 auto 20px;
	display: block;
}

.rtd-au-result-item__title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--rtd-orange);
	margin-bottom: 10px;
	line-height: 1.25;
}

.rtd-au-result-item__body {
	font-size: 0.9375rem;
	line-height: 1.65;
	color: var(--rtd-dark);
}

.rtd-au-results__statement {
	font-size: clamp(1.1rem, 2vw, 1.5rem);
	font-weight: 700;
	color: var(--rtd-blue);
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
}

/* =============================================
   ABOUT US — COMMITMENT SECTION
   ============================================= */

.rtd-au-commitment {
	background-color: var(--rtd-white);
	padding: 80px 0;
}

.rtd-au-commitment__cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.rtd-au-commitment__image img {
	width: 100%;
	display: block;
	border-radius: var(--rtd-radius-md);
}

.rtd-au-commitment__heading {
	font-size: clamp(2rem, 3.5vw, 2.8rem);
	font-weight: 700;
	color: var(--rtd-blue);
	margin-bottom: 24px;
	line-height: 1.2;
}

.rtd-au-commitment__body {
	font-size: 1.1rem;
	line-height: 1.75;
	color: var(--rtd-dark);
	margin-bottom: 20px;
}

.rtd-au-commitment__accent {
	font-size: clamp(1.1rem, 2vw, 1.5rem);
	font-weight: 700;
	color: var(--rtd-blue);
	line-height: 1.35;
	margin-bottom: 20px;
}

/* About Us responsive */
@media (max-width: 1024px) {
	.rtd-au-intro__cols,
	.rtd-au-different__cols,
	.rtd-au-commitment__cols {
		grid-template-columns: 1fr;
	}

	.rtd-au-results__grid {
		grid-template-columns: 1fr 1fr;
	}

	.rtd-au-different__photos {
		height: 360px;
	}
}

@media (max-width: 600px) {
	.rtd-au-results__grid {
		grid-template-columns: 1fr;
	}

	.rtd-au-different__photos {
		height: 300px;
	}
}

/* =============================================
   HOW IT WORKS — INTRO SECTION
   ============================================= */

.rtd-hiw-intro {
	background-color: var(--rtd-white);
	padding: 80px 0;
}

.rtd-hiw-intro__cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.rtd-hiw-intro__image {
	border-radius: var(--rtd-radius-md);
	overflow: hidden;
}

.rtd-hiw-intro__image img {
	width: 100%;
	display: block;
}

.rtd-hiw-intro__label {
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--rtd-blue);
	margin-bottom: 10px;
}

.rtd-hiw-intro__heading {
	font-size: clamp(1.4rem, 2.5vw, 1.75rem);
	font-weight: 700;
	color: var(--rtd-blue);
	line-height: 1.3;
	margin-bottom: 24px;
}

.rtd-hiw-intro__body {
	font-size: 1.05rem;
	line-height: 1.8;
	color: var(--rtd-dark);
	margin-bottom: 20px;
}

.rtd-hiw-intro__list {
	list-style: disc;
	padding-left: 24px;
	margin-bottom: 20px;
}

.rtd-hiw-intro__list li {
	font-size: 1.05rem;
	line-height: 1.8;
	color: var(--rtd-dark);
	margin-bottom: 6px;
	list-style: disc;
}

.rtd-hiw-intro__cta {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--rtd-orange);
	margin-bottom: 16px;
	line-height: 1.3;
}

/* =============================================
   HOW IT WORKS — BENEFITS SECTION
   ============================================= */

.rtd-hiw-benefits {
	background-color: var(--rtd-cream);
	padding: 80px 0;
}

.rtd-hiw-benefits__cols {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 80px;
	align-items: center;
}

.rtd-hiw-benefits__heading {
	font-size: clamp(1.4rem, 2.5vw, 1.75rem);
	font-weight: 700;
	color: var(--rtd-blue);
	line-height: 1.3;
	margin-bottom: 28px;
}

.rtd-hiw-benefits__body {
	font-size: 1.05rem;
	line-height: 1.8;
	color: var(--rtd-dark);
	margin-bottom: 20px;
}

.rtd-hiw-benefits__body strong {
	font-weight: 700;
	color: var(--rtd-dark);
}

.rtd-hiw-benefits__photos {
	position: relative;
	height: 420px;
}

.rtd-hiw-benefits__photo {
	position: absolute;
	border-radius: 50%;
	overflow: hidden;
}

.rtd-hiw-benefits__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.rtd-hiw-benefits__photo--lg {
	width: 270px;
	height: 270px;
	top: 0;
	right: 30px;
}

.rtd-hiw-benefits__photo--md {
	width: 170px;
	height: 170px;
	bottom: 20px;
	right: 10px;
}

.rtd-hiw-benefits__photo--sm {
	width: 210px;
	height: 210px;
	bottom: 50px;
	left: 0;
}

/* =============================================
   HOW IT WORKS — STORIES SECTION
   ============================================= */

.rtd-hiw-stories {
	background-color: var(--rtd-white);
	padding: 80px 0;
}

.rtd-hiw-stories__label {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--rtd-orange);
	margin-bottom: 14px;
	text-align: center;
}

.rtd-hiw-stories__heading {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 700;
	color: var(--rtd-blue);
	line-height: 1.2;
	margin-bottom: 16px;
	text-align: center;
}

.rtd-hiw-stories__sub {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--rtd-dark);
	text-align: center;
	max-width: 600px;
	margin: 0 auto 56px;
}

.rtd-hiw-stories__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.rtd-hiw-story-card {
	background-color: var(--rtd-cream);
	border-radius: var(--rtd-radius-md);
	padding: 40px 36px;
}

.rtd-hiw-story-card__title {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--rtd-blue);
	line-height: 1.35;
	margin-bottom: 16px;
}

.rtd-hiw-story-card__body {
	font-size: 0.9375rem;
	line-height: 1.75;
	color: var(--rtd-dark);
}

/* HIW responsive */
@media (max-width: 1024px) {
	.rtd-hiw-intro__cols,
	.rtd-hiw-benefits__cols {
		grid-template-columns: 1fr;
	}

	.rtd-hiw-benefits__cols {
		gap: 48px;
	}

	.rtd-hiw-benefits__photos {
		height: 360px;
	}

	.rtd-hiw-stories__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 600px) {
	.rtd-hiw-benefits__photos {
		height: 300px;
	}

	.rtd-hiw-benefits__photo--lg {
		width: 200px;
		height: 200px;
	}

	.rtd-hiw-benefits__photo--sm {
		width: 155px;
		height: 155px;
	}

	.rtd-hiw-benefits__photo--md {
		width: 130px;
		height: 130px;
	}
}

/* =============================================
   INTERNAL PAGE HERO
   ============================================= */

.rtd-page-hero {
	background-color: var(--rtd-blue);
	padding: 80px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
	margin-bottom:0px;
}

.rtd-page-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url('/wp-content/uploads/2026/07/RTD_Dots_Blue-1.png');
	background-size: cover;
	background-position: center;
	opacity: 1;
	pointer-events: none;
	z-index: 0;
}

.rtd-page-hero .rtd-container {
	position: relative;
	z-index: 1;
}

.rtd-page-hero h1 {
	font-size: clamp(2.25rem, 5vw, 4rem);
	font-weight: 700;
	color: var(--rtd-white);
	line-height: 1.15;
	margin: 0;
}

/* ==========================================================
   HOW IT WORKS — WHITEPAPER CTA BAND
   ========================================================== */
.rtd-wp-cta {
  background: var(--rtd-cream);
  padding: 88px 32px 96px;
}
.rtd-wp-cta__inner {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  align-items: center;
}
.rtd-wp-cta__cover-wrap {
  position: relative;
  width: 220px;
  perspective: 1400px;
}
.rtd-wp-cta__cover {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 3px;
  transform: rotate(-3deg) rotateY(-8deg);
  box-shadow: 0 1px 2px rgba(15,30,70,0.10), 0 10px 22px rgba(15,30,70,0.14), 0 28px 50px rgba(15,30,70,0.18);
  transition: transform 0.45s cubic-bezier(0.2,0.7,0.2,1), box-shadow 0.45s ease;
}
.rtd-wp-cta__cover:hover {
  transform: rotate(-1deg) rotateY(-3deg) translateY(-6px);
  box-shadow: 0 1px 2px rgba(15,30,70,0.10), 0 14px 28px rgba(15,30,70,0.18), 0 36px 64px rgba(15,30,70,0.22);
}
.rtd-wp-cta__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

@media screen and (max-width:768px){
	.rtd-wp-cta__content {
		align-items:center;
		text-align:center;
	}
}
.rtd-wp-cta__tag {
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.15;
  color: var(--rtd-daybreak);
  margin: 0 0 12px;
  letter-spacing: -0.008em;
}
.rtd-wp-cta__sub {
  font-weight: 400;
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.6;
  color: var(--rtd-muted);
  margin: 0;
  max-width: 560px;
}
.rtd-wp-cta__action { margin-top: 28px; }


/* ==========================================================
   HOW IT WORKS — STORIES
   ========================================================== */
.rtd-stories {
  background: var(--rtd-white);
  padding: 110px 32px 120px;
}
.rtd-stories__inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}
.rtd-stories__title {
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.12;
  color: var(--rtd-blue);
  margin: 0 0 18px;
  letter-spacing: -0.012em;
}
.rtd-stories__lead {
  font-weight: 400;
  font-size: clamp(17px, 1.55vw, 19.5px);
  line-height: 1.55;
  color: var(--rtd-muted);
  margin: 0 auto 56px;
  max-width: 820px;
}
.rtd-story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  text-align: left;
}
.rtd-story-card {
	height:100%;
  position: relative;
  background: var(--rtd-cream);
  border: 1px solid rgba(37,70,136,0.08);
  border-radius: 14px;
  padding: 44px 40px 38px;
  box-shadow: var(--rtd-card-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.32s cubic-bezier(0.2,0.7,0.2,1),
			  box-shadow 0.32s cubic-bezier(0.2,0.7,0.2,1),
			  border-color 0.32s ease;
}
.rtd-story-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--rtd-orange);
}
.rtd-story-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--rtd-card-shadow-hv);
  border-color: var(--rtd-sunlit-soft);
}
.rtd-story-kicker {
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rtd-cta-blue);
  margin: 0 0 14px;
}
.rtd-story-title {
  font-weight: 700;
  font-size: clamp(22px, 1.9vw, 26px);
  line-height: 1.25;
  color: var(--rtd-blue);
  margin: 0 0 22px;
  letter-spacing: -0.008em;
}
.rtd-story-body {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--rtd-dark);
  margin: 0 0 14px;
}
.rtd-story-punch {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 16.5px;
  line-height: 1.35;
  color: var(--rtd-cta-blue);
  margin: auto 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(37,70,136,0.10);
  letter-spacing: -0.003em;
}
.rtd-story-punch p { margin-bottom: 0; }
.rtd-story-punch img {
  width: 32px; height: 32px;
  flex-shrink: 0;
}

.rtd-story-punch p {
	color:var(--rtd-blue);
}


/* ==========================================================
   LANDING PAGE — MINIMAL HEADER
   ========================================================== */
.rtd-lp-header {
  background: var(--rtd-white);
  border-bottom: 1px solid var(--rtd-rule);
  padding: 0 36px;
  height: 72px;
  display: flex;
  align-items: center;
}
.rtd-lp-header__inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap:10px;
  justify-content: space-between;
}
.rtd-lp-header__logo img {
  height: 40px;
  width: auto;
  display: block;
}
.rtd-lp-header__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--rtd-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}
.rtd-lp-header__phone:hover { color: var(--rtd-orange); }

@media screen and (max-width:768px){
	.rtd-lp-header {
		padding:0 10px;
	}
}

/* ==========================================================
   LANDING PAGE — TRUST STRIP
   ========================================================== */
.rtd-trust-strip {
  background: var(--rtd-cream);
  border-bottom: 1px solid var(--rtd-rule);
  padding: 64px 32px;
}
.rtd-trust-strip__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.rtd-trust-item__number {
  font-weight: 700;
  font-size: clamp(36px, 4vw, 52px);
  color: var(--rtd-blue);
  line-height: 1;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.rtd-trust-item__label {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  color: var(--rtd-muted);
  margin: 0;
}
.rtd-trust-item__label strong { color: var(--rtd-dark); font-weight: 600; }

/* ==========================================================
   LANDING PAGE — TESTIMONIAL WRAPPER
   ========================================================== */
.rtd-lp-quote {
  background: var(--rtd-white);
  padding: 96px 32px;
}

/* ==========================================================
   LANDING PAGE — CONVERSION FORM SECTION
   ========================================================== */
.rtd-convert {
  background: var(--rtd-cream);
  padding: 96px 32px 110px;
}
.rtd-convert__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.rtd-convert__left h2 {
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.12;
  color: var(--rtd-blue);
  margin: 0 0 18px;
  letter-spacing: -0.012em;
}
.rtd-convert__left p {
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--rtd-ink);
  margin: 0 0 28px;
}
.rtd-convert__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.rtd-convert__list li {
  padding: 12px 0 12px 28px;
  position: relative;
  border-top: 1px solid var(--rtd-rule);
  font-size: 15px;
  line-height: 1.55;
  color: var(--rtd-ink);
}
.rtd-convert__list li:last-child { border-bottom: 1px solid var(--rtd-rule); }
.rtd-convert__list li::before {
  content: "";
  position: absolute;
  left: 6px; top: 19px;
  width: 12px; height: 2px;
  background: var(--rtd-orange);
  border-radius: 2px;
}
.rtd-convert__list li strong { color: var(--rtd-blue); font-weight: 600; }
.rtd-convert__form-card {
  background: var(--rtd-white);
  border: 1px solid var(--rtd-rule);
  border-radius: 14px;
  padding: 44px 40px;
  box-shadow: var(--rtd-card-shadow);
  position: sticky;
  top: 24px;
}
.rtd-convert__form-card h3 {
  font-weight: 700;
  font-size: 26px;
  color: var(--rtd-cta-blue);
  margin: 0 0 8px;
  line-height: 1.2;
}
.rtd-convert__form-card p {
  font-size: 15px;
  color: var(--rtd-dark);
  margin: 0 0 28px;
  line-height: 1.5;
}

/* ==========================================================
   LANDING PAGE — MINIMAL FOOTER
   ========================================================== */
.rtd-lp-footer {
  background: var(--rtd-blue);
  padding: 28px 36px;
}
.rtd-lp-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.rtd-lp-footer img {
  height: 50px;
  width: auto;
  display: block;
}
.rtd-lp-footer__legal {
  font-size: 12.5px;
  color: rgba(255,255,255,0.50);
  margin: 0;
}
.rtd-lp-footer__legal a {
  color: rgba(255,255,255,0.60);
  text-decoration: none;
  margin-left: 18px;
  transition: color 0.2s ease;
}
.rtd-lp-footer__legal a:hover { color: var(--rtd-sunlit); }

/* Landing page responsive */
@media (max-width: 860px) {
  .rtd-convert__inner { grid-template-columns: 1fr; }
  .rtd-convert__form-card { position: static; }
  .rtd-trust-strip__inner { grid-template-columns: 1fr; gap: 40px; }
}
