/**
 * R&D Tax Credits landing page — scoped styles.
 */

/* ==========================================================================
   Design tokens (landing scope only)
   ========================================================================== */

.ac-rd-landing {
	--ac-rd-max-width: 1180px;
	--ac-rd-max-narrow: 760px;
	--ac-rd-max-calculator: 72rem;
	--ac-rd-section-pad: clamp(3.25rem, 6vw, 5.5rem);
	--ac-rd-card-radius: 1rem;
	--ac-rd-card-shadow: 0 4px 24px rgba(0, 60, 59, 0.08);
	--ac-rd-card-shadow-hover: 0 8px 32px rgba(0, 60, 59, 0.12);
	--ac-rd-container-pad: clamp(1.25rem, 4vw, 2rem);
	color: var(--darkgreen);
}

/* ==========================================================================
   Containers
   ========================================================================== */

.ac-rd-landing .container {
	max-width: var(--ac-rd-max-width);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--ac-rd-container-pad);
	padding-right: var(--ac-rd-container-pad);
}

.ac-rd-landing .container--narrow {
	max-width: var(--ac-rd-max-narrow);
}

.ac-rd-landing .container--calculator {
	max-width: var(--ac-rd-max-calculator);
}

.ac-rd-landing .container--hero {
	max-width: min(1320px, 96vw);
}

/* ==========================================================================
   Typography (scoped — do not affect global theme)
   ========================================================================== */

.ac-rd-landing h1,
.ac-rd-landing .ac-rd-hero__heading h1 {
	font-size: clamp(2rem, 4.5vw, 3rem);
	line-height: 1.15;
	font-weight: var(--fw-700);
	margin: 0 0 1rem;
}

.ac-rd-landing h2,
.ac-rd-landing .ac-rd-section__header h2,
.ac-rd-landing .ac-rd-hero__estimate-title {
	font-size: clamp(1.5rem, 3vw, 2rem);
	line-height: 1.25;
	font-weight: var(--fw-700);
	margin: 0 0 0.75rem;
}

.ac-rd-landing h3,
.ac-rd-landing .ac-rd-card__heading h3 {
	font-size: clamp(1.125rem, 2vw, 1.25rem);
	line-height: 1.35;
	font-weight: var(--fw-600);
	margin: 0 0 0.5rem;
}

.ac-rd-landing h4 {
	font-size: 1.0625rem;
	line-height: 1.4;
	font-weight: var(--fw-600);
	margin: 0 0 0.5rem;
}

.ac-rd-landing p {
	margin: 0 0 1rem;
	line-height: 1.65;
}

.ac-rd-landing p:last-child {
	margin-bottom: 0;
}

.ac-rd-landing .ac-rd-card__body p,
.ac-rd-landing .ac-rd-accordion__answer p,
.ac-rd-landing .ac-rd-hero__intro p {
	margin-bottom: 0.75rem;
}

.ac-rd-landing ul:not([class]),
.ac-rd-landing .ac-rd-card__body ul {
/*	margin: 0 0 1rem;
	padding-left: 1.25rem; */
}

.ac-rd-landing .ac-rd-section__header--center h2,
.ac-rd-landing .ac-rd-section__header--center h3 {
	margin-left: auto;
	margin-right: auto;
}

/* ==========================================================================
   Sections
   ========================================================================== */

/* Override theme `section { margin-bottom: var(--gutter-l); }` */
.ac-rd-landing section {
	margin-bottom: 0;
}

.ac-rd-section {
	padding: var(--ac-rd-section-pad) 0;
}

/* Compact rhythm — explicit fills so padding never shows as white gutters */
.ac-rd-landing > .ac-rd-section:not(.ac-rd-hero) {
	padding-top: clamp(1.75rem, 3.5vw, 2.75rem);
	padding-bottom: clamp(1.75rem, 3.5vw, 2.75rem);
}

.ac-rd-landing > .ac-rd-section:not(.ac-rd-hero) + .ac-rd-section {
	padding-top: clamp(1.25rem, 2.5vw, 1.75rem);
}

.ac-rd-row-02,
.ac-rd-row-09,
.ac-rd-row-11,
.ac-rd-row-15,
.ac-rd-row-17,
.ac-rd-hmrc {
	background: var(--white);
}

.ac-rd-landing .ac-rd-row-13 {
	background: #f8fcfa;
}

.ac-rd-section--alt {
	background: var(--lightgreen);
}

.ac-rd-section--dark {
	background: var(--darkgreen);
	color: var(--white);
}

.ac-rd-section--dark h1,
.ac-rd-section--dark h2,
.ac-rd-section--dark h3,
.ac-rd-section--dark h4,
.ac-rd-section--dark p,
.ac-rd-section--dark li {
	color: var(--white);
}

.ac-rd-section__header {
	margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.ac-rd-section__header--center {
	text-align: center;
	max-width: 42rem;
	margin-left: auto;
	margin-right: auto;
}

.ac-rd-section__header--center > * + * {
	margin-top: var(--gutter-xs);
}

.ac-rd-section__footer {
	margin-top: clamp(2rem, 4vw, 3rem);
}

.ac-rd-section__footer--center {
	text-align: center;
}

.ac-rd-section__note {
	margin-top: var(--gutter-s);
}

.ac-rd-section__note--center {
	text-align: center;
}

/* ==========================================================================
   Card system
   ========================================================================== */

.ac-rd-card {
	background: var(--white);
	border: 1px solid rgba(0, 60, 59, 0.1);
	border-radius: var(--ac-rd-card-radius);
	padding: clamp(1.25rem, 2.5vw, 1.75rem);
	box-shadow: var(--ac-rd-card-shadow);
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.ac-rd-section--alt .ac-rd-card {
	border-color: rgba(0, 60, 59, 0.08);
}

.ac-rd-card:hover {
	box-shadow: var(--ac-rd-card-shadow-hover);
}

.ac-rd-card__heading {
	font-weight: var(--fw-600);
	margin-bottom: 0.5rem;
}

.ac-rd-card__heading h3,
.ac-rd-card__heading h4,
.ac-rd-card__heading p {
	margin: 0;
}

.ac-rd-card__body {
	font-size: 0.9375rem;
	line-height: 1.6;
}

.ac-rd-card__warning {
	margin-top: 0.75rem;
	font-size: 0.875rem;
	font-weight: var(--fw-600);
	color: #b45309;
}

/* ==========================================================================
   Buttons (landing scope — brand pill buttons)
   ========================================================================== */

.ac-rd-landing .btn,
.ac-rd-landing .wpcf7-submit,
.ac-rd-landing input[type="submit"].wpcf7-form-control {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	max-width: 100%;
	font-size: 1rem;
	line-height: 1.5;
	font-weight: var(--fw-500);
	padding: 18px 23px;
	border-radius: 66px;
	min-height: 0;
	text-align: center;
}

.ac-rd-landing .ac-rd-hero__ctas .btn {
	flex: 0 0 auto;
	min-width: 0;
}

.ac-rd-btn-block {
	display: block;
	width: 100%;
	text-align: center;
	margin-top: 0.75rem;
}

@media (max-width: 767px) {
	.ac-rd-landing .ac-rd-hero__ctas .btn,
	.ac-rd-landing .ac-rd-calculator .btn,
	.ac-rd-landing .ac-rd-calculator__cta,
	.ac-rd-landing .ac-rd-calculator__continue {
		width: 100%;
	}
}

/* ==========================================================================
   Hero
   ========================================================================== */

.ac-rd-hero {
	background: var(--white);
	padding-top: clamp(2rem, 4vw, 3.5rem);
	padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.ac-rd-hero__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(2rem, 4vw, 3rem);
	align-items: start;
}

@media (min-width: 992px) {
	.ac-rd-hero__grid {
		grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
		align-items: center;
		gap: clamp(2rem, 4vw, 3.5rem);
	}
}

.ac-rd-hero__intro {
	font-size: 1.0625rem;
	max-width: 40rem;
}

.ac-rd-hero__proof-points {
	list-style: none;
	margin: clamp(1.5rem, 3vw, 2.25rem) 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

@media (min-width: 640px) {
	.ac-rd-hero__proof-points {
		grid-template-columns: 1fr 1fr;
		gap: 1.25rem 1.75rem;
	}
}

.ac-rd-hero__proof-point {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	padding: 0;
	background: transparent;
	border-radius: 0;
}

.ac-rd-hero__proof-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
}

.ac-rd-hero__proof-icon img {
	width: 2rem;
	height: 2rem;
	object-fit: contain;
	display: block;
}

.ac-rd-hero__proof-copy {
	min-width: 0;
}

.ac-rd-hero__proof-title {
	font-weight: var(--fw-700);
	font-size: 1rem;
	line-height: 1.35;
	color: var(--darkgreen);
	margin-bottom: 0.25rem;
}

.ac-rd-hero__proof-title p {
	margin: 0;
	font-weight: inherit;
	font-size: inherit;
}

.ac-rd-hero__proof-desc {
	font-weight: var(--fw-400);
	font-size: 0.875rem;
	line-height: 1.5;
	color: rgba(0, 60, 59, 0.75);
}

.ac-rd-hero__proof-desc p {
	margin: 0;
	font-weight: inherit;
	font-size: inherit;
	opacity: 1;
}

.ac-rd-hero__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: clamp(1.25rem, 3vw, 2rem);
}

/* Quick estimate card */
.ac-rd-hero__estimate {
	background: var(--white);
	border-radius: var(--ac-rd-card-radius);
	box-shadow: 0 16px 48px rgba(0, 60, 59, 0.15);
	overflow: hidden;
	border: 1px solid rgba(0, 60, 59, 0.08);
}

.ac-rd-hero__estimate-header {
	background: var(--darkgreen);
	padding: 1.25rem 1.5rem;
}

.ac-rd-hero__estimate-title {
	color: var(--white);
	font-size: 1.25rem;
	margin: 0;
    margin-bottom: 0px !important;
}

.ac-rd-hero__estimate-body {
	padding: 1.5rem;
	background: linear-gradient(180deg, #f8fffc 0%, var(--white) 100%);
}

.ac-rd-hero__estimate-lead {
	color: var(--darkgreen);
	font-size: 0.875rem;
	margin-bottom: 1.25rem;
	opacity: 0.9;
}

.ac-rd-hero__estimate .ac-rd-field-label {
	display: block;
	font-weight: var(--fw-600);
	font-size: 0.875rem;
	margin-bottom: 0.5rem;
    margin-top: 0.5rem;
	color: var(--darkgreen);
}

.ac-rd-hero__estimate .ac-rd-input {
	background: var(--white);
	border: 1px solid var(--medgrey);
	color: var(--darkgreen);
}

.ac-rd-hero__estimate .ac-rd-input::placeholder {
	color: rgba(0, 60, 59, 0.45);
}

.ac-rd-hero__estimate-select {
	display: block;
	width: 100%;
	margin-bottom: 1rem;
	padding: 0.875rem 1rem;
	border: 1px solid var(--medgrey);
	border-radius: 0.75rem;
	font-size: 1rem;
	font-family: inherit;
	color: var(--darkgreen);
	background: var(--white);
}

.ac-rd-hero__estimate-select:focus {
	outline: none;
	border-color: var(--darkgreen);
	box-shadow: 0 0 0 3px rgba(0, 255, 157, 0.25);
}

/* Icon / stat strip */
.ac-rd-hero__icon-strip {
	list-style: none;
	margin: clamp(2.5rem, 5vw, 3.5rem) 0 0;
	padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1rem, 2vw, 1.5rem);
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem 0.75rem;
	background: var(--white);
	border: 0;
	border-top: 1px solid rgba(0, 60, 59, 0.14);
	border-bottom: 1px solid rgba(0, 60, 59, 0.14);
	border-radius: 0;
	box-shadow: none;
}

@media (min-width: 640px) {
	.ac-rd-hero__icon-strip {
		grid-template-columns: repeat(2, 1fr);
		gap: 0;
	}
}

@media (min-width: 992px) {
	.ac-rd-hero__icon-strip {
		grid-template-columns: repeat(4, 1fr);
	}
}

.ac-rd-hero__icon-strip-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	text-align: center;
	padding: 1rem 1.25rem;
}

@media (min-width: 992px) {
	.ac-rd-hero__icon-strip-item {
		padding: 1.25rem 1.5rem;
	}
}

.ac-rd-hero__icon-strip-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	margin-bottom: 0.75rem;
}

.ac-rd-hero__icon-strip-icon img {
	width: 3rem;
	height: 3rem;
	object-fit: contain;
	display: block;
}

.ac-rd-hero__icon-strip-stat {
	margin: 0 0 0.35rem;
	font-size: clamp(1.375rem, 2.5vw, 1.75rem);
	font-weight: var(--fw-700);
	line-height: 1.2;
	color: var(--darkgreen);
}

.ac-rd-hero__icon-strip-label {
	margin: 0;
	font-size: 0.9375rem;
	font-weight: var(--fw-400);
	line-height: 1.4;
	color: rgba(0, 60, 59, 0.72);
}

/* ==========================================================================
   Layout utilities
   ========================================================================== */

.ac-rd-split {
	display: grid;
	gap: var(--gutter-m);
}

@media (min-width: 992px) {
	.ac-rd-split {
		grid-template-columns: 1fr 1fr;
		align-items: center;
		gap: clamp(2rem, 4vw, 3.5rem);
	}
}

.ac-rd-card-grid {
	display: grid;
	gap: 1.25rem;
}

.ac-rd-card-grid--2 {
	grid-template-columns: 1fr;
}

