/* ==========================================================================
   TSD — Products & Services
   Styles for the product detail pages and the /products-services/ index.

   Divi holds the structure (sections / rows / columns / modules),
   this file holds the look. Classes are applied through Divi's "CSS Class" field.
   Every class is tsd- prefixed so it cannot affect the rest of the site.
   ========================================================================== */

:root {
	--tsd-blue:        #1565c0;
	--tsd-blue-dark:   #0d47a1;
	--tsd-blue-light:  #1976d2;
	--tsd-accent:      #2b7fd4;
	--tsd-ink:         #10161f;
	--tsd-black-hero:  #060d16;
	--tsd-black-deep:  #0d1420;
	--tsd-gray-bg:     #f4f6f8;
	--tsd-border:      #e6eaee;
	--tsd-body:        #4b5563;
	--tsd-muted:       #5a6572;
	--tsd-font:        'Open Sans', Arial, Helvetica, sans-serif;
}

/* --------------------------------------------------------------------------
   1. Shared foundations
   -------------------------------------------------------------------------- */

/* The design uses a 1280px content width — Divi defaults to 1080px. */
.et_pb_row.tsd-wrap {
	width: 90%;
	max-width: 1280px;
}

/* Headings in the design are uppercase Open Sans 700 with a tight line-height.
   Divi sets font-weight directly on h1/h2/h3, so it is not inherited from the
   wrapper div — the styles have to go on the heading element itself. */
.tsd-h1 h1,
.tsd-h2 h2,
.tsd-h3 h3 {
	font-family: var(--tsd-font);
	font-weight: 700;
	text-transform: uppercase;
	text-wrap: balance;
}

.tsd-h1 h1 {
	font-size: 54px;
	line-height: 1.06;
	letter-spacing: -0.005em;
	padding-bottom: 0;
}

.tsd-h2 h2 {
	font-size: 34px;
	line-height: 1.16;
	padding-bottom: 0;
}

.tsd-h3 h3 {
	font-size: 25px;
	line-height: 1.2;
	letter-spacing: 0.02em;
	padding-bottom: 0;
}

.tsd-lead p {
	font-size: 19px;
	line-height: 1.6;
	text-wrap: pretty;
}

.tsd-body p {
	font-size: 17px;
	line-height: 1.72;
	text-wrap: pretty;
}

/* Blue uppercase eyebrow above the H2 (section 2). */
.tsd-eyebrow,
.tsd-eyebrow p {
	font-family: var(--tsd-font);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--tsd-blue);
	line-height: 1.4;
}

/* Buttons — uppercase, letter-spaced, blue bottom border. */
.et_pb_button.tsd-btn,
.et_pb_button.tsd-btn:hover {
	font-family: var(--tsd-font);
	font-weight: 600;
	font-size: 16px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 16px 32px !important;
	border-radius: 0;
	border: none;
	border-bottom: 3px solid var(--tsd-blue-dark);
	background-color: var(--tsd-blue);
	color: #fff;
	transition: background-color 0.25s ease;
}

.et_pb_button.tsd-btn:hover {
	background-color: var(--tsd-blue-light);
}

/* Divi injects an arrow through :after — the design has none. */
.et_pb_button.tsd-btn:after {
	display: none !important;
}

.et_pb_button.tsd-btn--dark {
	background-color: var(--tsd-ink);
	border-bottom-color: var(--tsd-ink);
	font-size: 15px;
	padding: 15px 28px !important;
}

.et_pb_button.tsd-btn--dark:hover {
	background-color: var(--tsd-blue);
}

.et_pb_button.tsd-btn--light {
	background-color: #fff;
	color: var(--tsd-blue-dark);
	border-bottom-color: var(--tsd-blue-dark);
	font-size: 15px;
	padding: 15px 30px !important;
}

.et_pb_button.tsd-btn--light:hover {
	background-color: var(--tsd-ink);
	color: #fff;
}

/* Text link with an arrow ("Enquire about this equipment →").
   Works both when the class sits on the Text module and when it sits on the <a>. */
a.tsd-link,
.tsd-link a {
	font-family: var(--tsd-font);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--tsd-blue);
}

