/*
 Theme Name:   Stay On The Tools Theme
 Text Domain:  stay-on-the-tools
 Author:      Stay On The Tools
 Version:     1.8.10
*/

.sott-layout {
	display: block;
	width: min(100%, 1340px);
	margin: 0 auto;
	padding: 2rem 1rem 0;
}

.sott-layout__content {
	min-width: 0;
}

.sott-layout__sidebar {
	margin-top: 2rem;
}

.sott-layout__sidebar #secondary,
.sott-layout__sidebar .widget-area {
	display: block;
	padding: 1.5rem;
	border-radius: 1rem;
	background: #f8fafc;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.sott-sidebar-placeholder__text {
	margin: 0;
	font-size: 1rem;
	font-weight: 700;
	color: #101820;
}

.sott-main--full-width .sott-layout,
.sott-layout--full-width {
	width: 100%;
	max-width: 100%;
	padding-left: 0;
	padding-right: 0;
}

/* Hero */
:root {
	--hero-accent: #f4c542;
	--hero-bg-dark: #101820;
	--hero-text-light: #ffffff;
	--hero-text-dark: #101820;
	--hero-overlay: rgba(16, 24, 32, 0.62);
	--hero-overlay-strong: rgba(16, 24, 32, 0.74);
}

.hero {
	position: relative;
	overflow: hidden;
	padding: 4rem 1.25rem;
	color: var(--hero-text-light);
}

.hero__inner {
	position: relative;
	z-index: 2;
	width: min(100%, 1340px);
	margin: 0 auto;
}

.hero__content {
	max-width: 760px;
}

.hero__title {
	margin: 0;
	font-size: clamp(2rem, 4vw, 4.25rem);
	line-height: 1.05;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.hero__subtitle {
	margin: 1rem 0 0;
	font-size: clamp(1rem, 1.8vw, 1.25rem);
	line-height: 1.6;
	max-width: 58ch;
	opacity: 0.96;
}

.hero__subtitle p {
	margin: 0;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.875rem;
	margin-top: 1.5rem;
}

.hero__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.95rem 1.5rem;
	border: 2px solid transparent;
	border-radius: 999px;
	background: var(--hero-accent);
	color: var(--hero-text-dark);
	font-weight: 700;
	text-decoration: none;
	transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.hero__button:hover,
.hero__button:focus-visible {
	background: #ffd95f;
	color: var(--hero-text-dark);
	transform: translateY(-1px);
}

.hero__button:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 3px;
}

.hero__background,
.hero__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero__background-wrap,
.hero__media {
	position: relative;
}

.hero__custom-box,
.hero__shortcode,
.hero__contact-box {
	margin-top: 1.5rem;
}

.hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0 0 1rem;
	padding: 0.5rem 0.9rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hero__selling-points {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin: 1.5rem 0 0;
	padding: 0;
	list-style: none;
}

.hero__selling-points li {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1rem;
	border-radius: 999px;
	background: #ffffff1a;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: #ffffffe6;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.25rem;
}

.hero__selling-point-icon {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.25rem;
	height: 1.25rem;
	color: var(--hero-accent);
}

.hero__selling-point-icon svg {
	width: 0.95rem;
	height: 0.95rem;
}

.hero-minimal .hero__selling-points li {
	border-color: rgba(16, 24, 32, 0.1);
	background: rgba(255, 255, 255, 0.42);
	color: var(--hero-text-dark);
}

.hero__overlay {
	position: absolute;
	inset: 0;
	background: var(--hero-overlay);
	pointer-events: none;
}

.hero-standard {
	min-height: 72vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-color: var(--hero-bg-dark);
}

.hero-standard .hero__background-wrap {
	position: absolute;
	inset: 0;
}