@media (min-width: 768px) {
	.ac-rd-card-grid--2 {
		grid-template-columns: 1fr 1fr;
	}

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

	.ac-rd-card-grid--costs {
		grid-template-columns: repeat(3, 1fr);
	}

	.ac-rd-card-grid--support {
		grid-template-columns: repeat(3, 1fr);
	}
}


/* Row 1 — split: copy left, stacked benefit cards right */
.ac-rd-row-01__layout {
	align-items: start;
}

.ac-rd-row-01__heading h2,
.ac-rd-row-01__heading h3 {
	margin-bottom: 1rem;
}

.ac-rd-row-01__intro {
	font-size: 1rem;
	line-height: 1.6;
	color: rgba(0, 60, 59, 0.85);
}

.ac-rd-row-01__intro p {
	margin: 0 0 1rem;
}

.ac-rd-row-01__intro p:last-child {
	margin-bottom: 0;
}

.ac-rd-text-cta {
	display: inline-block;
	margin-top: clamp(1.25rem, 3vw, 1.75rem);
	font-size: 1rem;
	font-weight: var(--fw-600);
	line-height: 1.5;
	color: var(--darkgreen);
	text-decoration: none;
	transition: color 0.15s ease;
}

.ac-rd-text-cta:hover,
.ac-rd-text-cta:focus {
	color: #0d5a5a;
	text-decoration: underline;
}

.ac-rd-row-01__cards {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.ac-rd-row-01__card {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.25rem 1.5rem;
	background: var(--white);
	border: 1px solid rgba(0, 60, 59, 0.12);
	border-radius: var(--ac-rd-card-radius);
	box-shadow: none;
}

.ac-rd-row-01__card-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
}

.ac-rd-row-01__card-icon img {
	width: 3rem;
	height: 3rem;
	object-fit: contain;
	display: block;
    border-radius: 0.60rem;
}

.ac-rd-row-01__card-copy {
	min-width: 0;
}

.ac-rd-row-01__card-heading {
	font-weight: var(--fw-600);
	font-size: 1.0625rem;
	line-height: 1.35;
	color: var(--darkgreen);
	margin-bottom: 0.35rem;
}

.ac-rd-row-01__card-heading h3,
.ac-rd-row-01__card-heading h4,
.ac-rd-row-01__card-heading p {
	margin: 0;
	font-weight: inherit;
	font-size: inherit;
}

.ac-rd-row-01__card-body {
	font-size: 0.9375rem;
	line-height: 1.55;
	color: rgba(0, 60, 59, 0.75);
}

.ac-rd-row-01__card-body p {
	margin: 0;
}

/* ==========================================================================
   Row 2 — How much can you claim (split + claim card)
   ========================================================================== */

.ac-rd-row-02__layout {
	align-items: start;
}

.ac-rd-row-02__heading h2,
.ac-rd-row-02__heading h3 {
	margin-bottom: 1rem;
}

.ac-rd-row-02__intro {
	font-size: 1rem;
	line-height: 1.6;
	color: rgba(0, 60, 59, 0.85);
}

.ac-rd-row-02__intro p {
	margin: 0 0 1rem;
}

.ac-rd-row-02__intro p:last-child {
	margin-bottom: 0;
}

.ac-rd-row-02__nudge,
.ac-rd-row-02__cta-copy {
	margin-top: 1.25rem;
	font-size: 1rem;
	line-height: 1.6;
	color: rgba(0, 60, 59, 0.85);
}

.ac-rd-row-02__nudge p,
.ac-rd-row-02__cta-copy p {
	margin: 0 0 1rem;
}

.ac-rd-row-02__nudge p:last-child,
.ac-rd-row-02__cta-copy p:last-child {
	margin-bottom: 0;
}

.ac-rd-row-02__cta {
	margin-top: clamp(1.25rem, 3vw, 1.75rem);
}

.ac-rd-claim-card {
	background: var(--white);
	border: 1px solid rgba(0, 60, 59, 0.12);
	border-radius: var(--ac-rd-card-radius);
	box-shadow: var(--ac-rd-card-shadow);
	overflow: hidden;
}

.ac-rd-claim-card__main {
	padding: clamp(1.5rem, 3vw, 2rem);
}

.ac-rd-claim-card__stack {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.ac-rd-claim-card__row--spend {
	padding-bottom: 1.5rem;
	margin-bottom: 1.5rem;
	border-bottom: 1px solid rgba(0, 60, 59, 0.1);
}

.ac-rd-claim-card__row--claim {
	padding-bottom: 0;
}

.ac-rd-claim-card__label {
	margin: 0 0 0.5rem;
	font-size: 0.875rem;
	font-weight: var(--fw-500);
	color: rgba(0, 60, 59, 0.65);
}

.ac-rd-claim-card__value {
	margin: 0 0 0.75rem;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: var(--fw-700);
	line-height: 1.15;
	color: var(--darkgreen);
}

.ac-rd-claim-card__value--claim {
	color: #1a8f74;
}

.ac-rd-claim-card__bar {
	display: block;
	height: 0.5rem;
	margin-bottom: 0.75rem;
	border-radius: 999px;
	background: #e8f5f0;
	overflow: hidden;
}

.ac-rd-claim-card__bar-fill {
	display: block;
	height: 100%;
	width: 82%;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--darkgreen) 0%, #0d6b62 100%);
}

.ac-rd-claim-card__note {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.5;
	color: rgba(0, 60, 59, 0.72);
}

.ac-rd-claim-card__pills {
	list-style: none;
	margin: 1rem 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.ac-rd-claim-card__pill {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.625rem 1rem;
	background: var(--lightgreen);
	border-radius: 999px;
	font-size: 0.875rem;
	line-height: 1.35;
	color: var(--darkgreen);
}

.ac-rd-claim-card__pill-label {
	font-weight: var(--fw-500);
}

.ac-rd-claim-card__pill-value {
	font-weight: var(--fw-600);
	white-space: nowrap;
}

/* ==========================================================================
   Eligibility / industries
   ========================================================================== */

.ac-rd-eligibility-cards {
	display: grid;
	gap: var(--gutter-s);
}

@media (min-width: 768px) {
	.ac-rd-eligibility-cards {
		grid-template-columns: 1fr 1fr;
	}
}

.ac-rd-eligibility-card {
	background: var(--white);
	border-radius: var(--ac-rd-card-radius);
	padding: var(--gutter-s);
	box-shadow: var(--ac-rd-card-shadow);
	border: 1px solid rgba(0, 60, 59, 0.08);
}

.ac-rd-section--alt .ac-rd-eligibility-card {
	background: var(--white);
}

.ac-rd-list {
	list-style: none;
	margin: 1rem 0 0;
	padding: 0;
}

.ac-rd-list li {
	position: relative;
	padding-left: 1.75rem;
	margin-bottom: 0.75rem;
}

.ac-rd-list--check li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.15rem;
	width: 1.125rem;
	height: 1.125rem;
	background: url("../images/tick_icon.svg") no-repeat center / contain;
}

.ac-rd-section--dark .ac-rd-list--check li::before {
	color: var(--neongreen);
}

.ac-rd-industries {
	margin-top: var(--gutter-m);
	text-align: center;
}

.ac-rd-industries__grid {
	list-style: none;
	margin: 1.5rem 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

@media (min-width: 768px) {
	.ac-rd-industries__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.ac-rd-industries__item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	justify-content: center;
	font-size: 0.875rem;
	font-weight: var(--fw-500);
}

/* ==========================================================================
   Row 6 — How we address these challenges (mockup grid)
   ========================================================================== */

.ac-rd-row-06 {
	background: #f8fcfa;
}

.ac-rd-row-06 .ac-rd-section__header,
.ac-rd-row-07 .ac-rd-section__header {
	margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

.ac-rd-row-06__header {
	max-width: 48rem;
}

.ac-rd-row-06__header p {
	color: rgba(0, 60, 59, 0.82);
	line-height: 1.65;
}

.ac-rd-row-06__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	margin-top: clamp(1.25rem, 2.5vw, 1.75rem);
}

@media (min-width: 768px) {
	.ac-rd-row-06__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.5rem;
	}
}

.ac-rd-row-06__card {
	position: relative;
	padding: clamp(1.5rem, 3vw, 2rem);
	background: var(--white);
	border: 2px solid rgba(0, 60, 59, 0.1);
	border-radius: 1rem;
	box-shadow: 0 2px 12px rgba(0, 60, 59, 0.06);
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ac-rd-row-06__card::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 6rem;
	height: 6rem;
	background: rgba(127, 212, 168, 0.08);
	border-radius: 0 1rem 0 100%;
	pointer-events: none;
}

.ac-rd-row-06__card:hover {
	border-color: rgba(127, 212, 168, 0.55);
	box-shadow: 0 8px 24px rgba(0, 60, 59, 0.1);
}

.ac-rd-row-06__challenge-rule {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
}

.ac-rd-row-06__challenge-line {
	flex: 1;
	height: 1px;
	background: rgba(0, 60, 59, 0.2);
}

.ac-rd-row-06__challenge-tag {
	flex-shrink: 0;
	font-size: 0.6875rem;
	font-weight: var(--fw-600);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(0, 60, 59, 0.55);
}

.ac-rd-row-06__challenge-name {
	margin: 0 0 1.25rem;
	text-align: center;
	font-size: 0.9375rem;
	font-style: italic;
	font-weight: var(--fw-500);
	line-height: 1.45;
	color: rgba(0, 60, 59, 0.72);
}

.ac-rd-row-06__challenge-name p {
	margin: 0;
	font-size: inherit;
	font-style: inherit;
	font-weight: inherit;
	line-height: inherit;
	color: inherit;
}

.ac-rd-row-06__solution {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.ac-rd-row-06__card-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	background: var(--darkgreen);
	border-radius: 0.60rem;
	box-shadow: 0 4px 12px rgba(0, 60, 59, 0.15);
	transition: transform 0.2s ease;
}

.ac-rd-row-06__card:hover .ac-rd-row-06__card-icon {
	transform: scale(1.05);
}

.ac-rd-row-06__card-icon img {
	width: 3rem;
	height: 3rem;
	object-fit: contain;
    border-radius: 0.60rem;
/*	filter: brightness(0) saturate(100%) invert(84%) sepia(21%) saturate(746%) hue-rotate(99deg) brightness(103%) contrast(101%); */
}

.ac-rd-row-06__solution-copy {
	min-width: 0;
	flex: 1;
}

.ac-rd-row-06__solution-heading {
	font-weight: var(--fw-600);
	font-size: 1.0625rem;
	line-height: 1.35;
	color: var(--darkgreen);
	margin-bottom: 0.5rem;
}

.ac-rd-row-06__solution-heading h3,
.ac-rd-row-06__solution-heading h4,
.ac-rd-row-06__solution-heading p {
	margin: 0;
	font-weight: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

.ac-rd-row-06__solution-body {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: rgba(0, 60, 59, 0.78);
}

.ac-rd-row-06__solution-body p {
	margin: 0 0 0.75rem;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

.ac-rd-row-06__solution-body p:last-child {
	margin-bottom: 0;
}

/* Trust bar */
.ac-rd-row-06__trust {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 1.25rem;
	margin-top: clamp(1.5rem, 3vw, 2rem);
	padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.5rem, 4vw, 2.5rem);
	background: var(--darkgreen);
	border-radius: 1rem;
}

@media (min-width: 640px) {
	.ac-rd-row-06__trust {
		flex-direction: row;
		align-items: center;
		justify-content: center;
		gap: 0;
	}
}

.ac-rd-row-06__trust-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex: 1;
	min-width: 0;
}

@media (min-width: 640px) {
	.ac-rd-row-06__trust-item:first-child {
		padding-right: clamp(1.25rem, 3vw, 2rem);
		border-right: 1px solid rgba(255, 255, 255, 0.2);
	}

	.ac-rd-row-06__trust-item:last-child {
		padding-left: clamp(1.25rem, 3vw, 2rem);
	}
}

.ac-rd-row-06__trust-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
}

.ac-rd-row-06__trust-icon img {
	width: 3.8rem;
	height: 3.8rem;
	object-fit: contain;
	filter: brightness(0) saturate(100%) invert(84%) sepia(21%) saturate(746%) hue-rotate(99deg) brightness(103%) contrast(101%);
}

.ac-rd-row-06__trust,
.ac-rd-landing .ac-rd-row-06__trust {
	color: var(--white);
}

.ac-rd-row-06__trust p,
.ac-rd-row-06__trust li,
.ac-rd-row-06__trust h3,
.ac-rd-row-06__trust h4,
.ac-rd-row-06__trust strong,
.ac-rd-row-06__trust em,
.ac-rd-row-06__trust a {
	color: var(--white);
}

.ac-rd-row-06__trust-title {
	margin: 0 0 0.25rem;
	font-size: 1rem;
	font-weight: var(--fw-600);
	line-height: 1.35;
	color: var(--white);
}

.ac-rd-row-06__trust-title p,
.ac-rd-row-06__trust-title h3,
.ac-rd-row-06__trust-title h4 {
	margin: 0;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	color: inherit;
}

.ac-rd-row-06__trust-text {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.82);
}