a.tsd-link:hover,
.tsd-link a:hover {
	color: var(--tsd-blue-dark);
}

/* --------------------------------------------------------------------------
   2. Section 1 — Hero
   -------------------------------------------------------------------------- */

.et_pb_section.tsd-hero {
	position: relative;
	background-color: var(--tsd-black-hero);
	overflow: hidden;
}

/* Radial gradient — layer beneath the content. */
.et_pb_section.tsd-hero:before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(120% 100% at 78% 55%, #10365f 0%, #0a1a2c 42%, #050a12 100%);
	pointer-events: none;
}

/* Horizontal "scanline" lines over the gradient. */
.et_pb_section.tsd-hero:after {
	content: "";
	position: absolute;
	inset: 0;
	opacity: 0.3;
	background-image: linear-gradient(rgba(21, 101, 192, 0.35) 1px, transparent 1px);
	background-size: 100% 46px;
	pointer-events: none;
}

.et_pb_section.tsd-hero > .et_pb_row {
	position: relative;
	z-index: 2;
}

.tsd-hero .et_pb_row.tsd-hero__row {
	display: flex;
	align-items: center;
	min-height: 560px;
	padding-top: 88px;
	padding-bottom: 88px;
}

/* Breadcrumb (Yoast, via [tsd_breadcrumb]). */
.tsd-crumbs,
.tsd-crumbs p {
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.6;
}

.tsd-crumbs a {
	color: rgba(255, 255, 255, 0.5);
}

.tsd-crumbs a:hover {
	color: #fff;
}

/* Last item (the current page) — light blue. */
.tsd-crumbs .breadcrumb_last,
.tsd-crumbs strong {
	color: #6ba7e8;
	font-weight: 400;
}

.tsd-hero .tsd-h1 h1 {
	color: #fff;
}

.tsd-hero .tsd-lead p {
	color: rgba(255, 255, 255, 0.72);
	max-width: 480px;
}

/* --------------------------------------------------------------------------
   3. Sections 2, 8, 9 — edge-to-edge 50/50 split
   One half is a column background image, not an Image module.
   -------------------------------------------------------------------------- */

.et_pb_row.tsd-split {
	display: flex;
	align-items: stretch;
	width: 100%;
	max-width: none;
	padding: 0;
	margin: 0;
}

.tsd-split > .et_pb_column {
	width: 50%;
	margin: 0 !important;
	float: none;
}

/* Reversed order — image on the right without touching the builder structure. */
.et_pb_row.tsd-split--rev {
	flex-direction: row-reverse;
}

/* Image column: background spans the full height. */
.tsd-split .tsd-split__media {
	min-height: 500px;
	background-size: cover;
	background-position: center;
}

/* Text column: vertically centred, generous inner spacing. */
.tsd-split .tsd-split__text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 96px 80px;
}

.tsd-split .tsd-split__text > .et_pb_module {
	max-width: 520px;
}

/* --------------------------------------------------------------------------
   4. Section 3 — black block with four stats
   -------------------------------------------------------------------------- */

.et_pb_section.tsd-stats-section {
	background-color: var(--tsd-ink);
}

.tsd-stats-section .tsd-h2 h2,
.tsd-stats-section h2 {
	color: #fff;
	font-size: 33px;
	line-height: 1.18;
}

.tsd-stats-section .tsd-body p {
	color: rgba(255, 255, 255, 0.62);
	font-size: 16px;
	line-height: 1.75;
	max-width: 460px;
}

/* The Divi row is five equal 1/5 columns; CSS turns it into 1 wide + 4 narrow,
   so each stat stays a separate module the client can edit. */
.et_pb_row.tsd-stats-row {
	display: flex;
	align-items: stretch;
}

.tsd-stats-row > .et_pb_column {
	float: none;
	width: 14.5%;
	margin: 0 !important;
}