.hero-standard .hero__background {
	position: absolute;
	inset: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.hero-standard .hero__overlay {
	background: linear-gradient(180deg, rgba(16, 24, 32, 0.38), rgba(16, 24, 32, 0.58));
}

.hero-standard .hero__content {
	margin: 0 auto;
}

.hero-standard .hero__actions {
	justify-content: center;
}

.hero-overlay-dark {
	min-height: 68vh;
	display: flex;
	align-items: center;
	background-color: var(--hero-bg-dark);
	text-align: left;
}

.hero-overlay-dark .hero__background-wrap {
	position: absolute;
	inset: 0;
}

.hero-overlay-dark .hero__background {
	position: absolute;
	inset: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.hero-overlay-dark .hero__overlay {
	background: linear-gradient(90deg, var(--hero-overlay-strong) 0%, rgba(16, 24, 32, 0.56) 45%, rgba(16, 24, 32, 0.4) 100%);
}

.hero-overlay-dark .hero__content {
	max-width: 640px;
}

.hero-overlay-dark .hero__button {
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.hero-two-column {
	background: linear-gradient(135deg, #0f1720 0%, #1b2632 100%);
	padding: 0;
	min-height: auto;
}

.hero-two-column .hero__background-wrap {
	position: absolute;
	inset: 0;
}

.hero-two-column .hero__background {
	position: absolute;
	inset: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.hero-two-column .hero__overlay {
	background: linear-gradient(90deg, rgba(16, 24, 32, 0.82) 0%, rgba(16, 24, 32, 0.6) 45%, rgba(16, 24, 32, 0.42) 100%);
}

.hero-two-column .hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: stretch;
	min-height: 420px;
	position: relative;
	z-index: 2;
}

.hero-two-column .hero__content-col {
	display: flex;
	align-items: center;
	padding: 2rem 2.5rem;
}

.hero-two-column .hero__content {
	max-width: 560px;
}

.hero-two-column .hero__media {
	min-height: 100%;
	background: #18232e;
}

.hero-two-column .hero__image {
	height: 100%;
}

.hero-two-column .hero__button {
	background: var(--hero-accent);
	color: var(--hero-text-dark);
}

.hero-minimal {
	background: var(--hero-accent, #f4c542);
	color: var(--hero-text-dark);
	text-align: center;
	padding-block: 4.5rem;
}

.hero-minimal .hero__background-wrap,
.hero-minimal .hero__media,
.hero-minimal .hero__overlay {
	display: none;
}

.hero-minimal .hero__content {
	margin: 0 auto;
	max-width: 720px;
}

.hero-minimal .hero__subtitle {
	color: rgba(16, 24, 32, 0.88);
}

.hero-minimal .hero__badge,
.hero-minimal .hero__custom-box,
.hero-minimal .hero__shortcode {
	background: rgba(16, 24, 32, 0.06);
}

.hero-minimal .hero__selling-points li,
.hero-minimal .hero__custom-box,
.hero-minimal .hero__shortcode,
.hero-minimal .hero__badge {
	color: var(--hero-text-dark);
}

.hero-minimal .hero__button {
	background: var(--hero-text-dark);
	color: var(--hero-text-light);
}

.hero-minimal .hero__button:hover,
.hero-minimal .hero__button:focus-visible {
	background: #000;
	color: #fff;
}

.hero--compact {
	min-height: 190px;
	display: flex;
	align-items: center;
}

.hero--compact .hero__inner {
	width: min(100%, 1100px);
}

.hero--compact .hero__content-col {
	padding: 0;
}

.hero--compact .hero__content {
	max-width: 720px;
}

.hero--compact .hero__actions,
.hero--compact .hero__custom-box,
.hero--compact .hero__shortcode,
.hero--compact .hero__contact-col,
.hero--compact .hero__media {
	display: none;
}

.hero--trade {
	background-color: var(--hero-bg-dark);
}

.hero--trade .hero__background-wrap {
	position: absolute;
	inset: 0;
}

.hero--trade .hero__background {
	position: absolute;
	inset: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.hero--trade .hero__overlay {
	background: linear-gradient(90deg, rgba(16, 24, 32, 0.82) 0%, rgba(16, 24, 32, 0.68) 40%, rgba(16, 24, 32, 0.6) 100%);
}

.hero--trade .hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
	gap: 2rem;
	align-items: center;
	min-height: 100%;
}

.hero--trade .hero__content-col {
	display: flex;
	align-items: center;
	padding: 3rem 0;
}

.hero--trade .hero__content {
	max-width: 640px;
}

.hero--trade .hero__custom-box {
	padding: 1.25rem;
	border-left: 4px solid var(--hero-accent);
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(8px);
}

.hero--trade .hero__custom-box > :first-child {
	margin-top: 0;
}

.hero--trade .hero__custom-box > :last-child {
	margin-bottom: 0;
}

.hero--trade .hero__contact-col {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 3rem 0;
}

.hero--trade .hero__contact-box {
	width: min(100%, 420px);
	padding: 1.5rem;
	border-radius: 1.5rem;
	background: rgba(255, 255, 255, 0.94);
	color: var(--hero-text-dark);
	box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
}

.hero--trade .hero__contact-title {
	margin-bottom: 1rem;
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--hero-text-dark);
}

.hero-two-column .hero__contact-col {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 2rem 0;
}

.hero-two-column .hero__contact-box {
	width: min(100%, 420px);
	padding: 2rem 1.75rem 1.8rem;
	border: 1px solid var(--pri, var(--hero-accent));
	border-radius: 0;
	background: rgba(0, 0, 0, 0.72);
	backdrop-filter: blur(8px);
	box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
	color: #ffffff;
}

.hero-two-column .hero__contact-title {
	margin: 0 0 1.5rem;
	font-size: clamp(1.75rem, 3vw, 2.1rem);
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: -0.02em;
	text-align: center;
	color: #ffffff;
	text-transform: uppercase;
}

.hero-two-column .hero__contact-box form,
.hero-two-column .hero__contact-box .wpcf7-form,
.hero-two-column .hero__contact-box .sott-form {
	display: grid;
	gap: 0.75rem;
}

.hero-two-column .hero__contact-box p {
	margin: 0;
}

.hero-two-column .hero__contact-box label {
	display: block;
}

.hero-two-column .hero__contact-box input[type="text"],
.hero-two-column .hero__contact-box input[type="email"],
.hero-two-column .hero__contact-box input[type="tel"],
.hero-two-column .hero__contact-box input[type="url"],
.hero-two-column .hero__contact-box input[type="number"],
.hero-two-column .hero__contact-box input[type="search"],
.hero-two-column .hero__contact-box select,
.hero-two-column .hero__contact-box textarea {
	width: 100%;
	min-height: 48px;
	padding: 0.95rem 1rem;
	border: 0;
	border-radius: 3px;
	background: #ffffff;
	color: #101820;
	font-size: 1rem;
	line-height: 1.4;
	box-shadow: none;
}

.hero-two-column .hero__contact-box textarea {
	min-height: 150px;
	resize: vertical;
}

.hero-two-column .hero__contact-box input::placeholder,
.hero-two-column .hero__contact-box textarea::placeholder {
	color: #8b9098;
}

.hero-two-column .hero__contact-box input[type="submit"],
.hero-two-column .hero__contact-box button[type="submit"],
.hero-two-column .hero__contact-box .wpcf7-submit,
.hero-two-column .hero__contact-box .gform_button,
.hero-two-column .hero__contact-box .wpforms-submit,
.hero-two-column .hero__contact-box .frm_button_submit {
	width: 100%;
	min-height: 56px;
	margin-top: 0.5rem;
	padding: 0.95rem 1.25rem;
	border: 0;
	border-radius: 3px;
	background: var(--pri, var(--hero-accent));
	color: #101820;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.1;
	text-transform: uppercase;
	cursor: pointer;
	box-shadow: none;
}

.hero-two-column .hero__contact-box input[type="submit"]:hover,
.hero-two-column .hero__contact-box button[type="submit"]:hover,
.hero-two-column .hero__contact-box .wpcf7-submit:hover,
.hero-two-column .hero__contact-box .gform_button:hover,
.hero-two-column .hero__contact-box .wpforms-submit:hover,
.hero-two-column .hero__contact-box .frm_button_submit:hover {
	filter: brightness(1.03);
}

.hero-two-column .hero__contact-box .wpcf7-spinner,
.hero-two-column .hero__contact-box .wpcf7-not-valid-tip,
.hero-two-column .hero__contact-box .wpcf7-response-output {
	color: #ffffff;
}

.text-accent {
	color: var(--pri, var(--hero-accent));
}

.hero .text-accent {
	color: var(--pri, var(--hero-accent)) !important;
}

@media (min-width: 1025px) {
	.has-wrap,
	.cta-inner,
	.hero__inner,
	.sott-layout {
		width: min(100% - 2rem, 1200px);
	}

	.home .hero {
		min-height: 80vh;
	}

	.single-post .hero {
		min-height: 190px;
		padding-top: 2.5rem;
		padding-bottom: 2.5rem;
	}

	.hero--compact {
		min-height: 190px;
		padding-top: 2.5rem;
		padding-bottom: 2.5rem;
	}

	.hero--trade {
		min-height: 80vh;
	}

	.hero-standard,
	.hero-overlay-dark {
		padding-inline: 2rem;
	}

	.hero-two-column .hero__content-col {
		padding-inline: 4rem;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.hero {
		padding-block: 4rem;
		padding-inline: 1.5rem;
	}

	.hero-standard,
	.hero-overlay-dark {
		min-height: 56vh;
	}

	.hero-two-column .hero__inner {
		grid-template-columns: 1fr 1fr;
		min-height: 520px;
	}

	.hero-two-column .hero__content-col {
		padding: 1.75rem 1.5rem;
	}

	.hero-minimal {
		padding-block: 4rem;
	}

	.hero--compact {
		padding-top: 2.5rem;
		padding-bottom: 2.5rem;
	}

	.hero--trade .hero__inner {
		grid-template-columns: minmax(0, 1fr);
	}

	.hero--trade .hero__contact-col {
		justify-content: flex-start;
		padding-top: 0;
	}

	.hero-two-column .hero__contact-col {
		justify-content: flex-start;
		padding-top: 0;
	}
}

@media (max-width: 767px) {
	.hero {
		padding-block: 3rem;
		padding-inline: 1rem;
	}

	.hero__title {
		font-size: clamp(1.9rem, 8vw, 2.75rem);
	}

	.hero__subtitle {
		font-size: 1rem;
	}

	.hero__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.hero__selling-points {
		flex-direction: column;
		align-items: stretch;
	}

	.hero__button {
		width: 100%;
	}

	.hero-standard,
	.hero-overlay-dark {
		min-height: 48vh;
	}

	.hero-standard .hero__content,
	.hero-overlay-dark .hero__content,
	.hero-minimal .hero__content {
		max-width: 100%;
	}

	.hero-two-column .hero__inner {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.hero-two-column .hero__content-col {
		order: 1;
		padding: 1.25rem 1rem 1rem;
	}

	.hero-two-column .hero__media {
		order: 2;
		min-height: 260px;
	}

	.hero-minimal {
		padding-block: 3rem;
	}

	.hero--compact {
		min-height: auto;
		padding-top: 2.25rem;
		padding-bottom: 2.25rem;
	}

	.hero--trade .hero__inner {
		grid-template-columns: 1fr;
	}

	.hero--trade .hero__content-col {
		order: 1;
		padding: 2rem 0 1rem;
	}

	.hero--trade .hero__contact-col {
		order: 2;
		padding: 0 0 1rem;
		justify-content: stretch;
	}

	.hero--trade .hero__contact-box {
		width: 100%;
	}

	.hero-two-column .hero__contact-col {
		order: 2;
		padding: 0 1rem 0.75rem;
		justify-content: stretch;
	}

	.hero-two-column .hero__contact-box {
		width: 100%;
	}
}

@media (min-width: 783px) {
	.sott-layout--has-sidebar {
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(300px, 26%);
		column-gap: 2rem;
		align-items: start;
	}

	.sott-layout--sidebar-left {
		grid-template-columns: minmax(300px, 26%) minmax(0, 1fr);
	}

	.sott-layout--sidebar-left .sott-layout__sidebar {
		order: 1;
		margin-top: 0;
	}

	.sott-layout--sidebar-left .sott-layout__content {
		order: 2;
	}

	.sott-layout--sidebar-right .sott-layout__content {
		order: 1;
	}

	.sott-layout--sidebar-right .sott-layout__sidebar {
		order: 2;
		margin-top: 0;
	}

	.sott-layout__sidebar {
		min-width: 26%;
		position: sticky;
		top: 2rem;
		align-self: start;
	}

	.sott-layout__content {
		width: 100%;
		min-width: 0;
	}
}

.sott-block-section--how-it-works {
	padding-block: 1rem;
}

.sott-how-it-works-grid {
	display: grid;
	gap: 1.5rem;
	margin-top: 2rem;
}

.sott-how-it-works-card {
	position: relative;
	padding: 2rem 1.5rem 1.5rem;
	border: 1px solid rgba(17, 24, 39, 0.08);
	border-radius: 1.25rem;
	background: #ffffff;
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.sott-how-it-works-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.5rem;
	height: 3.5rem;
	margin-bottom: 1rem;
	border-radius: 999px;
	background: rgba(244, 197, 66, 0.16);
	color: var(--hero-accent, #f4c542);
}

.sott-how-it-works-card__icon svg {
	width: 1.5rem;
	height: 1.5rem;
}

.sott-how-it-works-card__index {
	position: absolute;
	top: 1.25rem;
	right: 1.25rem;
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: rgba(17, 24, 39, 0.4);
}

.sott-how-it-works-card__title {
	margin: 0 0 0.75rem;
	font-size: 1.25rem;
	line-height: 1.2;
	color: #101820;
}

.sott-how-it-works-card__text {
	margin: 0;
	color: #475467;
	line-height: 1.7;
}

@media (min-width: 768px) {
	.sott-how-it-works-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1100px) {
	.sott-how-it-works-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

/* Global visual pass inspired by getwork.co.uk */
body {
	font-size: 1.0625rem;
	line-height: 1.7;
	color: #111827;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

.has-wrap,
.cta-inner,
.hero__inner,
.sott-layout {
	width: min(100% - 2rem, 1340px);
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero__title,
.sott-how-it-works-card__title {
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.08;
	color: #0f172a;
}

h1,
.hero__title {
	font-size: clamp(2.5rem, 6vw, 4.85rem);
}

h2,
.sott-block-section__heading,
.sott-content-block__heading {
	font-size: clamp(2rem, 4vw, 3.15rem);
	margin: 0 0 1rem;
	color: var(--sec, #1c2026) !important;
}

h3,
.sott-how-it-works-card__title,
.sott-service-card__title {
	margin-top: 5px;
	font-size: clamp(1.25rem, 2vw, 1.7rem);
}

@media (min-width: 1025px) {
	h1,
	.hero__title {
		font-size: 56px;
	}

	h2,
	.sott-block-section__heading,
	.sott-content-block__heading {
		font-size: 36px !important;
	}

	h3,
	.sott-how-it-works-card__title,
	.sott-service-card__title {
		font-size: 28px !important;
	}
}

p,
li,
.hero__subtitle,
.sott-content-block__body,
.sott-block-section__intro,
.sott-how-it-works-card__text {
	font-size: clamp(1rem, 1.2vw, 1.125rem);
}

p {
	margin: 0 0 1.25rem;
}

.p-sct,
.sott-cta-bar-section {
	padding-top: 3rem;
	padding-bottom: 3rem;
}

.sott-layout__content > .p-sct:nth-of-type(odd) {
	background-color: #fff;
	border-bottom: 1px solid #e9e9e9;
}

.sott-layout__content > .p-sct:nth-of-type(even) {
	background-color: #fafafa;
	border-bottom: 1px solid #e9e9e9;
}

.sott-layout__content > .p-sct > .has-wrap {
	width: min(100% - 2rem, 1340px);
	margin: 0 auto;
}

.sott-layout__content > .sott-cta-bar-section {
	position: relative;
	left: 50%;
	right: 50%;
	width: 100vw;
	max-width: 100vw;
	margin-left: -50vw;
	margin-right: -50vw;
	padding-top: 0;
	padding-bottom: 0;
	background: transparent;
	border-bottom: 0;
	grid-column: 1 / -1;
	z-index: 1;
}

.sott-layout__content > .sott-cta-bar-section .sott-cta-bar {
	border-radius: 0;
}

.sott-layout__content > .sott-cta-bar-section .sott-cta-bar__inner.has-wrap {
	width: min(100% - 2rem, 1340px);
	max-width: 1340px;
	margin: 0 auto;
	padding-left: 0;
	padding-right: 0;
}

.sott-layout {
	padding-top: 0;
}

.hero {
	padding-block: clamp(4rem, 8vw, 6rem);
}

.hero__content {
	max-width: 780px;
}

.hero__subtitle {
	max-width: 44rem;
	line-height: 1.65;
}

.home .hero__content,
.hero-standard .hero__content,
.hero-minimal .hero__content,
.sott-block-section--how-it-works,
.sott-block-section--services,
.sott-block-section--reviews,
.sott-block-section--areas,
.sott-block-section--map,
.sott-block-section--gallery {
	text-align: center;
}

.hero-overlay-dark .hero__content,
.hero--trade .hero__content,
.sott-content-block__content {
	text-align: left;
}

.home .hero,
.home .hero__title,
.home .hero__title span,
.home .hero__subtitle,
.home .hero__subtitle p,
.home .hero__content,
.home .hero__badge,
.home .hero__selling-points li,
.home .hero__custom-box,
.home .hero__custom-box p,
.home .hero__shortcode,
.home .hero__shortcode p,
.hero--trade,
.hero--trade .hero__title,
.hero--trade .hero__title span,
.hero--trade .hero__subtitle,
.hero--trade .hero__subtitle p,
.hero--trade .hero__content,
.hero--trade .hero__badge,
.hero--trade .hero__selling-points li,
.hero--trade .hero__custom-box,
.hero--trade .hero__custom-box p,
.hero--trade .hero__shortcode,
.hero--trade .hero__shortcode p,
.hero-overlay-dark .hero__title,
.hero-overlay-dark .hero__title span,
.hero-overlay-dark .hero__subtitle,
.hero-overlay-dark .hero__subtitle p,
.hero-overlay-dark .hero__badge,
.hero-overlay-dark .hero__selling-points li,
.hero-overlay-dark .hero__custom-box,
.hero-overlay-dark .hero__custom-box p,
.hero-overlay-dark .hero__shortcode,
.hero-overlay-dark .hero__shortcode p,
.hero-two-column .hero__title,
.hero-two-column .hero__title span,
.hero-two-column .hero__subtitle,
.hero-two-column .hero__subtitle p,
.hero-two-column .hero__badge,
.hero-two-column .hero__selling-points li,
.hero-two-column .hero__custom-box,
.hero-two-column .hero__custom-box p,
.hero-two-column .hero__shortcode,
.hero-two-column .hero__shortcode p,
.hero-standard .hero__title,
.hero-standard .hero__title span,
.hero-standard .hero__subtitle,
.hero-standard .hero__subtitle p,
.hero-standard .hero__badge,
.hero-standard .hero__selling-points li,
.hero-standard .hero__custom-box,
.hero-standard .hero__custom-box p,
.hero-standard .hero__shortcode,
.hero-standard .hero__shortcode p {
	color: #ffffff;
}

.hero-minimal .hero__title,
.hero-minimal .hero__title span {
	color: var(--sec, var(--hero-text-dark));
}

.hero-minimal .hero__title .text-accent {
	color: var(--pri, var(--hero-accent)) !important;
}

.hero__actions,
.sott-service-card__actions,
.sott-content-block__button-wrap {
	margin-top: 1.75rem;
}

.c-btn,
.hero__button,
.sott-cta-bar__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.625rem;
	min-height: 3.5rem;
	padding: 0.95rem 1.6rem;
	border-radius: 999px;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	box-shadow: none;
}

.c-btn svg,
.hero__button svg,
.sott-cta-bar__button svg {
	width: 1rem;
	height: 1rem;
}

.sott-content-block,
.sott-service-card,
.sott-how-it-works-card,
.sott-layout__sidebar #secondary,
.sott-layout__sidebar .widget-area,
.e-frm-wr {
	border-radius: 0;
	box-shadow: none;
}

.sott-content-block,
.sott-service-card,
.sott-how-it-works-card {
	box-shadow: none;
}

.sott-content-block {
	display: grid;
	gap: clamp(1.5rem, 3vw, 2.5rem);
	align-items: center;
	width: 100%;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.sott-content-block--image,
.sott-content-block--video {
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.sott-content-block--reverse .sott-content-block__media {
	order: 2;
}

.sott-content-block--reverse .sott-content-block__content {
	order: 1;
}

.sott-content-block--no-media {
	grid-template-columns: minmax(0, 1fr);
}

.sott-content-block__media {
	min-width: 0;
}

.sott-content-block__image,
.sott-content-block__media img,
.sott-content-block__media iframe {
	width: 100%;
}

.sott-content-block__image img,
.sott-content-block__media img {
	display: block;
	width: 100%;
	border-radius: 1.5rem;
}

.sott-content-block__content {
	max-width: none;
}

.sott-content-block__body,
.sott-block-section__intro {
	max-width: none;
	margin-left: 0;
	margin-right: 0;
}

.sott-content-block__list {
	margin: 1.5rem 0 0;
	padding: 0;
	list-style: none;
}

.sott-content-block__list li {
	display: flex;
	align-items: flex-start;
	gap: 0.875rem;
	margin-bottom: 0.9rem;
}

.sott-content-block__list-icon {
	flex: 0 0 auto;
	font-size: 1.1rem;
	margin-top: 0.15rem;
}

.sott-services-grid,
.sott-gallery-grid,
.sott-areas-grid,
.sott-how-it-works-grid {
	margin-top: 2.5rem;
}

.sott-how-it-works-grid {
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	gap: 1.25rem;
}

.sott-how-it-works-card {
	padding: 2.25rem 1.5rem 1.75rem;
	text-align: center;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.sott-how-it-works-card__icon {
	width: 4.25rem;
	height: 4.25rem;
	margin: 0 auto 1rem;
}

.sott-how-it-works-card__icon svg {
	width: 1.75rem;
	height: 1.75rem;
}

.sott-how-it-works-card__index {
	position: static;
	margin-bottom: 0.75rem;
	font-size: 0.8rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.sott-how-it-works-card__title {
	margin-bottom: 0.75rem;
}

.sott-service-card {
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
	border: 1px solid #e9e9e9;
	border-radius: 1.25rem;
	background: #ffffff;
	box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sott-service-card:hover,
.sott-service-card:focus-within {
	transform: translateY(-4px);
	box-shadow: 0 20px 42px rgba(15, 23, 42, 0.1);
}

.sott-service-card__media {
	overflow: hidden;
}

.sott-service-card__media img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.sott-service-card__content {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	padding: 2rem 1.75rem 2.25rem;
	text-align: center;
}

.sott-service-card__title {
	margin-bottom: 0.9rem;
}

.sott-service-card__actions {
	margin-top: auto;
	padding-top: 1.5rem;
}

.sott-service-card__text {
	line-height: 1.65;
}

.sott-cta-bar {
	border-radius: 1.75rem;
	padding: 1.5rem 1.75rem;
}

.sott-cta-bar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}

.sott-cta-bar__copy {
	display: grid;
	gap: 0.5rem;
	max-width: 48rem;
}

.sott-cta-bar__title {
	margin: 0 0 0;
	font-size: clamp(1.5rem, 2.6vw, 2.25rem);
	font-weight: 800;
	line-height: 1.1;
	color: #1c2026 !important;
}

.sott-cta-bar__description {
	font-size: 1rem;
	line-height: 1.65;
}

.sott-cta-bar__description > *:first-child {
	margin-top: 0;
}

.sott-cta-bar__description > *:last-child {
	margin-bottom: 0;
}

.e-frm-wr {
	padding: clamp(1.75rem, 3vw, 2.5rem);
	box-shadow: 0 22px 55px rgba(15, 23, 42, 0.08);
}

.s-hd {
	border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.s-hd-inr {
	min-height: 5.5rem;
}

.s-hd-inr-act .c-btn,
header#header .c-btn--pho {
	min-height: 3.25rem;
}

.s-hd-bar {
	padding-block: 0.7rem;
}

@media (max-width: 1024px) {
	.has-wrap,
	.cta-inner,
	.hero__inner,
	.sott-layout {
		width: min(100% - 1.5rem, 1340px);
	}

	h1,
	.hero__title {
		font-size: clamp(2.2rem, 8vw, 3.8rem);
	}

	h2,
	.sott-block-section__heading,
	.sott-content-block__heading {
		font-size: clamp(1.8rem, 4vw, 2.6rem);
	}

	.sott-content-block {
		padding: 0;
	}

	.sott-content-block--image,
	.sott-content-block--video {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	body {
		font-size: 1rem;
	}

	.p-sct,
	.sott-cta-bar-section {
		padding-top: 3rem;
		padding-bottom: 3rem;
	}

	.sott-layout {
		padding-top: 0;
	}

	.sott-layout__content > .p-sct > .has-wrap {
		width: min(100% - 1.25rem, 1340px);
	}

	.sott-content-block,
	.sott-service-card__content,
	.sott-how-it-works-card,
	.e-frm-wr,
	.sott-cta-bar {
		padding-left: 1.25rem;
		padding-right: 1.25rem;
	}

	.sott-content-block {
		padding-left: 0;
		padding-right: 0;
	}

	.sott-cta-bar__inner {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
	}

	.sott-cta-bar__copy {
		max-width: none;
	}

	.sott-how-it-works-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
}

.sott-site-footer {
	position: relative;
	background: #1c2026 !important;
	color: rgba(255, 255, 255, 0.84);
	border-top: 4px solid var(--pri, #f4c542);
}

.sott-site-footer .has-wrap {
	width: min(100% - 2rem, 1200px);
	margin: 0 auto;
}

.sott-site-footer .s-ft__top {
	padding: 4rem 0 3rem;
}

.sott-site-footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.8fr) minmax(0, 0.8fr) minmax(0, 1fr);
	gap: 2.5rem;
	align-items: start;
}

.sott-site-footer__col {
	min-width: 0;
}

.sott-site-footer__logo img {
	display: block;
	max-width: min(100%, 280px);
	height: auto;
}

.sott-site-footer__tagline {
	margin: 1rem 0 0;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.6;
	color: #ffffff;
}

.sott-site-footer__heading {
	margin: 0 0 1rem;
	font-size: 1.125rem !important;
	font-weight: 700;
	line-height: 1.2;
	color: #ffffff !important;
}

.sott-site-footer__contact-list,
.sott-site-footer__menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.sott-site-footer__contact-list {
	display: grid;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.sott-site-footer__menu {
	display: grid;
	gap: 0.85rem;
}

.sott-site-footer__menu a,
.sott-site-footer__contact-list a {
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.975rem;
	line-height: 1.6;
	text-decoration: none;
	transition: color 0.2s ease, transform 0.2s ease;
}

.sott-site-footer__menu a:hover,
.sott-site-footer__menu a:focus,
.sott-site-footer__contact-list a:hover,
.sott-site-footer__contact-list a:focus {
	color: var(--pri, #f4c542);
}

.sott-site-footer__menu--social a {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
}

.sott-site-footer__social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1rem;
	height: 1rem;
	color: var(--pri, #f4c542);
}

.sott-site-footer__social-icon svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
}

.sott-site-footer__address {
	display: grid;
	gap: 0.25rem;
	margin-top: 1.25rem;
	font-style: normal;
	font-size: 0.95rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.72);
}

.sott-site-footer__intro,
.sott-site-footer__muted,
.sott-footer-custom-content,
.sott-footer-custom-content p {
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.975rem;
	line-height: 1.7;
}

.sott-site-footer__actions {
	margin: 1.25rem 0 0;
}

.sott-site-footer__actions .c-btn {
	margin-left: 0;
}

.sott-footer-custom-content {
	margin-top: 1.25rem;
}

.sott-footer-custom-content > *:first-child {
	margin-top: 0;
}

.sott-footer-custom-content > *:last-child {
	margin-bottom: 0;
}

.sott-site-footer .e-frm-row,
.sott-site-footer .c-drop,
.sott-site-footer select {
	max-width: 100%;
}

.sott-site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(0, 0, 0, 0.18);
}

.sott-site-footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	padding: 1.15rem 0;
	font-size: 0.9rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.68);
}

.sott-site-footer__copyright {
	text-align: center;
}

@media (max-width: 1024px) {
	.sott-site-footer .s-ft__top {
		padding: 3rem 0 2.5rem;
	}

	.sott-site-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 2rem;
	}
}

@media (max-width: 767px) {
	.sott-site-footer .has-wrap {
		width: min(100% - 1.25rem, 1340px);
	}

	.sott-site-footer .s-ft__top {
		padding: 2.5rem 0 2rem;
	}

	.sott-site-footer__grid {
		grid-template-columns: 1fr;
		gap: 1.75rem;
	}

	.sott-site-footer__bottom-inner {
		flex-direction: column;
		align-items: center;
	}
}