.ac-rd-row-06__trust-text p,
.ac-rd-row-06__trust-text li {
	margin: 0;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

/* ==========================================================================
   Calculator wizard (row 8) — landing page only (.ac-rd-landing)
   ========================================================================== */

.ac-rd-calculator-section {
	background: #f8fcfa;
}

.ac-rd-row-09 .ac-rd-section__header {
	margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

.ac-rd-row-09 .ac-rd-section__footer {
	margin-top: clamp(1.25rem, 2.5vw, 1.75rem);
}

.ac-rd-landing .ac-rd-calculator--wizard {
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
}

.ac-rd-landing .ac-rd-calculator__shell {
	background: var(--white);
	border-radius: var(--ac-rd-card-radius);
	box-shadow: 0 16px 48px rgba(0, 60, 59, 0.12);
	overflow: hidden;
	border: 1px solid rgba(0, 60, 59, 0.08);
}

.ac-rd-landing .ac-rd-calculator__header {
	background: linear-gradient(135deg, var(--darkgreen) 0%, #0d5a5a 100%);
	padding: 1.5rem 1.75rem;
	color: var(--white);
}

.ac-rd-landing .ac-rd-calculator__header-title {
	margin: 0 0 1rem;
	font-size: 1.25rem;
	font-weight: var(--fw-600);
	color: var(--white);
}

.ac-rd-landing .ac-rd-calculator__progress {
	height: 0.5rem;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 999px;
	overflow: hidden;
}

.ac-rd-landing .ac-rd-calculator__progress-bar {
	display: block;
	height: 100%;
	background: #7fd4a8;
	border-radius: 999px;
	transition: width 0.4s ease;
}

.ac-rd-landing .ac-rd-calculator__body {
	padding: clamp(1.5rem, 4vw, 2.5rem);
	min-height: 22rem;
	display: flex;
	flex-direction: column;
}

.ac-rd-landing .ac-rd-calculator__step {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.ac-rd-landing .ac-rd-calculator__step[hidden] {
	display: none !important;
}

.ac-rd-landing .ac-rd-calculator__step-title {
	text-align: center;
	font-size: clamp(1.25rem, 2.5vw, 1.5rem);
	font-weight: var(--fw-700);
	margin: 0 0 0.5rem;
	color: var(--darkgreen);
}

.ac-rd-landing .ac-rd-calculator__step-lead {
	text-align: center;
	font-size: 0.9375rem;
	color: rgba(0, 60, 59, 0.75);
	margin: 0 0 1.75rem;
	line-height: 1.5;
}

.ac-rd-landing .ac-rd-calculator__back {
	align-self: flex-start;
	background: none;
	border: 0;
	padding: 0;
	margin-bottom: 1rem;
	font: inherit;
	font-size: 0.875rem;
	font-weight: var(--fw-500);
	color: rgba(0, 60, 59, 0.65);
	cursor: pointer;
}

.ac-rd-landing .ac-rd-calculator__back:hover {
	color: var(--darkgreen);
}

.ac-rd-landing .ac-rd-calculator__choices {
	display: grid;
	gap: 1rem;
}

.ac-rd-landing .ac-rd-calculator__choices--2 {
	grid-template-columns: 1fr 1fr;
}

@media (max-width: 479px) {
	.ac-rd-landing .ac-rd-calculator__choices--2 {
		grid-template-columns: 1fr;
	}
}

.ac-rd-landing .ac-rd-calculator__choice {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	min-height: 7rem;
	padding: 1.25rem 1rem;
	background: var(--white);
	border: 2px solid var(--medgrey);
	border-radius: var(--ac-rd-card-radius);
	cursor: pointer;
	font: inherit;
	color: var(--darkgreen);
	transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.ac-rd-landing .ac-rd-calculator__choice:hover {
	border-color: #7fd4a8;
	background: #e8f5f0;
	box-shadow: var(--ac-rd-card-shadow);
}

.ac-rd-landing .ac-rd-calculator__choice-icon {
	font-size: 2rem;
	line-height: 1;
	color: var(--neongreen);
}

.ac-rd-landing .ac-rd-calculator__choice-emoji {
	font-size: 2rem;
	line-height: 1;
}

.ac-rd-landing .ac-rd-calculator__choice-label {
	font-weight: var(--fw-600);
	font-size: 1rem;
}

.ac-rd-landing .ac-rd-calculator__choice-hint {
	font-size: 0.8125rem;
	color: rgba(0, 60, 59, 0.65);
}

.ac-rd-landing .ac-rd-calculator__alert {
	margin-top: 1.25rem;
	padding: 1rem 1.25rem;
	border-radius: 0.75rem;
	font-size: 0.875rem;
	line-height: 1.5;
}

.ac-rd-landing .ac-rd-calculator__alert--error {
	background: #fef2f2;
	border: 1px solid #fecaca;
	color: #991b1b;
}

.ac-rd-landing .ac-rd-calculator__alert p {
	margin: 0;
}

.ac-rd-landing .ac-rd-calculator__spend-display {
	text-align: center;
	margin-bottom: 1.5rem;
}

.ac-rd-landing .ac-rd-calculator__spend-value {
	font-size: clamp(2.25rem, 5vw, 3rem);
	font-weight: var(--fw-700);
	margin: 0 0 0.35rem;
	color: var(--darkgreen);
	line-height: 1.1;
}

.ac-rd-landing .ac-rd-calculator__spend-label {
	margin: 0;
	font-size: 0.875rem;
	color: rgba(0, 60, 59, 0.65);
}

.ac-rd-landing .ac-rd-calculator__slider-wrap {
	margin-bottom: 1.5rem;
}

.ac-rd-landing .ac-rd-calculator__slider {
	width: 100%;
	height: 0.5rem;
	margin: 0;
	accent-color: var(--darkgreen);
	cursor: pointer;
}

.ac-rd-landing .ac-rd-calculator__slider-labels {
	display: flex;
	justify-content: space-between;
	margin-top: 0.5rem;
	font-size: 0.75rem;
	color: rgba(0, 60, 59, 0.6);
}

.ac-rd-landing .ac-rd-calculator__field--subcontract {
	margin-bottom: 1.5rem;
}

.ac-rd-landing .ac-rd-calculator__field--subcontract label {
	display: block;
	font-weight: var(--fw-600);
	margin-bottom: 0.5rem;
	font-size: 0.9375rem;
}

.ac-rd-landing .ac-rd-calculator__field-hint {
	margin: 0.35rem 0 0;
	font-size: 0.8125rem;
	color: rgba(0, 60, 59, 0.6);
}

.ac-rd-landing .ac-rd-calculator .ac-rd-input {
	width: 100%;
	padding: 0.875rem 1rem;
	border: 1px solid var(--medgrey);
	border-radius: 0.75rem;
	font-size: 1rem;
	font-family: inherit;
	color: var(--darkgreen);
	background: var(--white);
}

.ac-rd-landing .ac-rd-calculator .ac-rd-input:focus {
	outline: none;
	border-color: var(--darkgreen);
	box-shadow: 0 0 0 3px rgba(0, 255, 157, 0.25);
}

.ac-rd-landing .ac-rd-calculator__select-label {
	display: block;
	font-weight: var(--fw-600);
	margin-bottom: 0.5rem;
	font-size: 0.9375rem;
}

.ac-rd-landing .ac-rd-calculator__select {
	width: 100%;
	padding: 0.875rem 1rem;
	border: 2px solid var(--medgrey);
	border-radius: 0.75rem;
	font-size: 1rem;
	font-family: inherit;
	color: var(--darkgreen);
	background: var(--white);
	margin-bottom: 1.25rem;
}

.ac-rd-landing .ac-rd-calculator__select:focus {
	outline: none;
	border-color: var(--darkgreen);
	box-shadow: 0 0 0 3px rgba(0, 255, 157, 0.25);
}

.ac-rd-landing .ac-rd-calculator__continue,
.ac-rd-landing .ac-rd-calculator__cta {
	display: block;
	width: 100%;
	text-align: center;
}

.ac-rd-landing .ac-rd-calculator__continue:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.ac-rd-landing .ac-rd-calculator__step--result {
	text-align: center;
}

.ac-rd-landing .ac-rd-calculator__result-layout {
	display: grid;
	gap: clamp(1.5rem, 3vw, 2rem);
	align-items: start;
}

@media (min-width: 900px) {
	.ac-rd-landing .ac-rd-calculator__result-layout {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	}

	.ac-rd-landing .ac-rd-calculator__step--result {
		text-align: left;
	}

	.ac-rd-landing .ac-rd-calculator__result-summary {
		text-align: center;
	}
}

.ac-rd-landing .ac-rd-calculator__result-summary {
	min-width: 0;
}

.ac-rd-landing .ac-rd-calculator__result-form.form-outer {
	text-align: left;
	background: #f8fffc;
	border: 1px solid rgba(0, 60, 59, 0.1);
	border-radius: var(--ac-rd-card-radius);
	padding: clamp(1.25rem, 3vw, 1.75rem);
	box-shadow: 0 8px 24px rgba(0, 60, 59, 0.08);
}

.ac-rd-landing .ac-rd-calculator__form-title {
	margin: 0 0 1rem;
	font-size: 1.125rem;
	font-weight: var(--fw-600);
	color: var(--darkgreen);
}

.ac-rd-landing .ac-rd-calculator__form-terms {
	margin-top: 1rem;
	font-size: 0.75rem;
	line-height: 1.5;
	color: rgba(0, 60, 59, 0.7);
}

.ac-rd-landing .ac-rd-calculator__form-terms p {
	margin: 0;
}

.ac-rd-landing .ac-rd-calculator__result-form.form-outer label,
.ac-rd-landing .ac-rd-calculator__result-form.form-outer p {
	color: var(--darkgreen);
}

/* Calculator CF7 — full-width fields on mobile / stacked result step */
@media (max-width: 899px) {
	.ac-rd-landing .ac-rd-calculator__result-form.form-outer {
		width: 100%;
		min-width: 0;
	}

	.ac-rd-landing .ac-rd-calculator__result-form.form-outer .wpcf7-form {
		display: grid;
		grid-template-columns: 1fr;
		gap: 1rem;
		width: 100%;
	}

	.ac-rd-landing .ac-rd-calculator__result-form.form-outer .form-wrap {
		display: contents !important;
		width: auto !important;
		margin: 0 !important;
		margin-top: 0 !important;
		float: none !important;
	}

	.ac-rd-landing .ac-rd-calculator__result-form.form-outer .wpcf7-form > label,
	.ac-rd-landing .ac-rd-calculator__result-form.form-outer .form-wrap > label,
	.ac-rd-landing .ac-rd-calculator__result-form.form-outer .wpcf7-form > p,
	.ac-rd-landing .ac-rd-calculator__result-form.form-outer .form-wrap > p {
		display: block;
		width: 100% !important;
		max-width: none !important;
		min-width: 0;
		margin: 0 !important;
		padding: 0 !important;
		float: none !important;
		grid-column: 1 / -1 !important;
	}

	.ac-rd-landing .ac-rd-calculator__result-form.form-outer .wpcf7-form label.form-full,
	.ac-rd-landing .ac-rd-calculator__result-form.form-outer .form-wrap label.form-full {
		grid-column: 1 / -1 !important;
	}

	.ac-rd-landing .ac-rd-calculator__result-form.form-outer .wpcf7-form label,
	.ac-rd-landing .ac-rd-calculator__result-form.form-outer .wpcf7-form .wpcf7-form-control-wrap {
		display: block;
		width: 100%;
	}

	.ac-rd-landing .ac-rd-calculator__result-form.form-outer .wpcf7-form input:not([type="checkbox"]):not([type="submit"]):not([type="hidden"]),
	.ac-rd-landing .ac-rd-calculator__result-form.form-outer .wpcf7-form select,
	.ac-rd-landing .ac-rd-calculator__result-form.form-outer .wpcf7-form textarea,
	.ac-rd-landing .ac-rd-calculator__result-form.form-outer .form-wrap input:not([type="checkbox"]):not([type="submit"]):not([type="hidden"]),
	.ac-rd-landing .ac-rd-calculator__result-form.form-outer .form-wrap select,
	.ac-rd-landing .ac-rd-calculator__result-form.form-outer .form-wrap textarea {
		display: block;
		width: 100% !important;
		max-width: 100% !important;
		box-sizing: border-box;
	}

	.ac-rd-landing .ac-rd-calculator__result-form.form-outer .wpcf7-form > .button-group,
	.ac-rd-landing .ac-rd-calculator__result-form.form-outer .form-wrap .button-group,
	.ac-rd-landing .ac-rd-calculator__result-form.form-outer .wpcf7-form > label:has(.wpcf7-submit),
	.ac-rd-landing .ac-rd-calculator__result-form.form-outer .form-wrap > label:has(.wpcf7-submit) {
		grid-column: 1 / -1 !important;
	}

	.ac-rd-landing .ac-rd-calculator__result-form.form-outer .wpcf7-form .button-group,
	.ac-rd-landing .ac-rd-calculator__result-form.form-outer .form-wrap .button-group {
		display: flex;
		justify-content: stretch;
		width: 100%;
	}

	.ac-rd-landing .ac-rd-calculator__result-form.form-outer .wpcf7-form .wpcf7-submit,
	.ac-rd-landing .ac-rd-calculator__result-form.form-outer .wpcf7-form input[type="submit"],
	.ac-rd-landing .ac-rd-calculator__result-form.form-outer .wpcf7-form .button-group .btn {
		width: 100% !important;
		max-width: none !important;
		justify-content: center;
	}
}

.ac-rd-landing .ac-rd-calculator__result-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	margin: 0 auto 1rem;
	border-radius: 50%;
	background: #7fd4a8;
	font-size: 2rem;
	font-weight: var(--fw-700);
	color: var(--darkgreen);
}

.ac-rd-landing .ac-rd-calculator__result-range {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: var(--fw-700);
	color: var(--darkgreen);
	margin: 0 0 0.5rem;
	line-height: 1.15;
}

.ac-rd-landing .ac-rd-calculator__result-range [data-ac-rd-result-prefix]:not([hidden]) {
	white-space: pre;
}

.ac-rd-landing .ac-rd-calculator__result-spend {
	font-size: 0.9375rem;
	color: rgba(0, 60, 59, 0.75);
	margin: 0 0 1.25rem;
}

.ac-rd-landing .ac-rd-calculator__result-box {
	text-align: left;
	background: #e8f5f0;
	border-radius: var(--ac-rd-card-radius);
	padding: 1.25rem 1.5rem;
	margin-bottom: 1.5rem;
}

.ac-rd-landing .ac-rd-calculator__result-context {
	margin: 0 0 1rem;
	font-size: 0.9375rem;
	line-height: 1.55;
	color: var(--darkgreen);
}

.ac-rd-landing .ac-rd-calculator__result-list {
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 0.875rem;
	color: rgba(0, 60, 59, 0.8);
}

.ac-rd-landing .ac-rd-calculator__result-list li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.5rem;
	line-height: 1.45;
}

.ac-rd-landing .ac-rd-calculator__result-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--neongreen);
	font-weight: var(--fw-700);
}

.ac-rd-landing .ac-rd-calculator__restart {
	display: block;
	width: 100%;
	margin-top: 0.75rem;
	padding: 0.5rem;
	background: none;
	border: 0;
	font: inherit;
	font-size: 0.875rem;
	color: rgba(0, 60, 59, 0.65);
	cursor: pointer;
}

.ac-rd-landing .ac-rd-calculator__restart:hover {
	color: var(--darkgreen);
}

/* Calculator modal (hero quick estimate) */
.ac-rd-calc-modal[hidden] {
	display: none !important;
}

.ac-rd-calc-modal {
	position: fixed;
	inset: 0;
	z-index: 100050;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(0.75rem, 2vw, 1.5rem);
}

.ac-rd-calc-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 30, 29, 0.65);
	cursor: pointer;
}