/* Stats align to the top, while the left heading column stays centred. */
.tsd-stats-row > .et_pb_column:first-child {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.tsd-stats-row > .et_pb_column:not(:first-child) .tsd-stat {
	height: 100%;
}

.tsd-stats-row > .et_pb_column:first-child {
	width: 36%;
	margin-right: 6% !important;
}

/* A single stat — a Text module carrying the tsd-stat class. */
.tsd-stat {
	padding: 6px 24px;
	border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.tsd-stat__num {
	font-family: var(--tsd-font);
	font-size: 34px;
	font-weight: 700;
	color: var(--tsd-accent);
	line-height: 1;
	margin-bottom: 16px;
}

.tsd-stat__title {
	font-family: var(--tsd-font);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 8px;
}

.tsd-stat__body {
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.55);
}

/* --------------------------------------------------------------------------
   5. Section 4 — blue CTA bar
   -------------------------------------------------------------------------- */

.et_pb_section.tsd-cta-bar {
	background-color: var(--tsd-blue);
	padding: 0;
}

.tsd-cta-bar .et_pb_row {
	display: flex;
	align-items: center;
	padding: 32px 0;
}

.tsd-cta-bar .et_pb_column {
	display: flex;
	align-items: center;
	margin-bottom: 0 !important;
}

.tsd-cta-bar__text,
.tsd-cta-bar__text p {
	font-family: var(--tsd-font);
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: #fff;
	line-height: 1.3;
}

.tsd-cta-bar .et_pb_button_module_wrapper {
	margin-left: auto;
}

/* --------------------------------------------------------------------------
   6. Section 5 — equipment, alternating rows
   -------------------------------------------------------------------------- */

.tsd-eq-heading h2 {
	font-size: 39px;
	line-height: 1.14;
	max-width: 900px;
	margin: 0 auto;
	color: var(--tsd-ink);
}

.et_pb_row.tsd-eq-row {
	display: flex;
	align-items: stretch;
	background-color: var(--tsd-gray-bg);
	border: 1px solid var(--tsd-border);
	min-height: 320px;
	width: 90%;
	max-width: 1280px;
	padding: 0;
	margin-bottom: 20px;
}

.et_pb_row.tsd-eq-row--rev {
	flex-direction: row-reverse;
}

.tsd-eq-row > .et_pb_column {
	width: 50%;
	margin: 0 !important;
	float: none;
}

.tsd-eq-row .tsd-eq-row__text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 54px 60px;
}

.tsd-eq-row .tsd-eq-row__media {
	min-height: 320px;
	background-color: var(--tsd-black-deep);
	background-size: cover;
	background-position: center;
}

/* Item number plus a short dash above the title. */
.tsd-eq-row__num {
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: var(--tsd-font);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: var(--tsd-blue);
	margin-bottom: 12px;
}

.tsd-eq-row__num:after {
	content: "";
	width: 28px;
	height: 2px;
	background: #c8d2dc;
}

.tsd-eq-row .tsd-body p {
	font-size: 16px;
	max-width: 460px;
	color: var(--tsd-body);
}

/* --------------------------------------------------------------------------
   7. Section 6 — "Why choose", blue block with five columns
   -------------------------------------------------------------------------- */

.et_pb_section.tsd-reasons {
	background-image: linear-gradient(180deg, #14589f 0%, #0d3f80 100%);
}

.tsd-reasons .tsd-h2 h2 {
	color: #fff;
	text-align: center;
}

/* Five equal columns with a fixed gap instead of Divi percentage margins. */
.et_pb_row.tsd-reasons-row {
	display: flex;
	align-items: stretch;
	gap: 30px;
}

.tsd-reasons-row > .et_pb_column {
	float: none;
	width: 100%;
	margin: 0 !important;
}

.tsd-reason {
	padding-top: 22px;
	border-top: 3px solid rgba(255, 255, 255, 0.5);
}

.tsd-reason__title {
	font-family: var(--tsd-font);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 10px;
}

.tsd-reason__body {
	font-size: 15px;
	line-height: 1.68;
	color: rgba(255, 255, 255, 0.78);
	text-wrap: pretty;
}

/* --------------------------------------------------------------------------
   8. Section 7 — gallery
   -------------------------------------------------------------------------- */

.et_pb_section.tsd-gallery-section {
	background-color: var(--tsd-black-deep);
}

.tsd-gallery-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 26px;
}

.tsd-gallery-head h2 {
	font-family: var(--tsd-font);
	font-size: 29px;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #fff;
	margin: 0;
	padding: 0;
}

.tsd-gallery-head span {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.45);
}

/* Divi gallery grid → five equal columns without percentage margins. */
.tsd-gallery .et_pb_gallery_items {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 14px;
}

.tsd-gallery .et_pb_gallery_item {
	width: 100% !important;
	margin: 0 !important;
	clear: none !important;
}

.tsd-gallery .et_pb_gallery_image {
	height: 200px;
}

.tsd-gallery .et_pb_gallery_image img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

/* Per-image titles are not part of the design. */
.tsd-gallery .et_pb_gallery_title,
.tsd-gallery .et_pb_gallery_caption {
	display: none;
}

/* --------------------------------------------------------------------------
   9. Section 9 — applications list (01–05)
   A Text module with a plain <ol>; the numbers come from a CSS counter.
   -------------------------------------------------------------------------- */

.tsd-applications ol {
	list-style: none;
	counter-reset: tsd-app;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 12px;
}

.tsd-applications ol li {
	counter-increment: tsd-app;
	display: flex;
	align-items: flex-start;
	gap: 14px;
	background: #fff;
	border-left: 3px solid var(--tsd-blue);
	padding: 16px 18px;
	font-size: 16px;
	font-weight: 500;
	color: var(--tsd-ink);
	line-height: 1.5;
}

.tsd-applications ol li:before {
	content: counter(tsd-app, decimal-leading-zero);
	font-family: var(--tsd-font);
	font-size: 13px;
	font-weight: 700;
	color: var(--tsd-blue);
	letter-spacing: 0.1em;
	padding-top: 3px;
	flex: none;
}

/* --------------------------------------------------------------------------
   10. Section 10 — FAQ (Divi Accordion on a dark background)
   -------------------------------------------------------------------------- */

.et_pb_section.tsd-faq-section {
	background-color: var(--tsd-ink);
}

.tsd-faq-section .tsd-h2 h2 {
	color: #fff;
	font-size: 33px;
	letter-spacing: 0.01em;
}

.tsd-faq .et_pb_toggle {
	background: transparent !important;
	border: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 0;
	padding: 0;
	margin: 0;
}

.tsd-faq .et_pb_toggle_title {
	position: relative;
	font-family: var(--tsd-font);
	font-size: 17px;
	font-weight: 500;
	color: #fff !important;
	padding: 20px 44px 20px 0;
	cursor: pointer;
}

/* Replace Divi's ETmodules icon with the + / − from the design.
   Divi hides the icon on an open toggle, so display is forced back on. */
.tsd-faq .et_pb_toggle_title:before,
.tsd-faq .et_pb_toggle_open .et_pb_toggle_title:before {
	font-family: var(--tsd-font) !important;
	content: "+" !important;
	display: block !important;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	margin-top: 0;
	font-size: 24px;
	line-height: 1;
	color: var(--tsd-accent);
}

.tsd-faq .et_pb_toggle_open .et_pb_toggle_title:before {
	content: "\2212" !important;
}

.tsd-faq .et_pb_toggle_content {
	font-size: 15px;
	line-height: 1.72;
	color: rgba(255, 255, 255, 0.6);
	padding: 0 40px 22px 0;
	text-wrap: pretty;
}

/* --------------------------------------------------------------------------
   11. Section 11 — contact form (Divi Contact Form)
   -------------------------------------------------------------------------- */

.tsd-form-wrap {
	background: var(--tsd-gray-bg);
	border: 1px solid #e3e7ec;
	padding: 34px;
}