.ac-rd-calc-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(72rem, 100%);
	max-height: min(92vh, 900px);
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

.ac-rd-calc-modal__close {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	color: var(--white);
	font-size: 1.75rem;
	line-height: 1;
	cursor: pointer;
	transition: background 0.15s ease;
}

.ac-rd-calc-modal__close:hover,
.ac-rd-calc-modal__close:focus {
	background: rgba(255, 255, 255, 0.3);
	outline: none;
}

.ac-rd-calc-modal .ac-rd-calculator__shell {
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

body.ac-rd-calc-modal-open {
	overflow: hidden;
}

/* ==========================================================================
   Steps (row 9)
   ========================================================================== */

.ac-rd-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1.5rem;
	counter-reset: ac-rd-step;
}

@media (min-width: 768px) {
	.ac-rd-steps--timeline {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1100px) {
	.ac-rd-steps--timeline {
		grid-template-columns: repeat(4, 1fr);
		gap: 0;
		position: relative;
		padding-top: 2rem;
	}

	.ac-rd-steps--timeline::before {
		content: "";
		position: absolute;
		top: 3.25rem;
		left: 12.5%;
		right: 12.5%;
		height: 3px;
		background: linear-gradient(90deg, var(--neongreen) 0%, var(--darkgreen) 50%, var(--neongreen) 100%);
		border-radius: 2px;
		z-index: 0;
	}
}

.ac-rd-step {
	background: var(--white);
	border-radius: var(--ac-rd-card-radius);
	padding: 1.5rem 1.25rem 1.25rem;
	box-shadow: var(--ac-rd-card-shadow);
	border: 1px solid rgba(0, 60, 59, 0.08);
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

@media (min-width: 1100px) {
	.ac-rd-steps--timeline .ac-rd-step {
		z-index: 1;
		margin: 0 0.5rem;
	}
}

.ac-rd-step__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 50%;
	background: var(--darkgreen);
	color: var(--neongreen);
	font-weight: var(--fw-700);
	font-size: 0.9375rem;
	margin-bottom: 0.5rem;
	position: relative;
	z-index: 2;
}

.ac-rd-step__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	margin-bottom: 0.75rem;
}

.ac-rd-step__icon img {
	width: 2.5rem;
	height: 2.5rem;
	object-fit: contain;
}

.ac-rd-step__content {
	width: 100%;
}

.ac-rd-step__heading h3,
.ac-rd-step__heading h4,
.ac-rd-step__heading p {
	margin-bottom: 0.35rem;
}

/* ==========================================================================
   Download guide (row 10) — dark conversion band
   ========================================================================== */

.ac-rd-download-guide.ac-rd-section--dark {
	padding: var(--ac-rd-section-pad) 0;
}

.ac-rd-download-guide__grid {
	display: grid;
	gap: clamp(2rem, 4vw, 3rem);
	align-items: center;
}

@media (min-width: 992px) {
	.ac-rd-download-guide__grid {
		grid-template-columns: 1fr 1fr;
		gap: clamp(2.5rem, 5vw, 4rem);
	}
}
@media (max-width: 746px) {
    .ac-rd-download-guide__grid {}
}

.ac-rd-download-guide__content {
	max-width: 36rem;
}

.ac-rd-download-guide__tag {
	display: inline-block;
	margin: 0 0 1rem;
	padding: 0.4rem 1rem;
	font-size: 0.8125rem;
	font-weight: var(--fw-600);
	line-height: 1.2;
	color: var(--darkgreen);
	background: #7fd4a8;
	border-radius: 999px;
}

.ac-rd-download-guide__content h2 {
	margin-bottom: 0.75rem;
}

.ac-rd-download-guide__content > p,
.ac-rd-download-guide__content .ac-rd-wysiwyg p {
	color: rgba(255, 255, 255, 0.88);
	line-height: 1.65;
}

.ac-rd-download-guide__highlight {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-top: clamp(1.5rem, 3vw, 2rem);
	padding: 1rem 1.25rem;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 0.75rem;
}

.ac-rd-download-guide__highlight-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
}

.ac-rd-download-guide__highlight-icon img {
	width: 3rem;
	height: 3rem;
	object-fit: contain;
	filter: brightness(0) saturate(100%) invert(84%) sepia(21%) saturate(746%) hue-rotate(99deg) brightness(103%) contrast(101%);
}

.ac-rd-download-guide__highlight-title {
	margin: 0 0 0.25rem;
	font-size: 1rem;
	font-weight: var(--fw-600);
	line-height: 1.35;
	color: var(--white);
}

.ac-rd-download-guide__highlight-meta {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.4;
	color: #b8e5d2;
}

.ac-rd-download-guide__content .ac-rd-list--check li,
.ac-rd-download-guide__content ul li {
	color: rgba(255, 255, 255, 0.92);
}

.ac-rd-download-guide__content ul {
	list-style: none;
	margin: 1rem 0 0;
	padding: 0;
}

.ac-rd-download-guide__content ul li {
	position: relative;
	padding-left: 1.75rem;
	margin-bottom: 0.75rem;
}

.ac-rd-download-guide__content ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.15rem;
	width: 1.125rem;
	height: 1.125rem;
	background: url("../images/tick_icon.svg") no-repeat center / contain;
}

.ac-rd-download-guide__card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background: var(--white);
	border-radius: 1rem;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.ac-rd-download-guide__media {
	margin: 0;
	line-height: 0;
}

.ac-rd-download-guide__media img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	object-position: center top;
}

.ac-rd-download-guide__form-body {
	max-width: none;
	padding: clamp(1.25rem, 3vw, 1.75rem);
	background: var(--white);
	color: var(--darkgreen);
	border-radius: 0;
	box-shadow: none;
}

.ac-rd-download-guide__form-title {
	color: var(--darkgreen);
	font-size: 1.375rem;
	margin: 0 0 1rem;
}

.ac-rd-download-guide__form-body p,
.ac-rd-download-guide__form-body label {
	color: var(--darkgreen);
}

/*
 * Row 10 only: CF7 outputs multiple sibling .form-wrap blocks (profession is isolated
 * in its own wrap with inline margin-top). Flatten wraps so all labels share one grid.
 */
.ac-rd-download-guide__form-body .wpcf7-form {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	width: 100%;
}

@media (min-width: 520px) {
	.ac-rd-download-guide__form-body .wpcf7-form {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.ac-rd-download-guide__form-body .form-wrap {
	display: contents !important;
	width: auto !important;
	margin: 0 !important;
	margin-top: 0 !important;
	float: none !important;
}

/* DTX profession field embeds a global <style> tag — disable inside this card only */
.ac-rd-download-guide__form-body style {
	display: none !important;
}

.ac-rd-download-guide__form-body .wpcf7-form > label,
.ac-rd-download-guide__form-body .form-wrap > label,
.ac-rd-download-guide__form-body .wpcf7-form > p,
.ac-rd-download-guide__form-body .form-wrap > p {
	display: block;
	min-width: 0;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
}

/* Full-width rows: submit, messages, honeypot */
.ac-rd-download-guide__form-body .wpcf7-form > .button-group,
.ac-rd-download-guide__form-body .form-wrap .button-group,
.ac-rd-download-guide__form-body .wpcf7-form > label:has(.wpcf7-submit),
.ac-rd-download-guide__form-body .form-wrap > label:has(.wpcf7-submit),
.ac-rd-download-guide__form-body .wpcf7-form > .wpcf7-response-output,
.ac-rd-download-guide__form-body .form-wrap .hidden-fields-container {
	grid-column: 1 / -1 !important;
}

/* Theme .form-full spans 2 cols — keep profession/select on the same half-width grid as inputs */
.ac-rd-download-guide__form-body .wpcf7-form label.form-full:has(select),
.ac-rd-download-guide__form-body .wpcf7-form label.form-full:has(input:not([type="submit"]):not([type="hidden"])) {
	grid-column: auto !important;
}

.ac-rd-download-guide__form-body .wpcf7-form > .button-group,
.ac-rd-download-guide__form-body .form-wrap .button-group {
	display: flex;
	justify-content: stretch;
	margin-top: 0.25rem;
}

.ac-rd-download-guide__form-body .wpcf7-form .button-group .btn,
.ac-rd-download-guide__form-body .wpcf7-form .wpcf7-submit,
.ac-rd-download-guide__form-body .wpcf7-form input[type="submit"] {
	width: 100% !important;
	max-width: none !important;
	justify-content: center;
	margin: 0 !important;
}

.ac-rd-download-guide__form-body .wpcf7-form label,
.ac-rd-download-guide__form-body .wpcf7-form .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

.ac-rd-download-guide__form-body .wpcf7-form input:not([type="checkbox"]):not([type="submit"]),
.ac-rd-download-guide__form-body .wpcf7-form select,
.ac-rd-download-guide__form-body .wpcf7-form textarea {
	display: block;
	width: 100% !important;
	max-width: none !important;
	min-height: 3rem;
	padding: 0.75rem 1rem !important;
	margin: 0 !important;
	border: 1px solid var(--medgrey) !important;
	border-radius: 0.5rem !important;
	font-size: 1rem !important;
	font-family: inherit;
	line-height: 1.4;
	color: var(--darkgreen) !important;
	background: var(--white) !important;
	box-sizing: border-box;
	-webkit-appearance: none;
	appearance: none;
}

/* Override CF7/DTX inline styles on profession select (border, height, padding) */
.ac-rd-download-guide__form-body .wpcf7-form select.wpcf7dtx-select,
.ac-rd-download-guide__form-body .wpcf7-form select.wpcf7-form-control[style],
.ac-rd-download-guide__form-body .wpcf7-form-control.wpcf7-select,
.ac-rd-download-guide__form-body select.wpcf7-form-control {
	height: auto !important;
	min-height: 3rem !important;
	padding: 0.75rem 1rem !important;
	padding-right: 2.5rem !important;
	margin: 0 !important;
	border: 1px solid var(--medgrey) !important;
	border-radius: 0.5rem !important;
	font-size: 1rem !important;
	background-color: var(--white) !important;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23003c3b' d='M1.4.6 6 5.2 10.6.6 12 2l-6 6-6-6z'/%3E%3C/svg%3E") !important;
	background-repeat: no-repeat !important;
	background-position: right 1rem center !important;
	background-size: 12px 8px !important;
	cursor: pointer;
}

@media screen and (max-width: 767px) {
	.ac-rd-download-guide__form-body .wpcf7-form select {
		height: auto !important;
		min-height: 3rem !important;
	}
}

.ac-rd-download-guide__form-body .form-wrap input::placeholder,
.ac-rd-download-guide__form-body .wpcf7-form input::placeholder {
	color: rgba(0, 60, 59, 0.45);
}

.ac-rd-download-guide__form-body .form-wrap input:focus,
.ac-rd-download-guide__form-body .form-wrap select:focus,
.ac-rd-download-guide__form-body .form-wrap textarea:focus,
.ac-rd-download-guide__form-body .wpcf7-form input:focus,
.ac-rd-download-guide__form-body .wpcf7-form select:focus,
.ac-rd-download-guide__form-body .wpcf7-form textarea:focus {
	outline: none;
	border-color: var(--darkgreen) !important;
	box-shadow: 0 0 0 3px rgba(0, 255, 157, 0.25);
}

.ac-rd-download-guide__form-body .wpcf7-not-valid-tip {
	font-size: 0.8125rem;
	margin-top: 0.35rem;
}

.ac-rd-download-guide__form-body .wpcf7-response-output {
	margin: 0.75rem 0 0;
	padding: 0.75rem 1rem;
	border-radius: 0.5rem;
	font-size: 0.875rem;
}

/* ==========================================================================
   CTA panel
   ========================================================================== */

.ac-rd-cta-panel {
	background: var(--darkgreen);
	color: var(--white);
	border-radius: var(--ac-rd-card-radius);
	padding: clamp(1.5rem, 3vw, 2.5rem);
	margin-top: var(--gutter-m);
	text-align: center;
	box-shadow: var(--ac-rd-card-shadow);
}

.ac-rd-cta-panel h2,
.ac-rd-cta-panel h3,
.ac-rd-cta-panel p {
	color: var(--white);
}

/* ==========================================================================
   Comparison table (row 13)
   ========================================================================== */

.ac-rd-landing .ac-rd-table-wrap {
	position: static;
	overflow-x: auto;
	margin: var(--gutter-m) 0;
	-webkit-overflow-scrolling: touch;
	border-radius: var(--ac-rd-card-radius);
	box-shadow: var(--ac-rd-card-shadow);
	border: 1px solid rgba(0, 60, 59, 0.08);
}

/* Scroll hint — table wider than viewport on mobile (Option A) */
.ac-rd-landing .ac-rd-table-wrap::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 2.75rem;
	border-radius: 0 var(--ac-rd-card-radius) var(--ac-rd-card-radius) 0;
	background: linear-gradient(90deg, rgba(248, 252, 250, 0) 0%, rgba(248, 252, 250, 0.92) 55%, #f8fcfa 100%);
	pointer-events: none;
}

.ac-rd-landing .ac-rd-table-scroll-hint {
	display: none;
	margin: -0.5rem 0 0.75rem;
	font-size: 0.8125rem;
	font-weight: var(--fw-500);
	color: rgba(0, 60, 59, 0.65);
	text-align: center;
}

@media (max-width: 991px) {
	.ac-rd-landing .ac-rd-table-scroll-hint {
		display: block;
	}
}

@media (min-width: 992px) {
	.ac-rd-landing .ac-rd-table-wrap::after {
		display: none;
	}
}

.ac-rd-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 44rem;
	background: var(--white);
}

.ac-rd-table th,
.ac-rd-table td {
	padding: 1rem 1.25rem;
	border-bottom: 1px solid rgba(0, 60, 59, 0.1);
	text-align: center;
	vertical-align: middle;
}

.ac-rd-table tbody tr:nth-child(even) {
	background: rgba(0, 60, 59, 0.02);
}

.ac-rd-table th:first-child,
.ac-rd-table td:first-child {
	text-align: left;
	font-weight: var(--fw-500);
	min-width: 11rem;
}

.ac-rd-table thead th {
	background: var(--darkgreen);
	color: var(--white);
	font-weight: var(--fw-600);
	padding-top: 1.25rem;
	padding-bottom: 1.25rem;
}

.ac-rd-table thead th small {
	display: block;
	font-weight: var(--fw-400);
	font-size: 0.8125rem;
	opacity: 0.9;
	margin-top: 0.25rem;
}

.ac-rd-table__highlight {
	background: rgba(0, 255, 157, 0.1);
}

.ac-rd-table thead .ac-rd-table__highlight {
	background: #004d45;
	position: relative;
}

.ac-rd-table__badge {
	display: inline-block;
	font-size: 0.6875rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	background: var(--neongreen);
	color: var(--darkgreen);
	font-weight: var(--fw-700);
	padding: 0.2rem 0.5rem;
	border-radius: 0.25rem;
	margin-bottom: 0.35rem;
}

.ac-rd-table__yes {
	color: #16a34a;
	font-weight: var(--fw-700);
	font-size: 1.125rem;
}

.ac-rd-table__no {
	color: #dc2626;
	font-weight: var(--fw-700);
}

.ac-rd-positioning-line {
	margin-top: 1rem;
	font-weight: var(--fw-500);
}

/* ==========================================================================
   Row 12 — HMRC scrutiny (text + mint support cards)
   ========================================================================== */

.ac-rd-landing .ac-rd-row-12.ac-rd-hmrc {
	background: var(--white);
}

.ac-rd-landing .ac-rd-row-12__layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1.5rem, 3vw, 2.5rem);
	align-items: start;
}

@media (min-width: 992px) {
	.ac-rd-landing .ac-rd-row-12__layout {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: clamp(2rem, 4vw, 3.5rem);
	}
}

.ac-rd-landing .ac-rd-row-12__content h2 {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	line-height: 1.2;
	color: var(--darkgreen);
	margin-bottom: 0.75rem;
}

.ac-rd-landing .ac-rd-row-12__content p {
	font-size: 1rem;
	line-height: 1.65;
	color: var(--darkgreen);
	margin: 0 0 1rem;
}

.ac-rd-landing .ac-rd-row-12__content p:last-child {
	margin-bottom: 0;
}

.ac-rd-landing .ac-rd-row-12__cards {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	min-width: 0;
}

.ac-rd-landing .ac-rd-row-12__card {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1rem 1.125rem;
	background: var(--lightgreen);
	border-radius: 12px;
	border: 1px solid rgba(0, 60, 59, 0.06);
}

.ac-rd-landing .ac-rd-row-12__card-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
}

.ac-rd-landing .ac-rd-row-12__card-icon img {
	display: block;
	width: 3rem;
	height: 3rem;
	object-fit: contain;
    border-radius: 0.60rem;
}

.ac-rd-landing .ac-rd-row-12__card-copy {
	min-width: 0;
	flex: 1;
}

.ac-rd-landing .ac-rd-row-12__card-heading {
	font-weight: var(--fw-600);
	font-size: 1.0625rem;
	line-height: 1.35;
	color: var(--darkgreen);
	margin-bottom: 0.25rem;
}

.ac-rd-landing .ac-rd-row-12__card-heading h3,
.ac-rd-landing .ac-rd-row-12__card-heading h4,
.ac-rd-landing .ac-rd-row-12__card-heading p {
	margin: 0;
	font: inherit;
	color: inherit;
}

.ac-rd-landing .ac-rd-row-12__card-body {
	font-size: 0.9375rem;
	line-height: 1.55;
	color: rgba(0, 60, 59, 0.82);
}

.ac-rd-landing .ac-rd-row-12__card-body p {
	margin: 0;
	color: inherit;
}

/* ==========================================================================
   Row 14 — case studies (contact page layout; base styles in alx-custom.css)
   ========================================================================== */

.ac-rd-landing .ac-rd-row-14.case-studies-section {
	padding-left: 0;
	padding-right: 0;
}

.ac-rd-landing .ac-rd-row-14 .ac-rd-case-studies-desktop {
	display: none !important;
}

.ac-rd-landing .ac-rd-row-14 .ac-rd-case-studies-mobile {
	display: block;
	padding-inline: var(--ac-rd-container-pad);
}

.ac-rd-landing .ac-rd-row-14.case-studies-section .container {
	width: 100%;
	max-width: var(--ac-rd-container-max, 1200px);
	margin-left: auto;
	margin-right: auto;
}

.ac-rd-landing .ac-rd-row-14.case-studies-section .alx-row.case h2,
.ac-rd-landing .ac-rd-row-14.case-studies-section .alx-row.case h2 * {
	color: var(--darkgreen);
}

.ac-rd-landing .ac-rd-row-14.case-studies-section .alx-row.case p,
.ac-rd-landing .ac-rd-row-14.case-studies-section .alx-row.case p * {
	color: var(--darkgreen);
}

.ac-rd-landing .ac-rd-row-14.case-studies-section .case-content h2,
.ac-rd-landing .ac-rd-row-14.case-studies-section .case-content p,
.ac-rd-landing .ac-rd-row-14.case-studies-section .case-content a,
.ac-rd-landing .ac-rd-row-14.case-studies-section .tag-heading {
	color: var(--darkgreen);
}

/* White card shell around each case study (landing override) */
.ac-rd-landing .ac-rd-row-14.case-studies-section .alx-cs-col {
	background: var(--white) !important;
	border: 1px solid rgba(0, 60, 59, 0.1);
	box-shadow: 0 8px 32px rgba(0, 60, 59, 0.08);
}

.ac-rd-landing .ac-rd-row-14.case-studies-section .case-content,
.ac-rd-landing .ac-rd-row-14.case-studies-section .case-content.mb {
	background: var(--white) !important;
}

.ac-rd-landing .ac-rd-row-14.case-studies-section .alx-cs-col {
	flex: 1 1 100%;
	width: 100%;
	max-width: 100%;
}

@media (min-width: 768px) {
	.ac-rd-landing .ac-rd-row-14 .ac-rd-case-studies-desktop {
		display: flex !important;
	}

	.ac-rd-landing .ac-rd-row-14 .ac-rd-case-studies-mobile {
		display: none !important;
	}

	.ac-rd-landing .ac-rd-row-14.case-studies-section .alx-row.case-studies,
	.ac-rd-landing .ac-rd-row-14.case-studies-section .ac-rd-case-studies-desktop {
		flex-wrap: wrap;
		gap: 1.5rem;
		align-items: flex-start;
		justify-content: center;
	}

	.ac-rd-landing .ac-rd-row-14.case-studies-section .alx-cs-col {
		flex: 1 1 calc(33.333% - 1rem);
		width: calc(33.333% - 1rem);
		max-width: calc(33.333% - 1rem);
	}
}

/* ==========================================================================
   Row 15 — Google reviews (contact-style, landing-scoped)
   ========================================================================== */

.ac-rd-landing .ac-rd-google-reviews {
	background: var(--white);
}

/* Match contact page: full-width container so Trustindex sizes like .review-outer */
.ac-rd-landing .ac-rd-google-reviews .container {
	width: 100% !important;
	max-width: 1280px;
	padding-left: 0;
	padding-right: 0;
}

.ac-rd-landing .ac-rd-google-reviews__outer {
	text-align: center;
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
}

.ac-rd-landing .ac-rd-google-reviews__logo,
.ac-rd-landing .ac-rd-google-reviews__intro {
	padding-left: var(--ac-rd-container-pad);
	padding-right: var(--ac-rd-container-pad);
}

.ac-rd-landing .ac-rd-google-reviews__logo {
	display: inline-block;
	margin-bottom: 0.5rem;
}

.ac-rd-landing .ac-rd-google-reviews__logo-img {
	display: block;
	max-width: 247px;
	width: 100%;
	height: auto;
	margin: 0 auto;
}

.ac-rd-landing .ac-rd-google-reviews__intro h2 {
	font-size: clamp(1.75rem, 4vw, 2rem);
	line-height: 1.25;
	text-align: center;
	color: var(--darkgreen);
	padding: 1rem 0 0.5rem;
	margin: 0 auto;
	max-width: 42rem;
}

.ac-rd-landing .ac-rd-google-reviews__intro p {
	max-width: 46rem;
	margin: 0 auto 1.5rem !important;
	text-align: center;
	color: var(--darkgreen);
	line-height: 1.6;
}

.ac-rd-landing .ac-rd-google-reviews__widget {
	width: 100%;
	max-width: 100%;
	margin: clamp(1rem, 3vw, 2rem) 0;
	overflow: visible;
}