.tsd-form .et_pb_contact_form {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.tsd-form .et_pb_contact_field {
	padding: 0 !important;
	margin: 0;
	width: 100%;
}

/* Three fields on the first row (Name / Email / Phone). */
.tsd-form .et_pb_contact_field_half {
	width: calc(33.333% - 9.34px);
}

.tsd-form .et_pb_contact_field .input,
.tsd-form .et_pb_contact_field textarea {
	background: #fff !important;
	border: 1px solid #d5dbe2;
	border-radius: 0;
	padding: 14px 16px !important;
	font-family: var(--tsd-font);
	font-size: 15px;
	color: var(--tsd-ink);
	width: 100%;
}

.tsd-form .et_pb_contact_field .input:focus,
.tsd-form .et_pb_contact_field textarea:focus {
	border-color: var(--tsd-blue);
	outline: none;
}

.tsd-form .et_pb_contact_field .input::placeholder,
.tsd-form .et_pb_contact_field textarea::placeholder {
	color: #8a949f;
}

.tsd-form .et_pb_contact_field textarea {
	resize: vertical;
	min-height: 140px;
}

.tsd-form .et_contact_bottom_container {
	width: 100%;
	margin: 0;
	float: none;
	text-align: left;
}

.tsd-form .et_pb_contact_submit {
	background: var(--tsd-blue) !important;
	color: #fff !important;
	border: none;
	border-bottom: 3px solid var(--tsd-blue-dark);
	border-radius: 0;
	font-family: var(--tsd-font);
	font-weight: 600;
	font-size: 16px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 16px 44px !important;
}

.tsd-form .et_pb_contact_submit:hover {
	background: var(--tsd-blue-light) !important;
}

.tsd-form .et_pb_contact_submit:after {
	display: none !important;
}

.tsd-form-notes {
	font-size: 15px;
	line-height: 1.9;
	color: var(--tsd-muted);
}

/* --------------------------------------------------------------------------
   12. Section 12 — related posts
   -------------------------------------------------------------------------- */

.et_pb_section.tsd-posts-section {
	background: var(--tsd-gray-bg);
	border-top: 1px solid var(--tsd-border);
}

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

.tsd-section-head h2 {
	font-family: var(--tsd-font);
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: var(--tsd-ink);
	margin: 0;
	padding: 0;
}

.tsd-posts .et_pb_post {
	background: #fff;
	border: 1px solid #e3e7ec;
	border-radius: 0;
	padding: 0;
	margin-bottom: 24px;
	transition: box-shadow 0.25s ease;
}

.tsd-posts .et_pb_post:hover {
	box-shadow: 0 18px 40px rgba(10, 20, 32, 0.12);
}

.tsd-posts .et_pb_image_container {
	margin: 0;
}

.tsd-posts .et_pb_image_container img {
	width: 100%;
	height: 190px;
	object-fit: cover;
	display: block;
}

.tsd-posts .entry-title,
.tsd-posts .post-meta,
.tsd-posts .post-content {
	padding-left: 24px;
	padding-right: 24px;
}

.tsd-posts .post-meta {
	font-family: var(--tsd-font);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--tsd-blue);
	padding-top: 24px;
	margin-bottom: 10px;
}

.tsd-posts .post-meta a {
	color: var(--tsd-blue);
}

.tsd-posts .entry-title {
	font-family: var(--tsd-font);
	font-size: 19px;
	font-weight: 700;
	line-height: 1.32;
	padding-bottom: 10px;
}

.tsd-posts .entry-title a {
	color: var(--tsd-ink);
}

.tsd-posts .post-content {
	font-size: 15px;
	line-height: 1.64;
	color: var(--tsd-muted);
	padding-bottom: 28px;
}

.tsd-posts .post-content .more-link {
	display: none;
}

/* --------------------------------------------------------------------------
   13. Index page — product grid ([tsd_product_grid])
   -------------------------------------------------------------------------- */

.tsd-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.tsd-card {
	display: block;
	background: #fff;
	border: 1px solid #e3e7ec;
	color: inherit;
	transition: box-shadow 0.25s ease;
}

.tsd-card:hover {
	box-shadow: 0 18px 40px rgba(10, 20, 32, 0.12);
	color: inherit;
}

.tsd-card__media {
	position: relative;
	height: 190px;
	background: var(--tsd-black-deep);
	overflow: hidden;
}

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

.tsd-card__body {
	padding: 24px 24px 28px;
}

/* Category above the title — related posts cards only. */
.tsd-card__meta {
	font-family: var(--tsd-font);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--tsd-blue);
	margin-bottom: 10px;
}

.tsd-card__title {
	font-family: var(--tsd-font);
	font-size: 19px;
	font-weight: 700;
	line-height: 1.32;
	margin: 0 0 10px;
	color: var(--tsd-ink);
	text-transform: uppercase;
}