.ac-rd-landing .ac-rd-google-reviews__widget .ti-widget {
	width: 100% !important;
	max-width: 100% !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

.ac-rd-landing .ac-rd-google-reviews__widget .ti-reviews-container-wrapper {
	width: 100% !important;
	max-width: 100% !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

@media (max-width: 767px) {
	.ac-rd-landing .ac-rd-google-reviews__widget .ti-widget {
		left: auto !important;
		right: auto !important;
		transform: none !important;
	}
}

.ac-rd-landing .ac-rd-google-reviews__cta {
	display: inline-block;
	text-align: center;
	text-decoration: none;
	margin: 1.5rem auto 0;
	padding: 0.875rem 1.5rem;
	border-radius: 100px;
	font-weight: var(--fw-500);
	color: var(--darkgreen) !important;
	background: var(--lightpurple);
	transition: background 0.2s ease, color 0.2s ease;
}

.ac-rd-landing .ac-rd-google-reviews__cta:hover {
	background: var(--darkpurple);
	color: var(--lightpurple) !important;
}

/* ==========================================================================
   Row 16 — FAQs (single centered column)
   ========================================================================== */

.ac-rd-landing .ac-rd-faq-sec__header {
	margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.ac-rd-landing .ac-rd-faq-sec__header h2 {
	text-align: center;
	margin-bottom: 0.75rem;
}

.ac-rd-landing .ac-rd-faq-sec__header p {
	text-align: center;
	max-width: 40rem;
	margin-left: auto;
	margin-right: auto;
}

.ac-rd-landing .ac-rd-faq {
	display: flex;
	flex-direction: column;
	gap: 0;
	width: 100%;
	max-width: 52rem;
	margin: 0 auto;
}

.ac-rd-landing .ac-rd-faq-wrap {
	border: 1px solid var(--darkgreen);
	border-radius: 16px;
	margin-bottom: 1.25rem;
	background: var(--white);
	overflow: hidden;
}

.ac-rd-landing .ac-rd-faq-wrap:last-child {
	margin-bottom: 0;
}

.ac-rd-landing .ac-rd-faq-accordion {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 1.25rem;
	background: var(--white);
	border: 0;
	cursor: pointer;
	text-align: left;
	font: inherit;
	font-weight: var(--fw-600);
	font-size: 1rem;
	line-height: 1.4;
	color: var(--darkgreen);
}

.ac-rd-landing .ac-rd-faq-accordion::after {
	content: "";
	flex-shrink: 0;
	width: 0.55rem;
	height: 0.55rem;
	border-right: 2px solid var(--darkgreen);
	border-bottom: 2px solid var(--darkgreen);
	transform: rotate(45deg);
	margin-top: -0.2rem;
	transition: transform 0.2s ease;
}

.ac-rd-landing .ac-rd-faq-accordion.active::after {
	transform: rotate(-135deg);
	margin-top: 0.15rem;
}

.ac-rd-landing .ac-rd-faq-panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.ac-rd-landing .ac-rd-faq-panel__inner {
	padding: 0 1.25rem 1.25rem;
	font-size: 0.9375rem;
	line-height: 1.65;
	color: var(--darkgreen);
}

.ac-rd-landing .ac-rd-faq-panel__inner p {
	margin: 0 0 0.75rem;
}

.ac-rd-landing .ac-rd-faq-panel__inner p:last-child {
	margin-bottom: 0;
}

/* ==========================================================================
   Row 17 — Related blog posts (tax claim card layout)
   ========================================================================== */

.ac-rd-landing .ac-rd-related-posts {
	background: var(--white);
	background-image: url(/wp-content/uploads/2023/02/grey-lines.svg);
	background-size: cover;
	background-position: top left;
	background-repeat: no-repeat;
}

.ac-rd-landing .ac-rd-related-posts .container.narrow {
	max-width: 1140px;
}

.ac-rd-landing .ac-rd-related-posts__title {
	text-align: center;
	color: var(--darkgreen);
	font-size: clamp(1.75rem, 4vw, 3rem);
	font-weight: var(--fw-600);
	margin: 0 0 clamp(1.5rem, 3vw, 2.5rem);
	line-height: 1.2;
}

.ac-rd-landing .ac-rd-related-posts__desktop {
	display: none;
}

.ac-rd-landing .ac-rd-related-posts__mobile {
	display: block;
	/*padding-inline: var(--ac-rd-container-pad);*/
}

.ac-rd-landing .ac-rd-related-posts__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--gutter-m, 2rem);
}

@media (min-width: 768px) {
	.ac-rd-landing .ac-rd-related-posts__desktop {
		display: block;
	}

	.ac-rd-landing .ac-rd-related-posts__mobile {
		display: none;
	}

	.ac-rd-landing .ac-rd-related-posts__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.ac-rd-landing .ac-rd-related-posts__card {
	display: flex;
	flex-direction: column;
	background: var(--lightgreen);
	border-radius: var(--radius-m, 2rem);
	overflow: hidden;
	height: 100%;
    box-shadow: 0 0 0.5rem #0003;
}

.ac-rd-landing .ac-rd-related-posts__card-link {
	display: flex;
	flex-direction: column;
	flex: 1;
	text-decoration: none;
	color: inherit;
	height: 100%;
}

.ac-rd-landing .ac-rd-related-posts__media {
	position: relative;
	overflow: hidden;
}

.ac-rd-landing .ac-rd-related-posts__media img {
	display: block;
	width: 100%;
	height: 170px;
	object-fit: cover;
	border-top-left-radius: var(--radius-m, 2rem);
	border-top-right-radius: var(--radius-m, 2rem);
}

.ac-rd-landing .ac-rd-related-posts__body {
	padding: var(--gutter-s, 1.5rem);
	padding-bottom: 0;
	flex: 1;
}

.ac-rd-landing .ac-rd-related-posts__post-title {
	font-size: 1.125rem;
	font-weight: var(--fw-600);
	line-height: 1.35;
	color: var(--darkgreen);
	margin: 0 0 0.75rem;
}

.ac-rd-landing .ac-rd-related-posts__excerpt {
	font-size: 0.9375rem;
	line-height: 1.55;
	color: var(--darkgreen);
	margin: 0;
}

.ac-rd-landing .ac-rd-related-posts__meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 0.5rem;
	padding: var(--gutter-s, 1.5rem);
	margin-top: auto;
	font-weight: var(--fw-600);
	font-size: 0.875rem;
	color: var(--darkgreen);
}

.ac-rd-landing .ac-rd-related-posts__author {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	border: 1px solid rgba(128, 128, 128, 0.16);
	background: var(--white);
	width: fit-content;
	max-width: calc(100% - 2rem);
	margin: 0 1rem 1rem;
	padding: 0.75rem;
	border-radius: 0.5rem;
    display:none;
}

.ac-rd-landing .ac-rd-related-posts__author-avatar img {
	display: block;
	width: 48px;
	height: 48px;
	border-radius: 50%;
}

.ac-rd-landing .ac-rd-related-posts__author-name {
	font-size: 0.9375rem;
	font-weight: var(--fw-600);
	line-height: 1.3;
}

.ac-rd-landing .ac-rd-related-posts__author-name a {
	color: var(--darkgreen);
	text-decoration: none;
}

.ac-rd-landing .ac-rd-related-posts__author-name a:hover {
	text-decoration: underline;
}

/* ==========================================================================
   Icons (decorative placeholders)
   ========================================================================== */

.ac-rd-icon {
	display: inline-block;
	width: 2.5rem;
	height: 2.5rem;
	flex-shrink: 0;
	border-radius: 0.5rem;
	background: var(--lightgreen);
	position: relative;
}

.ac-rd-icon::after {
	content: "";
	position: absolute;
	inset: 0.5rem;
	background: var(--neongreen);
	border-radius: 0.25rem;
	opacity: 0.6;
}

.ac-rd-icon--check {
	width: 1.25rem;
	height: 1.25rem;
	border-radius: 0.25rem;
	background: var(--neongreen);
}

.ac-rd-icon--check::after {
	display: none;
}

.ac-rd-card .ac-rd-icon {
	margin-bottom: 0.875rem;
}

.ac-rd-cta-link {
	display: inline-block;
	margin-top: 1.25rem;
}

/* ==========================================================================
   Second pass — conversion bands, section rhythm, row-specific
   ========================================================================== */

.ac-rd-conversion-band {
	text-align: center;
	max-width: 36rem;
	margin: clamp(2rem, 4vw, 3rem) auto 0;
	padding: clamp(1.5rem, 3vw, 2rem);
	background: var(--white);
	border-radius: var(--ac-rd-card-radius);
	box-shadow: var(--ac-rd-card-shadow);
	border: 1px solid rgba(0, 60, 59, 0.08);
}

.ac-rd-section--alt .ac-rd-conversion-band {
	background: var(--white);
}

.ac-rd-conversion-band .btn {
	margin-top: 1rem;
}


/* Row 3 — schemes (dark band + white comparison cards) */
.ac-rd-row-03.ac-rd-section--dark {
	position: relative;
	overflow: hidden;
	background-color: var(--darkgreen);
}

.ac-rd-row-03.ac-rd-section--dark::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: url("https://alexanderclifford.co.uk/wp-content/uploads/2025/04/Group-123.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	opacity: 0.28;
	filter: brightness(1.35) contrast(1.05);
	pointer-events: none;
}

.ac-rd-row-03.ac-rd-section--dark::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		160deg,
		rgba(0, 60, 59, 0.72) 0%,
		rgba(0, 35, 34, 0.82) 55%,
		rgba(0, 25, 24, 0.9) 100%
	);
	pointer-events: none;
}

.ac-rd-row-03 .container {
	position: relative;
	z-index: 1;
}

.ac-rd-row-03__header {
	max-width: 40rem;
}

.ac-rd-row-03__header p {
	color: rgba(255, 255, 255, 0.88);
}

.ac-rd-scheme-cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

@media (min-width: 992px) {
	.ac-rd-scheme-cards {
		grid-template-columns: 1fr 1fr;
		gap: 1.5rem;
		align-items: stretch;
	}
}

.ac-rd-scheme-card {
	display: flex;
	flex-direction: column;
	padding: clamp(1.25rem, 3vw, 1.75rem);
	background: var(--white);
	border-radius: var(--ac-rd-card-radius);
	border: 1px solid rgba(0, 60, 59, 0.12);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
	color: var(--darkgreen);
}

.ac-rd-scheme-card h3,
.ac-rd-scheme-card h4,
.ac-rd-scheme-card p,
.ac-rd-scheme-card li {
	color: inherit;
}

.ac-rd-scheme-card--merged {
	border-color: rgba(127, 212, 168, 0.65);
}

.ac-rd-scheme-card--eris {
	border-color: var(--darkgreen);
	border-width: 2px;
}

.ac-rd-scheme-card__header {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.ac-rd-scheme-card__header-top {
	display: flex;
	align-items: center;
	gap: 1rem;
	width: 100%;
}

.ac-rd-scheme-card__icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 0.75rem;
}

.ac-rd-scheme-card--merged .ac-rd-scheme-card__icon {
	background: var(--lightgreen);
}

.ac-rd-scheme-card--eris .ac-rd-scheme-card__icon {
	background: var(--darkgreen);
}

.ac-rd-scheme-card__icon img {
	width: 3rem;
	height: 3rem;
	object-fit: contain;
	display: block;
    border-radius: inherit;
}

.ac-rd-scheme-card--eris .ac-rd-scheme-card__icon img {
/*	filter: brightness(0) invert(1); */
}

.ac-rd-scheme-card__title {
	flex: 1;
	min-width: 0;
	font-weight: var(--fw-600);
	font-size: 1.125rem;
	line-height: 1.35;
	color: var(--darkgreen);
}

.ac-rd-scheme-card__title h3,
.ac-rd-scheme-card__title h4,
.ac-rd-scheme-card__title p {
	margin: 0;
	font-weight: inherit;
	font-size: inherit;
	color: inherit;
}

.ac-rd-scheme-card__rate {
	display: inline-block;
	margin: 0;
	padding: 0.4rem 0.875rem;
	border-radius: 999px;
	font-size: 0.8125rem;
	font-weight: var(--fw-500);
	line-height: 1.35;
}

.ac-rd-scheme-card--merged .ac-rd-scheme-card__rate {
	background: var(--lightgreen);
	color: var(--darkgreen);
}

.ac-rd-scheme-card--eris .ac-rd-scheme-card__rate {
	background: var(--darkgreen);
	color: var(--white);
}

.ac-rd-scheme-card__lead {
	font-size: 0.9375rem;
	line-height: 1.55;
	color: rgba(0, 60, 59, 0.75);
	margin-bottom: 1rem;
}

.ac-rd-scheme-card__lead p {
	margin: 0;
}

.ac-rd-scheme-card__qualifies {
	margin-bottom: 1rem;
}

.ac-rd-scheme-card__qualifies-title {
	margin: 0 0 0.5rem;
	font-size: 0.9375rem;
	font-weight: var(--fw-600);
	color: var(--darkgreen);
}

.ac-rd-scheme-card__list {
	margin: 0;
	text-align: left;
}

.ac-rd-scheme-card__list li {
	color: rgba(0, 60, 59, 0.82);
	font-size: 0.875rem;
	line-height: 1.45;
}

.ac-rd-scheme-card .ac-rd-list--check li::before {
	color: var(--neongreen);
}

.ac-rd-scheme-card__highlights {
	margin-top: auto;
	padding: 1rem 1.25rem;
	background: #f8fffc;
	border: 1px solid rgba(0, 60, 59, 0.08);
	border-radius: 0.75rem;
}

.ac-rd-scheme-card__highlight {
	margin: 0 0 0.5rem;
	font-size: 0.875rem;
	line-height: 1.5;
	color: var(--darkgreen);
}

.ac-rd-scheme-card__highlight:last-child {
	margin-bottom: 0;
}

.ac-rd-scheme-card__highlight strong {
	font-weight: var(--fw-600);
}

.ac-rd-row-03__note {
	max-width: 40rem;
	margin: clamp(1.75rem, 4vw, 2.5rem) auto 0;
	text-align: center;
	font-size: 0.9375rem;
	line-height: 1.55;
}

.ac-rd-row-03__note p {
	margin: 0;
	color: rgba(255, 255, 255, 0.88);
}

.ac-rd-row-09__note.ac-rd-schemes__note {
	max-width: 40rem;
	margin: clamp(1.5rem, 3vw, 2rem) auto 0;
	padding: 1rem 1.5rem;
	background: rgba(0, 60, 59, 0.04);
	border-radius: 0.75rem;
	text-align: center;
	font-size: 0.9375rem;
	border-left: 4px solid var(--darkgreen);
}

/* Row 4 — eligibility */
.ac-rd-eligibility-card {
	padding: clamp(1.5rem, 3vw, 2rem);
	min-height: 100%;
}

.ac-rd-eligibility-card--project {
	border-top: 4px solid var(--neongreen);
}

.ac-rd-eligibility-card--company {
	border-top: 4px solid var(--darkgreen);
}

.ac-rd-eligibility-card__body h3,
.ac-rd-eligibility-card__body h4 {
	margin: 0 0 0.75rem;
	font-size: 1.125rem;
	font-weight: var(--fw-600);
	color: var(--darkgreen);
}

.ac-rd-eligibility-card__body p {
	margin: 0 0 0.75rem;
	font-size: 0.9375rem;
	line-height: 1.55;
	color: rgba(0, 60, 59, 0.82);
}

.ac-rd-eligibility-card__body p:last-child {
	margin-bottom: 0;
}

.ac-rd-eligibility-card__body ul {
	list-style: none;
	/*margin: 0.75rem 0 0;*/
	padding: 0;
}

.ac-rd-eligibility-card__body ul li {
	position: relative;
	padding-left: 1.75rem;
	margin-bottom: 0.625rem;
	font-size: 0.9375rem;
	line-height: 1.5;
	color: rgba(0, 60, 59, 0.85);
}

.ac-rd-eligibility-card__body ul li:last-child {
	margin-bottom: 0;
}

.ac-rd-eligibility-card__body ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.2rem;
	width: 1.5rem;
	height: 1.5rem;
	background: url("https://alexanderclifford.co.uk/wp-content/uploads/2026/05/20.svg") no-repeat center / contain;
    border-radius: 6px
}

/* Seam: dark schemes row → pale eligibility row (no white gap) */
.ac-rd-row-03.ac-rd-section--dark {
	padding-bottom: 0;
	margin-bottom: 0;
}

.ac-rd-row-03.ac-rd-section--dark + .ac-rd-row-04.ac-rd-section--alt {
	margin-top: 0;
	padding-top: clamp(1.25rem, 2.5vw, 1.75rem);
}

.ac-rd-row-04__note {
	text-align: center;
	max-width: 40rem;
	margin-left: auto;
	margin-right: auto;
}

/* Row 4b — industries (standalone white section) */
.ac-rd-row-04-industries {
	background: var(--white);
}

.ac-rd-row-04.ac-rd-section--alt + .ac-rd-row-04-industries {
	padding-top: clamp(1.25rem, 2.5vw, 1.75rem);
}

.ac-rd-row-04-industries__title {
	margin: 0;
	font-size: clamp(1.375rem, 2.5vw, 1.75rem);
	font-weight: var(--fw-600);
	color: var(--darkgreen);
}

.ac-rd-row-04-industries .ac-rd-industries__grid {
	list-style: none;
	margin: clamp(1.5rem, 3vw, 2.25rem) 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

@media (min-width: 640px) {
	.ac-rd-row-04-industries .ac-rd-industries__grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 1.25rem;
	}
}

.ac-rd-row-04-industries .ac-rd-industries__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	text-align: center;
	padding: 1.25rem 0.75rem;
	background: var(--lightgreen);
	border: 1px solid rgba(0, 60, 59, 0.06);
	border-radius: var(--ac-rd-card-radius);
	transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.ac-rd-row-04-industries .ac-rd-industries__item:hover {
	border-color: rgba(0, 60, 59, 0.12);
	box-shadow: var(--ac-rd-card-shadow);
	transform: translateY(-2px);
}

.ac-rd-row-04-industries .ac-rd-industries__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3.25rem;
	height: 3.25rem;
	margin-bottom: 0.75rem;
	background: var(--white);
	border-radius: 50%;
	box-shadow: 0 2px 10px rgba(0, 60, 59, 0.08);
}

.ac-rd-row-04-industries .ac-rd-industries__icon img {
	width: 1.75rem;
	height: 1.75rem;
	object-fit: contain;
}

.ac-rd-row-04-industries .ac-rd-industries__label {
	font-size: 0.8125rem;
	font-weight: var(--fw-500);
	line-height: 1.35;
	color: var(--darkgreen);
}

.ac-rd-row-04-industries__cta {
	margin-top: clamp(1.75rem, 4vw, 2.5rem);
	text-align: center;
}

/* Row 5 — common challenges (mockup: 2-col grid, horizontal cards) */
.ac-rd-row-05 {
	background: var(--verylightpurple);
}

.ac-rd-row-05__header {
	max-width: 48rem;
}

.ac-rd-row-05__header p {
	color: rgba(0, 60, 59, 0.82);
	line-height: 1.65;
}

.ac-rd-row-05__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	margin-top: clamp(2rem, 4vw, 3rem);
}

@media (min-width: 768px) {
	.ac-rd-row-05__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.25rem;
	}

	/* Centre the lone card when there is an odd count (e.g. 7 items). */
	.ac-rd-row-05__card:last-child:nth-child(odd) {
		grid-column: 1 / -1;
		width: 100%;
		max-width: calc((100% - 1.25rem) / 2);
		justify-self: center;
	}
}

.ac-rd-row-05__card {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: clamp(1.25rem, 2.5vw, 2rem);
	background: var(--white);
	border: 2px solid rgba(0, 60, 59, 0.1);
	border-radius: 1rem;
	box-shadow: 0 2px 12px rgba(0, 60, 59, 0.06);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ac-rd-row-05__card:hover {
	border-color: rgba(127, 212, 168, 0.55);
	box-shadow: 0 8px 24px rgba(0, 60, 59, 0.1);
}

.ac-rd-row-05__card-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	background: var(--darkgreen);
	border-radius: 0.625rem;
}

.ac-rd-row-05__card-icon img {
	width: 3rem;
	height: 3rem;
	object-fit: contain;
    border-radius: 0.60rem;
/*	filter: brightness(0) saturate(100%) invert(84%) sepia(21%) saturate(746%) hue-rotate(99deg) brightness(103%) contrast(101%); */
}

.ac-rd-row-05__card-copy {
	min-width: 0;
	flex: 1;
}

.ac-rd-row-05__card-heading {
	font-weight: var(--fw-600);
	font-size: 1.0625rem;
	line-height: 1.35;
	color: var(--darkgreen);
	margin-bottom: 0.5rem;
}

.ac-rd-row-05__card-heading h3,
.ac-rd-row-05__card-heading h4,
.ac-rd-row-05__card-heading p {
	margin: 0;
	font-weight: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

.ac-rd-row-05__card-body {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: rgba(0, 60, 59, 0.78);
}

.ac-rd-row-05__card-body p {
	margin: 0;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

/* Row 7 — claimable costs (66% list / 33% image CTA) */
.ac-rd-row-07__header {
	max-width: 48rem;
}

.ac-rd-row-07__header p {
	color: rgba(0, 60, 59, 0.82);
	line-height: 1.65;
}

.ac-rd-row-07__layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1.5rem, 4vw, 2.5rem);
	margin-top: clamp(1.25rem, 2.5vw, 1.75rem);
}

.ac-rd-row-07__cta {
	order: 1;
}

.ac-rd-row-07__costs {
	order: 2;
}

@media (min-width: 992px) {
	.ac-rd-row-07__layout {
		grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
		align-items: start;
		gap: clamp(2rem, 4vw, 3rem);
	}

	.ac-rd-row-07__costs {
		order: 1;
	}

	.ac-rd-row-07__cta {
		order: 2;
	}
}

.ac-rd-row-07__cost-item {
	padding: 1.25rem 0;
	border-bottom: 1px solid rgba(0, 60, 59, 0.12);
}

.ac-rd-row-07__cost-item:first-child {
	padding-top: 0;
}

.ac-rd-row-07__cost-item:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.ac-rd-row-07__cost-heading {
	font-weight: var(--fw-600);
	font-size: 1.0625rem;
	line-height: 1.35;
	color: var(--darkgreen);
	margin-bottom: 0.4rem;
}

.ac-rd-row-07__cost-heading h3,
.ac-rd-row-07__cost-heading h4,
.ac-rd-row-07__cost-heading p {
	margin: 0;
	font-weight: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

.ac-rd-row-07__cost-body {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: rgba(0, 60, 59, 0.78);
}

.ac-rd-row-07__cost-body p {
	margin: 0;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

.ac-rd-row-07__cta-card {
	display: flex;
	flex-direction: column;
	background: var(--white);
	border-radius: 1rem;
	box-shadow: 0 8px 32px rgba(0, 60, 59, 0.12);
	overflow: hidden;
	border: 1px solid rgba(0, 60, 59, 0.08);
}

@media (min-width: 992px) {
	.ac-rd-row-07__cta-card {
		position: sticky;
		top: clamp(1rem, 3vw, 1.5rem);
	}
}

.ac-rd-row-07__cta-media {
	margin: 0;
	line-height: 0;
	border-radius: 1rem 1rem 0 0;
	overflow: hidden;
}

.ac-rd-row-07__cta-media img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.ac-rd-row-07__cta-body {
	padding: clamp(1.25rem, 3vw, 1.75rem);
	background: var(--darkgreen);
	color: var(--white);
}

.ac-rd-row-07__cta-body h2,
.ac-rd-row-07__cta-body h3,
.ac-rd-row-07__cta-body h4,
.ac-rd-row-07__cta-body p,
.ac-rd-row-07__cta-body li,
.ac-rd-row-07__cta-body strong,
.ac-rd-row-07__cta-body em {
	color: var(--white);
}

.ac-rd-row-07__cta-body h2,
.ac-rd-row-07__cta-body h3 {
	margin: 0 0 0.5rem;
	font-size: 1.25rem;
	line-height: 1.3;
}

.ac-rd-row-07__cta-body p {
	margin: 0 0 1rem;
	font-size: 0.9375rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.88);
}

.ac-rd-row-07__cta-body p:last-of-type {
	margin-bottom: 1.25rem;
}

.ac-rd-row-07__cta-btn {
	width: 100%;
	margin-top: 0;
}

/* Row 11 — common mistakes (white band + rounded green panel) */
.ac-rd-landing .ac-rd-mistakes-sec {
	background: var(--white);
}

.ac-rd-landing .ac-rd-mistakes-sec__panel {
	background: var(--darkgreen);
	color: var(--white);
	border-radius: 16px;
	padding: clamp(1.75rem, 3.5vw, 3rem) clamp(1.5rem, 3vw, 3.5rem);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: clamp(1.25rem, 2.5vw, 1.75rem);
}

.ac-rd-landing .ac-rd-mistakes-sec__panel h2,
.ac-rd-landing .ac-rd-mistakes-sec__panel h3,
.ac-rd-landing .ac-rd-mistakes-sec__panel p,
.ac-rd-landing .ac-rd-mistakes-sec__panel li {
	color: var(--white);
}

.ac-rd-landing .ac-rd-mistakes-sec__intro {
	width: 100%;
}

.ac-rd-landing .ac-rd-mistakes-sec__intro h2 {
	font-size: clamp(1.75rem, 4vw, 2.875rem);
	line-height: 1.2;
	margin-bottom: 0.5rem;
	max-width: none;
}

.ac-rd-landing .ac-rd-mistakes-sec__intro p {
	font-size: 1rem;
	line-height: 1.55;
	opacity: 0.92;
	margin: 0;
	max-width: none;
}

.ac-rd-landing .ac-rd-mistakes-sec__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1.25rem, 2.5vw, 2rem);
	align-items: start;
	width: 100%;
}

@media (min-width: 992px) {
	.ac-rd-landing .ac-rd-mistakes-sec__grid {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: clamp(1.5rem, 3vw, 2.5rem);
	}
}

.ac-rd-landing .ac-rd-mistakes-sec__main {
	min-width: 0;
}