/* Post titles are sentence case in the design, unlike product names. */
.tsd-cards--posts .tsd-card__title {
	text-transform: none;
}

.tsd-card__excerpt {
	font-size: 15px;
	line-height: 1.64;
	color: var(--tsd-muted);
	margin: 0;
	text-wrap: pretty;
}

/* --------------------------------------------------------------------------
   14. Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1280px) {

	.tsd-split .tsd-split__text {
		padding: 72px 48px;
	}

	.tsd-eq-row .tsd-eq-row__text {
		padding: 44px 40px;
	}
}

@media (max-width: 980px) {

	.tsd-h1 h1 { font-size: 38px; }
	.tsd-h2 h2 { font-size: 27px; }
	.tsd-h3 h3 { font-size: 22px; }
	.tsd-eq-heading h2 { font-size: 29px; }
	.tsd-lead p { font-size: 17px; }

	/* Hero: text above the image. */
	.tsd-hero .et_pb_row.tsd-hero__row {
		display: block;
		min-height: 0;
		padding-top: 56px;
		padding-bottom: 56px;
	}

	/* Split sections stack — image always first, regardless of --rev. */
	.et_pb_row.tsd-split,
	.et_pb_row.tsd-eq-row {
		display: block;
	}

	.tsd-split > .et_pb_column,
	.tsd-eq-row > .et_pb_column {
		width: 100%;
	}

	.tsd-split .tsd-split__media {
		min-height: 320px;
	}

	.tsd-split .tsd-split__text {
		padding: 56px 28px;
	}

	.tsd-split .tsd-split__text > .et_pb_module {
		max-width: none;
	}

	.tsd-eq-row .tsd-eq-row__text {
		padding: 36px 28px;
	}

	.tsd-eq-row .tsd-eq-row__media {
		min-height: 240px;
	}

	/* CTA bar: heading, then button. */
	.tsd-cta-bar .et_pb_row {
		display: block;
		padding: 28px 0;
	}

	.tsd-cta-bar .et_pb_button_module_wrapper {
		margin-left: 0;
		margin-top: 18px;
	}

	.tsd-cta-bar__text,
	.tsd-cta-bar__text p {
		font-size: 19px;
	}

	/* Multi-column grids. */
	.tsd-gallery .et_pb_gallery_items,
	.tsd-cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	/* Stats and "why choose" columns stack. */
	.et_pb_row.tsd-stats-row {
		display: block;
	}

	.tsd-stats-row > .et_pb_column,
	.tsd-stats-row > .et_pb_column:first-child {
		width: 100%;
		margin-right: 0 !important;
	}

	.et_pb_row.tsd-reasons-row {
		flex-wrap: wrap;
		gap: 24px;
	}

	.tsd-reasons-row > .et_pb_column {
		width: calc(50% - 12px);
	}

	.tsd-stat {
		border-left: none;
		border-top: 1px solid rgba(255, 255, 255, 0.13);
		padding: 20px 0 0;
	}

	.tsd-form .et_pb_contact_field_half {
		width: 100%;
	}

	.tsd-section-head,
	.tsd-gallery-head {
		display: block;
	}

	.tsd-section-head h2,
	.tsd-gallery-head h2 {
		margin-bottom: 10px;
	}
}

@media (max-width: 767px) {

	.tsd-h1 h1 { font-size: 31px; }
	.tsd-h2 h2 { font-size: 23px; }

	.tsd-gallery .et_pb_gallery_items,
	.tsd-cards {
		grid-template-columns: minmax(0, 1fr);
	}

	.tsd-split .tsd-split__text,
	.tsd-eq-row .tsd-eq-row__text {
		padding: 40px 22px;
	}

	.et_pb_row.tsd-reasons-row {
		display: block;
	}

	.tsd-reasons-row > .et_pb_column {
		width: 100%;
		margin-bottom: 24px !important;
	}

	.tsd-form-wrap {
		padding: 22px;
	}

	.tsd-form .et_pb_contact_submit {
		width: 100%;
		text-align: center;
	}
}