.ac-rd-landing .ac-rd-mistakes-sec__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ac-rd-landing .ac-rd-mistakes-sec__item {
	padding: 0.75rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.ac-rd-landing .ac-rd-mistakes-sec__item:first-child {
	padding-top: 0;
}

.ac-rd-landing .ac-rd-mistakes-sec__item:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.ac-rd-landing .ac-rd-mistakes-sec__item-heading {
	font-weight: var(--fw-600);
	font-size: 1.0625rem;
	line-height: 1.35;
	margin-bottom: 0.35rem;
}

.ac-rd-landing .ac-rd-mistakes-sec__item-heading h3,
.ac-rd-landing .ac-rd-mistakes-sec__item-heading h4,
.ac-rd-landing .ac-rd-mistakes-sec__item-heading p {
	margin: 0;
	font: inherit;
	color: inherit;
}

.ac-rd-landing .ac-rd-mistakes-sec__item-body {
	font-size: 0.9375rem;
	line-height: 1.55;
	opacity: 0.92;
	margin-bottom: 0.25rem;
}

.ac-rd-landing .ac-rd-mistakes-sec__item-body p {
	margin: 0;
	color: var(--white);
}

.ac-rd-landing .ac-rd-mistakes-sec__item-note {
	margin: 0.35rem 0 0;
	padding: 0;
	background: none;
	border: 0;
	border-radius: 0;
	font-size: 0.875rem;
	font-weight: var(--fw-600);
	line-height: 1.45;
	color: var(--neongreen) !important;
}

.ac-rd-landing .ac-rd-mistakes-sec__cta {
	width: 100%;
	margin: 0;
	padding-top: clamp(1rem, 2vw, 1.25rem);
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.ac-rd-landing .ac-rd-mistakes-sec__cta h3 {
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
	max-width: none;
}

.ac-rd-landing .ac-rd-mistakes-sec__cta p {
	font-size: 0.9375rem;
	line-height: 1.6;
	opacity: 0.9;
	margin-bottom: 1rem;
	max-width: none;
}

.ac-rd-landing .ac-rd-mistakes-sec__cta-btn {
	margin-top: 0.25rem;
}

.ac-rd-landing .ac-rd-mistakes-sec__media {
	width: 100%;
}

.ac-rd-landing .ac-rd-mistakes-sec__image-wrap {
	position: relative;
	border-radius: 1rem;
	overflow: visible;
}

.ac-rd-landing .ac-rd-mistakes-sec__image {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 1rem;
	object-fit: cover;
}

.ac-rd-landing .ac-rd-mistakes-sec__badge {
	position: absolute;
	left: 1rem;
	bottom: 1.25rem;
	display: flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.85rem 1rem;
	background: var(--white);
	border-radius: 0.75rem;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.ac-rd-landing .ac-rd-mistakes-sec__badge img {
	width: 32px;
	height: 32px;
	flex-shrink: 0;
}

.ac-rd-landing .ac-rd-mistakes-sec__badge p {
	margin: 0;
	font-size: 0.9375rem !important;
	font-weight: var(--fw-600);
	color: var(--darkgreen) !important;
	line-height: 1.2;
}

@media (max-width: 991px) {
	.ac-rd-landing .ac-rd-mistakes-sec__media {
		order: -1;
		max-width: 28rem;
		margin: 0 auto;
	}
}


/* ==========================================================================
   Responsive utilities
   ========================================================================== */

@media (max-width: 374px) {
	.ac-rd-landing .container {
		padding-left: 1rem;
		padding-right: 1rem;
	}
}

@media (max-width: 767px) {
	.ac-rd-row-06__trust-item:first-child {
		padding-bottom: 1.25rem;
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	}

	.ac-rd-conversion-band .btn,
	.ac-rd-row-04-industries__cta .btn {
		width: 100%;
	}

	.ac-rd-row-02__cta .btn {
		width: 100%;
	}

	.ac-rd-steps--timeline::before {
		display: none;
	}

	.ac-rd-step {
		text-align: left;
		align-items: flex-start;
	}

	.ac-rd-step__icon {
		display: none;
	}
}

/* ==========================================================================
   Landing mobile carousels (case studies, related posts)
   ========================================================================== */

.ac-rd-landing .ac-rd-swiper-wrap {
	position: relative;
}

.ac-rd-landing .ac-rd-case-study-slider,
.ac-rd-landing .ac-rd-related-posts__slider {
	overflow: hidden;
	padding-bottom: 0.25rem;
}

.ac-rd-landing .ac-rd-case-study-slider .swiper-slide {
	width: 100%;
	max-width: 100%;
	height: auto;
	box-sizing: border-box;
}

.ac-rd-landing .ac-rd-case-study-slider .alx-mb-cols {
	width: 100%;
	max-width: 100%;
}

.ac-rd-landing .ac-rd-related-posts__slider .swiper-slide {
	height: auto;
}

.ac-rd-landing .ac-rd-related-posts__slider .ac-rd-related-posts__card {
	height: 100%;
}

.ac-rd-landing .ac-rd-swiper-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-top: 1.25rem;
}

.ac-rd-landing .ac-rd-swiper-nav {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	padding: 0;
	border: 1px solid rgba(0, 60, 59, 0.15);
	border-radius: 50%;
	background: var(--white);
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.ac-rd-landing .ac-rd-swiper-nav:hover {
	border-color: var(--darkgreen);
	background: var(--lightgreen);
}

.ac-rd-landing .ac-rd-swiper-nav img {
	width: 1.25rem;
	height: auto;
	display: block;
}

.ac-rd-landing .ac-rd-swiper-nav--next img {
	transform: rotate(180deg);
}

.ac-rd-landing .ac-rd-swiper-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.35rem;
	min-height: 1.5rem;
}

.ac-rd-landing .ac-rd-swiper-pagination .swiper-pagination-bullet {
	width: 0.5rem;
	height: 0.5rem;
	margin: 0 !important;
	background: rgba(0, 60, 59, 0.25);
	opacity: 1;
}

.ac-rd-landing .ac-rd-swiper-pagination .swiper-pagination-bullet-active {
	background: var(--darkgreen);
}

/* ==========================================================================
   Floating guide CTA (left) + consultation modal
   ========================================================================== */

.ac-rd-float-guide {
	position: fixed;
	left: clamp(0.75rem, 2vw, 1.25rem);
	bottom: clamp(1rem, 3vw, 1.5rem);
	z-index: 100020;
	width: min(18.5rem, calc(100vw - 2rem));
	padding: 1rem 1rem 1.125rem;
	background: var(--darkgreen);
	border: 1px solid rgba(127, 212, 168, 0.45);
	border-radius: 14px;
	box-shadow: 0 12px 40px rgba(0, 30, 29, 0.35);
	color: var(--white);
	transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.ac-rd-float-guide[hidden],
.ac-rd-float-guide.is-near-guide {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(0.5rem);
}

body.ac-rd-consult-modal-open .ac-rd-float-guide,
body.ac-rd-calc-modal-open .ac-rd-float-guide {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.ac-rd-float-guide__dismiss {
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
	width: 1.75rem;
	height: 1.75rem;
	padding: 0;
	border: 0;
	background: transparent;
	color: rgba(255, 255, 255, 0.55);
	font-size: 1.25rem;
	line-height: 1;
	cursor: pointer;
}

.ac-rd-float-guide__dismiss:hover {
	color: var(--white);
}

.ac-rd-float-guide__head {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	margin-bottom: 0.5rem;
	padding-right: 1.5rem;
}

.ac-rd-float-guide__icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 10px;
	background: #7fd4a8;
	color: var(--darkgreen);
}

.ac-rd-float-guide__title {
	margin: 0;
	font-size: 1.0625rem;
	font-weight: var(--fw-600);
	line-height: 1.3;
	color: var(--white);
}

.ac-rd-float-guide__text {
	margin: 0 0 0.875rem;
	font-size: 0.875rem;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.88);
}

.ac-rd-float-guide__cta.btn {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0.75rem 1rem;
	font-size: 0.9375rem;
	font-weight: var(--fw-600);
	text-align: center;
}

/* Consultation modal */
.ac-rd-consult-modal[hidden] {
	display: none !important;
}

.ac-rd-consult-modal {
	position: fixed;
	inset: 0;
	z-index: 100060;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(0.75rem, 2vw, 1.5rem);
}

.ac-rd-consult-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 30, 29, 0.72);
	cursor: pointer;
}

.ac-rd-consult-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(56rem, 100%);
	max-height: min(92vh, 880px);
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	background: var(--white);
	border-radius: var(--ac-rd-card-radius);
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.ac-rd-consult-modal__close {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	color: var(--white);
	font-size: 1.75rem;
	line-height: 1;
	cursor: pointer;
	transition: background 0.15s ease;
}

.ac-rd-consult-modal__close:hover,
.ac-rd-consult-modal__close:focus {
	background: rgba(255, 255, 255, 0.28);
	outline: none;
}

.ac-rd-consult-modal__grid {
	display: grid;
	grid-template-columns: 1fr;
}

@media (min-width: 900px) {
	.ac-rd-consult-modal__grid {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
		min-height: 28rem;
	}
}

.ac-rd-consult-modal__benefits {
	padding: clamp(1.5rem, 3vw, 2rem);
	background: var(--white);
	color: var(--darkgreen);
}

@media (min-width: 900px) {
	.ac-rd-consult-modal__benefits {
		border-radius: var(--ac-rd-card-radius) 0 0 var(--ac-rd-card-radius);
	}
}

.ac-rd-consult-modal__eyebrow {
	margin: 0 0 0.35rem;
	font-size: 0.75rem;
	font-weight: var(--fw-600);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(0, 60, 59, 0.65);
}

.ac-rd-consult-modal__title {
	margin: 0 0 0.5rem;
	font-size: clamp(1.375rem, 2.5vw, 1.75rem);
	line-height: 1.25;
	color: var(--darkgreen);
}

.ac-rd-consult-modal__lead {
	margin: 0 0 1.25rem;
	font-size: 0.9375rem;
	line-height: 1.55;
	color: rgba(0, 60, 59, 0.78);
}

.ac-rd-consult-modal__points {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.ac-rd-consult-modal__point {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

.ac-rd-consult-modal__point-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 50%;
	background: var(--lightgreen);
}

.ac-rd-consult-modal__point-icon img {
	width: 1.75rem;
	height: 1.75rem;
	object-fit: contain;
}

.ac-rd-consult-modal__point-copy {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	min-width: 0;
}

.ac-rd-consult-modal__point-title {
	font-size: 1.0625rem;
	font-weight: var(--fw-600);
	line-height: 1.3;
	color: var(--darkgreen);
}

.ac-rd-consult-modal__point-detail {
	font-size: 0.875rem;
	line-height: 1.45;
	color: rgba(0, 60, 59, 0.72);
}

.ac-rd-consult-modal__phone {
	margin: 1.25rem 0 0;
	font-size: 0.875rem;
	color: rgba(0, 60, 59, 0.75);
}

.ac-rd-consult-modal__phone a {
	color: var(--darkgreen);
	font-weight: var(--fw-600);
	text-decoration: underline;
}

/* Mobile: compact benefits so the form is visible sooner (CRO) */
@media (max-width: 899px) {
	.ac-rd-consult-modal__close {
		background: rgba(0, 60, 59, 0.08);
		color: var(--darkgreen);
	}

	.ac-rd-consult-modal__close:hover,
	.ac-rd-consult-modal__close:focus {
		background: rgba(0, 60, 59, 0.14);
	}

	.ac-rd-consult-modal__benefits {
		padding: 1rem 1.125rem 1.125rem;
		padding-top: 2.75rem;
	}

	.ac-rd-consult-modal__title {
		margin-bottom: 0.65rem;
		font-size: 1.25rem;
	}

	.ac-rd-consult-modal__lead {
		display: none;
	}

	.ac-rd-consult-modal__points {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.65rem 0.5rem;
	}

	.ac-rd-consult-modal__point {
		align-items: center;
		gap: 0.45rem;
		min-width: 0;
	}

	.ac-rd-consult-modal__point-icon {
		width: 2rem;
		height: 2rem;
	}

	.ac-rd-consult-modal__point-icon img {
		width: 1.125rem;
		height: 1.125rem;
	}

	.ac-rd-consult-modal__point-copy {
		gap: 0;
	}

	.ac-rd-consult-modal__point-title {
		font-size: 0.8125rem;
		line-height: 1.25;
	}

	.ac-rd-consult-modal__point-detail {
		display: none;
	}

	.ac-rd-consult-modal__phone {
		margin-top: 0.75rem;
		font-size: 0.8125rem;
	}

	.ac-rd-consult-modal__form-panel {
		padding: 1.125rem 1.125rem 1.25rem;
	}
}

.ac-rd-consult-modal__form-panel {
	padding: clamp(1.5rem, 3vw, 2rem);
	background: linear-gradient(160deg, var(--darkgreen) 0%, #0a4a48 100%);
	color: var(--white);
}

@media (min-width: 900px) {
	.ac-rd-consult-modal__form-panel {
		border-radius: 0 var(--ac-rd-card-radius) var(--ac-rd-card-radius) 0;
	}
}

.ac-rd-consult-modal__form-title {
	margin: 0 0 1rem;
	font-size: 1.375rem;
	font-weight: var(--fw-600);
	color: var(--white);
}

.ac-rd-consult-modal__form-body.form-outer {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
}

.ac-rd-consult-modal__form-body.form-outer h2,
.ac-rd-consult-modal__form-body.form-outer > h2 {
	display: none;
}

.ac-rd-consult-modal__form-body .wpcf7-not-valid-tip {
	color: #ffb4b4 !important;
}

/* Consult modal: always single-column fields (panel is narrow beside benefits) */
.ac-rd-consult-modal__form-body .wpcf7-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: 100%;
}

.ac-rd-consult-modal__form-body .form-wrap {
	display: flex !important;
	flex-direction: column !important;
	gap: 1rem !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	margin-top: 0 !important;
	float: none !important;
	grid-template-columns: none !important;
}

.ac-rd-consult-modal__form-body .wpcf7-form > label,
.ac-rd-consult-modal__form-body .form-wrap > label,
.ac-rd-consult-modal__form-body .wpcf7-form > p,
.ac-rd-consult-modal__form-body .form-wrap > p,
.ac-rd-consult-modal__form-body .wpcf7-form label.form-full,
.ac-rd-consult-modal__form-body .form-wrap label.form-full {
	display: block;
	width: 100% !important;
	max-width: none !important;
	min-width: 0;
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
}

.ac-rd-consult-modal__form-body .wpcf7-form label,
.ac-rd-consult-modal__form-body .wpcf7-form .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

.ac-rd-consult-modal__form-body .wpcf7-form input:not([type="checkbox"]):not([type="submit"]):not([type="hidden"]),
.ac-rd-consult-modal__form-body .wpcf7-form select,
.ac-rd-consult-modal__form-body .wpcf7-form textarea {
	display: block;
	width: 100% !important;
	max-width: none !important;
	min-height: 3rem;
	box-sizing: border-box;
}

.ac-rd-consult-modal__form-body .wpcf7-form textarea {
	min-height: 7rem;
	resize: vertical;
}

.ac-rd-consult-modal__form-body .wpcf7-form > .button-group,
.ac-rd-consult-modal__form-body .form-wrap .button-group,
.ac-rd-consult-modal__form-body .wpcf7-form > label:has(.wpcf7-submit),
.ac-rd-consult-modal__form-body .form-wrap > label:has(.wpcf7-submit),
.ac-rd-consult-modal__form-body .wpcf7-form > .wpcf7-response-output,
.ac-rd-consult-modal__form-body .form-wrap .hidden-fields-container {
	width: 100% !important;
	order: 99;
}

.ac-rd-consult-modal__form-body .wpcf7-form .button-group,
.ac-rd-consult-modal__form-body .form-wrap .button-group {
	display: flex;
	justify-content: stretch;
	margin-top: 0.25rem;
}

.ac-rd-consult-modal__form-body .wpcf7-form .wpcf7-submit,
.ac-rd-consult-modal__form-body .wpcf7-form input[type="submit"],
.ac-rd-consult-modal__form-body .wpcf7-form .button-group .btn {
	width: 100% !important;
	max-width: none !important;
	justify-content: center;
	margin: 0 !important;
}

body.ac-rd-consult-modal-open {
	overflow: hidden;
}

@media (max-width: 479px) {
	.ac-rd-float-guide {
        display:none;
		left: 0.75rem;
		right: 0.75rem;
		width: auto;
		max-width: none;
	}
}

label.ac-rd-field-label {
    padding-top: 4px;
    float: inline-start;
}