/* SDS Logistics Complete Website v1.6.0 — polished mobile-first public styling. */
:root {
	--sds-red: #b32034;
	--sds-red-dark: #8d1727;
	--sds-ink: #16201e;
	--sds-ink-soft: #2b3734;
	--sds-muted: #646f6c;
	--sds-bg: #f4f4f1;
	--sds-white: #ffffff;
	--sds-line: #dde1dd;
	--sds-soft: #eceeea;
	--sds-radius: 18px;
	--sds-shadow: 0 22px 60px rgba(13, 24, 21, .11);
	--sds-header-height: 88px;
}

html {
	scroll-behavior: smooth;
}

body.sds-logistics-managed-page {
	margin: 0 !important;
	background: var(--sds-bg) !important;
}

body.sds-logistics-managed-page.sds-menu-is-open {
	overflow: hidden;
}

#sds-site,
#sds-site * {
	box-sizing: border-box;
}

#sds-site {
	min-height: 100vh;
	overflow: clip;
	background: var(--sds-bg);
	color: var(--sds-ink);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

#sds-site a {
	color: inherit;
	text-decoration: none;
}

#sds-site img {
	display: block;
	max-width: 100%;
	height: auto;
}

#sds-site button,
#sds-site input,
#sds-site select,
#sds-site textarea {
	font: inherit;
}

#sds-site h1,
#sds-site h2,
#sds-site h3,
#sds-site p,
#sds-site ul {
	margin-top: 0;
}

#sds-site :focus-visible {
	outline: 3px solid #ffd468;
	outline-offset: 3px;
}

#sds-site .sds-shell {
	width: min(1180px, calc(100% - 48px));
	margin-right: auto;
	margin-left: auto;
}

#sds-site .sds-skip-link {
	position: fixed;
	z-index: 999999;
	top: -100px;
	left: 12px;
	padding: 11px 16px;
	border-radius: 8px;
	background: #fff;
	color: #111;
	font-weight: 700;
}

#sds-site .sds-skip-link:focus {
	top: 12px;
}

/* Header */
#sds-site .sds-header {
	position: sticky;
	z-index: 1000;
	top: 0;
	height: var(--sds-header-height);
	border-bottom: 1px solid var(--sds-line);
	background: rgba(255, 255, 255, .98);
	color: var(--sds-ink);
	backdrop-filter: blur(12px);
}

.admin-bar #sds-site .sds-header {
	top: 32px;
}

#sds-site .sds-header__inner {
	position: relative;
	display: flex;
	height: 100%;
	align-items: center;
	justify-content: space-between;
	gap: 26px;
}

#sds-site .sds-logo-link {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
}

#sds-site .sds-brand-image {
	width: auto;
	max-width: 142px;
	height: 58px;
	object-fit: contain;
}

#sds-site .sds-nav {
	display: flex;
	min-width: 0;
	flex: 1 1 auto;
	align-items: center;
	justify-content: flex-end;
	gap: 28px;
}

#sds-site .sds-nav__links,
#sds-site .sds-nav__actions {
	display: flex;
	align-items: center;
}

#sds-site .sds-nav__links {
	gap: 24px;
}

#sds-site .sds-nav__actions {
	gap: 16px;
}

#sds-site .sds-nav__links > a {
	position: relative;
	padding: 30px 0;
	color: #313b39;
	font-size: 14px;
	font-weight: 650;
	white-space: nowrap;
}

#sds-site .sds-nav__links > a::after {
	position: absolute;
	right: 0;
	bottom: 21px;
	left: 0;
	height: 2px;
	background: var(--sds-red);
	content: "";
	opacity: 0;
	transform: scaleX(.45);
	transition: opacity .18s ease, transform .18s ease;
}

#sds-site .sds-nav__links > a:hover::after,
#sds-site .sds-nav__links > a[aria-current="page"]::after {
	opacity: 1;
	transform: scaleX(1);
}

#sds-site .sds-nav__phone {
	color: var(--sds-muted);
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
}

#sds-site .sds-nav__cta {
	display: inline-flex;
	min-height: 46px;
	align-items: center;
	justify-content: center;
	padding: 0 20px;
	border-radius: 9px;
	background: var(--sds-red);
	color: #fff;
	font-size: 14px;
	font-weight: 750;
	white-space: nowrap;
	transition: background .18s ease, transform .18s ease;
}

#sds-site .sds-nav__cta:hover,
#sds-site .sds-nav__cta.is-current {
	background: var(--sds-red-dark);
	transform: translateY(-1px);
}

#sds-site .sds-menu-toggle {
	display: none;
	width: 46px;
	height: 46px;
	flex: 0 0 46px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	padding: 0;
	border: 0;
	border-radius: 9px;
	background: var(--sds-bg);
	color: var(--sds-ink);
	cursor: pointer;
}

#sds-site .sds-menu-toggle span {
	display: block;
	width: 23px;
	height: 2px;
	border-radius: 2px;
	background: currentColor;
	transition: transform .2s ease, opacity .2s ease;
}

/* Shared typography and controls */
#sds-site .sds-kicker {
	margin: 0 0 14px;
	color: var(--sds-red);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
}

#sds-site .sds-kicker--light {
	color: #fff;
}

#sds-site h1,
#sds-site h2,
#sds-site h3 {
	color: var(--sds-ink);
	font-weight: 750;
	letter-spacing: -.035em;
}

#sds-site h2 {
	margin-bottom: 18px;
	font-size: clamp(34px, 4vw, 50px);
	line-height: 1.08;
}

#sds-site h3 {
	margin-bottom: 10px;
	font-size: 21px;
	line-height: 1.25;
}

#sds-site p {
	color: var(--sds-muted);
}

#sds-site .sds-lead {
	color: var(--sds-ink);
	font-size: 21px;
	line-height: 1.55;
}

#sds-site .sds-button,
#sds-site .sds-button:visited {
	display: inline-flex;
	min-height: 50px;
	align-items: center;
	justify-content: center;
	padding: 0 22px;
	border: 1px solid transparent;
	border-radius: 9px;
	font-size: 14px;
	font-weight: 750;
	line-height: 1.1;
	text-align: center;
	cursor: pointer;
	transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

#sds-site .sds-button:hover {
	transform: translateY(-1px);
}

#sds-site .sds-button--primary {
	background: var(--sds-red);
	color: #fff;
}

#sds-site .sds-button--primary:hover {
	background: var(--sds-red-dark);
	color: #fff;
}

#sds-site .sds-button--secondary {
	border-color: var(--sds-line);
	background: #fff;
	color: var(--sds-ink);
}

#sds-site .sds-button--secondary:hover {
	border-color: #c5cac6;
	background: var(--sds-soft);
}

#sds-site .sds-button--light {
	background: #fff;
	color: var(--sds-ink);
}

#sds-site .sds-button--light:hover {
	background: #f1f2ef;
	color: var(--sds-ink);
}

#sds-site .sds-button--ghost {
	border-color: rgba(255, 255, 255, .52);
	background: rgba(255, 255, 255, .06);
	color: #fff;
}

#sds-site .sds-button--ghost:hover {
	border-color: #fff;
	background: #fff;
	color: var(--sds-ink);
}

#sds-site .sds-button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

/* Photo heroes */
#sds-site .sds-page-hero {
	position: relative;
	min-height: 520px;
	overflow: hidden;
	background: var(--sds-ink);
	color: #fff;
}

#sds-site .sds-page-hero--home {
	min-height: 650px;
}

#sds-site .sds-page-hero__image,
#sds-site .sds-page-hero__overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

#sds-site .sds-page-hero__image {
	object-fit: cover;
	object-position: center;
}

#sds-site .sds-page-hero--home .sds-page-hero__image {
	object-position: 52% center;
}

#sds-site .sds-page-hero--services .sds-page-hero__image {
	object-position: 40% center;
}

#sds-site .sds-page-hero--residential .sds-page-hero__image {
	object-position: 24% center;
}

#sds-site .sds-page-hero--coverage .sds-page-hero__image {
	object-position: 72% center;
}

#sds-site .sds-page-hero--security .sds-page-hero__image {
	object-position: 28% center;
}

#sds-site .sds-page-hero--about .sds-page-hero__image {
	object-position: 58% center;
}

#sds-site .sds-page-hero--quote .sds-page-hero__image {
	object-position: 20% center;
}

#sds-site .sds-page-hero--contact .sds-page-hero__image {
	object-position: 80% center;
}

#sds-site .sds-page-hero__overlay {
	background:
		linear-gradient(90deg, rgba(12, 19, 18, .9) 0%, rgba(12, 19, 18, .7) 48%, rgba(12, 19, 18, .22) 80%, rgba(12, 19, 18, .24) 100%),
		linear-gradient(0deg, rgba(10, 16, 15, .36), rgba(10, 16, 15, .04) 58%);
}

#sds-site .sds-page-hero__inner {
	position: relative;
	z-index: 2;
	display: flex;
	min-height: inherit;
	align-items: center;
	padding-top: 64px;
	padding-bottom: 64px;
}

#sds-site .sds-page-hero__copy {
	max-width: 690px;
}

#sds-site .sds-page-hero h1 {
	max-width: 760px;
	margin: 0;
	color: #fff;
	font-size: clamp(46px, 6vw, 72px);
	line-height: 1.02;
	letter-spacing: -.055em;
}

#sds-site .sds-page-hero__text {
	max-width: 620px;
	margin: 24px 0 0;
	color: rgba(255, 255, 255, .86);
	font-size: 18px;
	line-height: 1.65;
}

#sds-site .sds-page-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 32px;
}

/* Sections */
#sds-site .sds-section {
	padding: 92px 0;
}

#sds-site .sds-section--white {
	background: #fff;
}

#sds-site .sds-section--dark {
	background: var(--sds-ink);
	color: #fff;
}

#sds-site .sds-section--dark h2,
#sds-site .sds-section--dark h3 {
	color: #fff;
}

#sds-site .sds-section--dark p {
	color: #b8c0be;
}

#sds-site .sds-section-head {
	max-width: 720px;
	margin-bottom: 42px;
}

#sds-site .sds-section-head--split {
	display: grid;
	max-width: none;
	grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr);
	align-items: end;
	gap: 70px;
}

#sds-site .sds-section-head--split > p {
	margin-bottom: 4px;
	font-size: 17px;
	line-height: 1.7;
}

#sds-site .sds-section-copy {
	max-width: 690px;
	font-size: 17px;
}

/* Trust strip */
#sds-site .sds-trust-strip {
	border-bottom: 1px solid var(--sds-line);
	background: #fff;
}

#sds-site .sds-trust-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

#sds-site .sds-trust-grid > div {
	display: flex;
	min-height: 108px;
	flex-direction: column;
	justify-content: center;
	padding: 22px 28px;
	border-right: 1px solid var(--sds-line);
}

#sds-site .sds-trust-grid > div:first-child {
	padding-left: 0;
}

#sds-site .sds-trust-grid > div:last-child {
	border-right: 0;
}

#sds-site .sds-trust-grid strong {
	font-size: 18px;
}

#sds-site .sds-trust-grid span {
	margin-top: 3px;
	color: var(--sds-muted);
	font-size: 13px;
}

/* Cards */
#sds-site .sds-card-grid {
	display: grid;
	gap: 18px;
}

#sds-site .sds-card-grid--3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

#sds-site .sds-card-grid--4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

#sds-site .sds-card {
	min-height: 220px;
	padding: 30px;
	border: 1px solid var(--sds-line);
	border-radius: var(--sds-radius);
	background: #fff;
}

#sds-site .sds-card > span,
#sds-site .sds-steps article > span {
	display: inline-block;
	margin-bottom: 42px;
	color: var(--sds-red);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .1em;
}

#sds-site .sds-card p {
	margin-bottom: 0;
	font-size: 15px;
}

#sds-site .sds-card--link {
	transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

#sds-site .sds-card--link:hover {
	border-color: #c9ceca;
	box-shadow: var(--sds-shadow);
	transform: translateY(-3px);
}

/* Split content */
#sds-site .sds-split {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
	align-items: center;
	gap: 76px;
}

#sds-site .sds-split--reverse .sds-split__media {
	order: 2;
}

#sds-site .sds-split__media {
	overflow: hidden;
	border-radius: 18px;
	background: #d8dcda;
	box-shadow: var(--sds-shadow);
}

#sds-site .sds-split__media img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

#sds-site .sds-split__content > p:not(.sds-kicker) {
	max-width: 570px;
	font-size: 17px;
	line-height: 1.75;
}

#sds-site .sds-section--dark .sds-split__media {
	box-shadow: none;
}

#sds-site .sds-clean-list {
	display: grid;
	gap: 10px;
	margin: 26px 0 0;
	padding: 0;
	list-style: none;
}

#sds-site .sds-clean-list li {
	position: relative;
	padding-left: 20px;
	color: #37413f;
	font-weight: 650;
}

#sds-site .sds-clean-list li::before {
	position: absolute;
	top: .72em;
	left: 0;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--sds-red);
	content: "";
}

#sds-site .sds-price-note {
	display: flex;
	align-items: center;
	gap: 16px;
	margin: 28px 0;
	padding: 18px 20px;
	border-left: 4px solid var(--sds-red);
	border-radius: 0 10px 10px 0;
	background: #fff;
}

#sds-site .sds-price-note strong {
	color: var(--sds-red);
	font-size: 25px;
	white-space: nowrap;
}

#sds-site .sds-price-note span {
	color: var(--sds-muted);
	font-size: 14px;
}

/* Compact coverage */
#sds-site .sds-coverage-summary {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr) auto;
	align-items: center;
	gap: 48px;
}

#sds-site .sds-coverage-summary h2 {
	margin-bottom: 0;
}

#sds-site .sds-coverage-summary__items {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

#sds-site .sds-coverage-summary__items span {
	padding: 12px 14px;
	border: 1px solid var(--sds-line);
	border-radius: 9px;
	background: var(--sds-bg);
	color: #35403e;
	font-size: 13px;
	font-weight: 700;
}

/* Choice cards */
#sds-site .sds-choice-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

#sds-site .sds-choice-card {
	min-height: 390px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	padding: 46px;
	border: 1px solid var(--sds-line);
	border-radius: 18px;
	background: #fff;
}

#sds-site .sds-choice-card p:not(.sds-kicker) {
	max-width: 560px;
	font-size: 17px;
}

#sds-site .sds-choice-card .sds-button {
	margin-top: 16px;
}

#sds-site .sds-choice-card--red {
	border-color: var(--sds-red);
	background: var(--sds-red);
	color: #fff;
}

#sds-site .sds-choice-card--red h2 {
	color: #fff;
}

#sds-site .sds-choice-card--red p {
	color: rgba(255, 255, 255, .84);
}

/* Residential rates and comparison */
#sds-site .sds-rate-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
	align-items: start;
	gap: 58px;
}

#sds-site .sds-rate-table {
	margin-top: 32px;
	border-top: 1px solid var(--sds-line);
}

#sds-site .sds-rate-table > div {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 24px;
	padding: 18px 0;
	border-bottom: 1px solid var(--sds-line);
}

#sds-site .sds-rate-table strong {
	font-size: 15px;
}

#sds-site .sds-rate-table span {
	color: var(--sds-red);
	font-weight: 800;
	text-align: right;
}

#sds-site .sds-rate-layout small {
	display: block;
	margin-top: 14px;
	color: var(--sds-muted);
}

#sds-site .sds-promise-card {
	position: sticky;
	top: calc(var(--sds-header-height) + 24px);
	padding: 38px;
	border-radius: 18px;
	background: var(--sds-red);
	color: #fff;
	box-shadow: var(--sds-shadow);
}

.admin-bar #sds-site .sds-promise-card {
	top: calc(var(--sds-header-height) + 56px);
}

#sds-site .sds-promise-card > span {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
}

#sds-site .sds-promise-card > strong {
	display: block;
	margin: 22px 0 4px;
	font-size: 52px;
	line-height: 1;
	letter-spacing: -.055em;
}

#sds-site .sds-promise-card h3 {
	color: #fff;
}

#sds-site .sds-promise-card p {
	color: rgba(255, 255, 255, .84);
}

#sds-site .sds-promise-card b {
	display: block;
	margin-top: 24px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, .28);
	font-size: 14px;
}

#sds-site .sds-comparison-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

#sds-site .sds-comparison-card {
	padding: 32px;
	border: 1px solid #43504d;
	border-radius: var(--sds-radius);
	background: #202b29;
}

#sds-site .sds-comparison-card > span {
	color: #b8c0be;
	font-size: 13px;
	font-weight: 700;
}

#sds-site .sds-comparison-card > strong {
	display: block;
	margin: 12px 0 8px;
	color: #fff;
	font-size: 48px;
	line-height: 1;
	letter-spacing: -.05em;
}

#sds-site .sds-comparison-card p {
	margin-bottom: 0;
	font-size: 14px;
}

#sds-site .sds-comparison-card--featured {
	border-color: var(--sds-red);
	background: var(--sds-red);
}

#sds-site .sds-comparison-card--featured > span,
#sds-site .sds-comparison-card--featured p {
	color: rgba(255, 255, 255, .86);
}

#sds-site .sds-comparison-details {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	margin-top: 2px;
	border: 1px solid #43504d;
	border-radius: var(--sds-radius);
	overflow: hidden;
}

#sds-site .sds-comparison-details > div {
	display: flex;
	min-height: 108px;
	flex-direction: column;
	justify-content: center;
	padding: 18px 20px;
	border-right: 1px solid #43504d;
}

#sds-site .sds-comparison-details > div:last-child {
	border-right: 0;
}

#sds-site .sds-comparison-details b {
	color: #fff;
	font-size: 19px;
}

#sds-site .sds-comparison-details span {
	margin-top: 3px;
	color: #aeb7b4;
	font-size: 12px;
}

/* Region and process grids */
#sds-site .sds-region-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

#sds-site .sds-region-card {
	min-height: 190px;
	padding: 30px;
	border: 1px solid var(--sds-line);
	border-radius: var(--sds-radius);
	background: var(--sds-bg);
}

#sds-site .sds-region-card p {
	margin-bottom: 0;
	font-size: 14px;
	line-height: 1.75;
}

#sds-site .sds-steps {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

#sds-site .sds-steps article {
	min-height: 220px;
	padding: 30px;
	border: 1px solid var(--sds-line);
	border-radius: var(--sds-radius);
	background: #fff;
}

#sds-site .sds-steps article p {
	margin-bottom: 0;
	font-size: 15px;
}

#sds-site .sds-steps--dark article {
	border-color: #3c4946;
	background: #202b29;
}

#sds-site .sds-steps--dark article > span {
	color: #fff;
}

/* Partnership, story and timeline */
#sds-site .sds-partner-intro,
#sds-site .sds-story {
	display: grid;
	grid-template-columns: minmax(300px, .75fr) minmax(0, 1.25fr);
	align-items: center;
	gap: 76px;
}

#sds-site .sds-partner-intro__logo {
	display: flex;
	min-height: 230px;
	align-items: center;
	justify-content: center;
	padding: 40px;
	border: 1px solid var(--sds-line);
	border-radius: 18px;
	background: var(--sds-bg);
}

#sds-site .sds-partner-intro__logo img {
	max-width: 310px;
	max-height: 115px;
	object-fit: contain;
}

#sds-site .sds-partner-intro p:not(.sds-kicker),
#sds-site .sds-story p {
	font-size: 17px;
	line-height: 1.75;
}

#sds-site .sds-timeline {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

#sds-site .sds-timeline article {
	min-height: 260px;
	padding: 30px;
	border: 1px solid var(--sds-line);
	border-radius: var(--sds-radius);
	background: #fff;
}

#sds-site .sds-timeline article > span {
	display: inline-block;
	margin-bottom: 48px;
	color: var(--sds-red);
	font-size: 13px;
	font-weight: 850;
}

#sds-site .sds-timeline p {
	margin-bottom: 0;
	font-size: 14px;
}

/* Contact */
#sds-site .sds-contact-layout {
	display: grid;
	grid-template-columns: minmax(0, .8fr) minmax(420px, 1.2fr);
	align-items: start;
	gap: 76px;
}

#sds-site .sds-contact-layout > div:first-child > p:not(.sds-kicker) {
	max-width: 470px;
	font-size: 17px;
}

#sds-site .sds-contact-cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

#sds-site .sds-contact-cards > a,
#sds-site .sds-contact-cards > div {
	display: flex;
	min-height: 150px;
	flex-direction: column;
	justify-content: space-between;
	padding: 26px;
	border: 1px solid var(--sds-line);
	border-radius: var(--sds-radius);
	background: var(--sds-bg);
}

#sds-site .sds-contact-cards > a {
	transition: border-color .18s ease, background .18s ease;
}

#sds-site .sds-contact-cards > a:hover {
	border-color: #c6cbc7;
	background: #fff;
}

#sds-site .sds-contact-cards span {
	color: var(--sds-red);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

#sds-site .sds-contact-cards strong {
	overflow-wrap: anywhere;
	font-size: 18px;
	line-height: 1.35;
}

#sds-site .sds-simple-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	padding: 46px;
	border: 1px solid var(--sds-line);
	border-radius: 18px;
	background: #fff;
}

#sds-site .sds-simple-cta h2 {
	max-width: 720px;
	margin-bottom: 0;
}

/* Quote form */
#sds-site .sds-quote-grid {
	display: grid;
	grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
	align-items: start;
	gap: 72px;
}

#sds-site .sds-quote-intro {
	position: sticky;
	top: calc(var(--sds-header-height) + 28px);
}

.admin-bar #sds-site .sds-quote-intro {
	top: calc(var(--sds-header-height) + 60px);
}

#sds-site .sds-quote-intro > p:not(.sds-kicker) {
	max-width: 460px;
	font-size: 17px;
}

#sds-site .sds-quote-form {
	display: grid;
	gap: 18px;
	padding: 34px;
	border: 1px solid var(--sds-line);
	border-radius: 18px;
	background: var(--sds-bg);
}

#sds-site .sds-honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	opacity: 0 !important;
}

#sds-site .sds-field-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

#sds-site .sds-quote-form label {
	display: grid;
	gap: 7px;
	color: #303a38;
	font-size: 13px;
	font-weight: 750;
}

#sds-site .sds-quote-form label > span b {
	color: var(--sds-red);
}

#sds-site .sds-quote-form input,
#sds-site .sds-quote-form select,
#sds-site .sds-quote-form textarea {
	width: 100%;
	border: 1px solid #cfd4d0;
	border-radius: 9px;
	background: #fff;
	color: var(--sds-ink);
	outline: none;
	transition: border-color .16s ease, box-shadow .16s ease;
}

#sds-site .sds-quote-form input,
#sds-site .sds-quote-form select {
	min-height: 50px;
	padding: 0 14px;
}

#sds-site .sds-quote-form textarea {
	min-height: 138px;
	padding: 13px 14px;
	resize: vertical;
}

#sds-site .sds-quote-form input:focus,
#sds-site .sds-quote-form select:focus,
#sds-site .sds-quote-form textarea:focus {
	border-color: var(--sds-red);
	box-shadow: 0 0 0 3px rgba(181, 31, 46, .1);
}

#sds-site .sds-consent {
	display: grid !important;
	grid-template-columns: 20px 1fr;
	align-items: start;
	gap: 10px !important;
	color: var(--sds-muted) !important;
	font-size: 12px !important;
	font-weight: 500 !important;
	line-height: 1.55;
}

#sds-site .sds-consent input {
	width: 18px;
	min-height: 18px;
	margin-top: 2px;
	accent-color: var(--sds-red);
}

#sds-site .sds-consent a {
	color: var(--sds-red);
	font-weight: 750;
	text-decoration: underline;
	text-underline-offset: 2px;
}

#sds-site .sds-submit {
	justify-self: start;
	min-width: 190px;
}

#sds-site .sds-submit:disabled {
	opacity: .68;
	cursor: wait;
	transform: none;
}

#sds-site .sds-form-notice {
	padding: 14px 16px;
	border-radius: 9px;
	font-size: 14px;
}

#sds-site .sds-form-notice--success {
	border: 1px solid #8bc59f;
	background: #eaf8ef;
	color: #235a36;
}

#sds-site .sds-form-notice--error {
	border: 1px solid #e0a5aa;
	background: #fff0f1;
	color: #7f1d27;
}

/* Optional FAQ support */
#sds-site .sds-faq-list {
	border-top: 1px solid var(--sds-line);
}

#sds-site .sds-faq-item {
	border-bottom: 1px solid var(--sds-line);
}

#sds-site .sds-faq-item h3 {
	margin: 0;
}

#sds-site .sds-faq-item button {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 22px 0;
	border: 0;
	background: transparent;
	color: var(--sds-ink);
	font-weight: 750;
	text-align: left;
	cursor: pointer;
}

#sds-site .sds-faq-icon {
	font-size: 24px;
	font-weight: 400;
}

#sds-site .sds-faq-item button[aria-expanded="true"] .sds-faq-icon {
	transform: rotate(45deg);
}

#sds-site .sds-faq-answer p {
	padding: 0 42px 22px 0;
}

/* Legal */
#sds-site .sds-legal__grid {
	display: grid;
	grid-template-columns: 230px minmax(0, 760px);
	justify-content: space-between;
	gap: 70px;
}

#sds-site .sds-legal aside {
	position: sticky;
	top: calc(var(--sds-header-height) + 28px);
	height: max-content;
	padding: 22px;
	border: 1px solid var(--sds-line);
	border-radius: 12px;
	background: var(--sds-bg);
}

#sds-site .sds-legal aside span,
#sds-site .sds-legal aside strong {
	display: block;
}

#sds-site .sds-legal aside span {
	color: var(--sds-muted);
	font-size: 12px;
	text-transform: uppercase;
}

#sds-site .sds-legal aside strong {
	margin-top: 6px;
}

#sds-site .sds-legal article h2 {
	margin: 42px 0 12px;
	font-size: 25px;
	letter-spacing: -.025em;
}

#sds-site .sds-legal article h2:first-child {
	margin-top: 0;
}

#sds-site .sds-legal article p {
	line-height: 1.8;
}

#sds-site .sds-legal article a {
	color: var(--sds-red);
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* CTA and footer */
#sds-site .sds-cta {
	padding: 64px 0;
	background: var(--sds-red);
	color: #fff;
}

#sds-site .sds-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 46px;
}

#sds-site .sds-cta h2 {
	max-width: 700px;
	margin-bottom: 0;
	color: #fff;
	font-size: clamp(34px, 4vw, 48px);
}

#sds-site .sds-footer {
	padding: 68px 0 24px;
	background: #111918;
	color: #fff;
}

#sds-site .sds-footer__grid {
	display: grid;
	grid-template-columns: minmax(240px, 1.3fr) repeat(3, minmax(150px, .7fr));
	gap: 54px;
}

#sds-site .sds-footer__brand .sds-brand-image {
	max-width: 165px;
	height: 86px;
}

#sds-site .sds-footer__brand p {
	max-width: 290px;
	margin: 18px 0 0;
	color: #aeb8b5;
	font-size: 14px;
}

#sds-site .sds-footer__column {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

#sds-site .sds-footer__column strong {
	margin-bottom: 7px;
	color: #fff;
	font-size: 12px;
	letter-spacing: .1em;
	text-transform: uppercase;
}

#sds-site .sds-footer__column a {
	color: #c3cbc9;
	font-size: 14px;
	transition: color .16s ease;
}

#sds-site .sds-footer__column a:hover {
	color: #fff;
}

#sds-site .sds-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	margin-top: 54px;
	padding-top: 22px;
	border-top: 1px solid #35403e;
	color: #86918e;
	font-size: 12px;
}

#sds-site .sds-footer__bottom > div {
	display: flex;
	gap: 22px;
}

#sds-site .sds-footer__bottom a {
	color: #b8c1bf;
}

/* Tablet */
@media (max-width: 1100px) {
	#sds-site .sds-nav {
		gap: 18px;
	}

	#sds-site .sds-nav__links {
		gap: 17px;
	}

	#sds-site .sds-nav__phone {
		display: none;
	}

	#sds-site .sds-card-grid--4,
	#sds-site .sds-timeline {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	#sds-site .sds-coverage-summary {
		grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
	}

	#sds-site .sds-coverage-summary .sds-button {
		grid-column: 1 / -1;
		justify-self: start;
	}

	#sds-site .sds-footer__grid {
		grid-template-columns: 1.2fr repeat(2, .8fr);
	}

	#sds-site .sds-footer__column:last-child {
		grid-column: 2 / -1;
	}
}

/* Mobile navigation and page layout */
@media (max-width: 900px) {
	:root {
		--sds-header-height: 70px;
	}

	.admin-bar #sds-site .sds-header {
		top: 46px;
	}

	#sds-site .sds-shell {
		width: min(100% - 32px, 1180px);
	}

	#sds-site .sds-header__inner {
		gap: 16px;
	}

	#sds-site .sds-brand-image {
		max-width: 116px;
		height: 50px;
	}

	#sds-site .sds-menu-toggle {
		display: flex;
		z-index: 4;
	}

	#sds-site .sds-menu-toggle[aria-expanded="true"] span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	#sds-site .sds-menu-toggle[aria-expanded="true"] span:nth-child(2) {
		opacity: 0;
	}

	#sds-site .sds-menu-toggle[aria-expanded="true"] span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	#sds-site .sds-nav {
		position: absolute;
		z-index: 3;
		top: 100%;
		right: -16px;
		left: -16px;
		display: block;
		max-height: calc(100vh - var(--sds-header-height));
		overflow-y: auto;
		padding: 10px 16px 22px;
		border-top: 1px solid var(--sds-line);
		border-bottom: 1px solid var(--sds-line);
		background: #fff;
		box-shadow: 0 20px 38px rgba(15, 24, 23, .14);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-8px);
		visibility: hidden;
		transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
	}

	#sds-site .sds-nav.is-open {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
		visibility: visible;
	}

	#sds-site .sds-nav__links,
	#sds-site .sds-nav__actions {
		display: block;
	}

	#sds-site .sds-nav__links > a {
		display: flex;
		min-height: 52px;
		align-items: center;
		padding: 0;
		border-bottom: 1px solid var(--sds-line);
		font-size: 16px;
	}

	#sds-site .sds-nav__links > a::after {
		display: none;
	}

	#sds-site .sds-nav__actions {
		padding-top: 16px;
	}

	#sds-site .sds-nav__phone {
		display: flex;
		min-height: 46px;
		align-items: center;
		margin-bottom: 10px;
		color: var(--sds-ink);
		font-size: 15px;
	}

	#sds-site .sds-nav__cta {
		width: 100%;
		min-height: 50px;
	}

	#sds-site .sds-page-hero,
	#sds-site .sds-page-hero--home {
		min-height: 540px;
	}

	#sds-site .sds-page-hero__inner {
		align-items: flex-end;
		padding-top: 56px;
		padding-bottom: 50px;
	}

	#sds-site .sds-page-hero h1 {
		font-size: clamp(40px, 12vw, 58px);
	}

	#sds-site .sds-page-hero__text {
		margin-top: 18px;
		font-size: 16px;
		line-height: 1.55;
	}

	#sds-site .sds-page-hero__actions {
		margin-top: 25px;
	}

	#sds-site .sds-section {
		padding: 68px 0;
	}

	#sds-site .sds-section-head,
	#sds-site .sds-section-head--split {
		display: block;
		margin-bottom: 32px;
	}

	#sds-site .sds-section-head--split > p {
		margin-top: 18px;
	}

	#sds-site .sds-trust-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	#sds-site .sds-trust-grid > div,
	#sds-site .sds-trust-grid > div:first-child {
		min-height: 92px;
		padding: 18px 16px;
		border-bottom: 1px solid var(--sds-line);
	}

	#sds-site .sds-trust-grid > div:nth-child(2) {
		border-right: 0;
	}

	#sds-site .sds-trust-grid > div:nth-child(3),
	#sds-site .sds-trust-grid > div:nth-child(4) {
		border-bottom: 0;
	}

	#sds-site .sds-card-grid--3,
	#sds-site .sds-card-grid--4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	#sds-site .sds-split,
	#sds-site .sds-rate-layout,
	#sds-site .sds-partner-intro,
	#sds-site .sds-story,
	#sds-site .sds-contact-layout,
	#sds-site .sds-quote-grid {
		grid-template-columns: 1fr;
		gap: 38px;
	}

	#sds-site .sds-split--reverse .sds-split__media {
		order: 0;
	}

	#sds-site .sds-coverage-summary {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	#sds-site .sds-coverage-summary .sds-button {
		grid-column: auto;
	}

	#sds-site .sds-choice-grid {
		grid-template-columns: 1fr;
	}

	#sds-site .sds-choice-card {
		min-height: 330px;
		padding: 34px;
	}

	#sds-site .sds-promise-card,
	#sds-site .sds-quote-intro,
	#sds-site .sds-legal aside {
		position: static;
	}

	#sds-site .sds-comparison-details {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	#sds-site .sds-comparison-details > div:nth-child(3) {
		border-right: 0;
	}

	#sds-site .sds-comparison-details > div:nth-child(-n+3) {
		border-bottom: 1px solid #43504d;
	}

	#sds-site .sds-region-grid,
	#sds-site .sds-steps {
		grid-template-columns: 1fr;
	}

	#sds-site .sds-steps article,
	#sds-site .sds-card {
		min-height: 190px;
	}

	#sds-site .sds-contact-cards {
		grid-template-columns: 1fr;
	}

	#sds-site .sds-simple-cta,
	#sds-site .sds-cta__inner {
		align-items: flex-start;
		flex-direction: column;
	}

	#sds-site .sds-legal__grid {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	#sds-site .sds-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 38px 28px;
	}

	#sds-site .sds-footer__brand {
		grid-column: 1 / -1;
	}

	#sds-site .sds-footer__column:last-child {
		grid-column: auto;
	}
}

@media (max-width: 620px) {
	#sds-site .sds-page-hero,
	#sds-site .sds-page-hero--home {
		min-height: 510px;
	}

	#sds-site .sds-page-hero__overlay {
		background:
			linear-gradient(0deg, rgba(11, 18, 17, .94) 0%, rgba(11, 18, 17, .62) 62%, rgba(11, 18, 17, .28) 100%);
	}

	#sds-site .sds-page-hero__actions,
	#sds-site .sds-button-row {
		display: grid;
		grid-template-columns: 1fr;
	}

	#sds-site .sds-page-hero__actions .sds-button,
	#sds-site .sds-button-row .sds-button {
		width: 100%;
	}

	#sds-site .sds-card-grid--3,
	#sds-site .sds-card-grid--4,
	#sds-site .sds-timeline,
	#sds-site .sds-region-grid,
	#sds-site .sds-comparison-grid {
		grid-template-columns: 1fr;
	}

	#sds-site .sds-card {
		min-height: 175px;
		padding: 25px;
	}

	#sds-site .sds-card > span,
	#sds-site .sds-steps article > span {
		margin-bottom: 30px;
	}

	#sds-site .sds-split__media img {
		aspect-ratio: 4 / 3;
	}

	#sds-site .sds-price-note {
		align-items: flex-start;
		flex-direction: column;
		gap: 4px;
	}

	#sds-site .sds-coverage-summary__items {
		grid-template-columns: 1fr;
	}

	#sds-site .sds-choice-card {
		min-height: 300px;
		padding: 28px;
	}

	#sds-site .sds-rate-table > div {
		grid-template-columns: 1fr;
		gap: 4px;
	}

	#sds-site .sds-rate-table span {
		text-align: left;
	}

	#sds-site .sds-promise-card {
		padding: 30px;
	}

	#sds-site .sds-promise-card > strong {
		font-size: 46px;
	}

	#sds-site .sds-comparison-card {
		padding: 28px;
	}

	#sds-site .sds-comparison-card > strong {
		font-size: 43px;
	}

	#sds-site .sds-comparison-details {
		grid-column: auto;
		grid-template-columns: 1fr 1fr;
	}

	#sds-site .sds-comparison-details > div {
		min-height: 94px;
		border-right: 1px solid #43504d;
		border-bottom: 1px solid #43504d;
	}

	#sds-site .sds-comparison-details > div:nth-child(even) {
		border-right: 0;
	}

	#sds-site .sds-comparison-details > div:last-child {
		grid-column: 1 / -1;
		border-right: 0;
		border-bottom: 0;
	}

	#sds-site .sds-comparison-details > div:nth-last-child(2) {
		border-bottom: 0;
	}

	#sds-site .sds-partner-intro__logo {
		min-height: 180px;
		padding: 30px;
	}

	#sds-site .sds-field-row {
		grid-template-columns: 1fr;
	}

	#sds-site .sds-quote-form {
		padding: 22px;
	}

	#sds-site .sds-submit {
		width: 100%;
		justify-self: stretch;
	}

	#sds-site .sds-simple-cta {
		padding: 30px;
	}

	#sds-site .sds-cta {
		padding: 52px 0;
	}

	#sds-site .sds-cta .sds-button {
		width: 100%;
	}

	#sds-site .sds-footer {
		padding-top: 54px;
	}

	#sds-site .sds-footer__grid {
		grid-template-columns: 1fr;
	}

	#sds-site .sds-footer__brand,
	#sds-site .sds-footer__column:last-child {
		grid-column: auto;
	}

	#sds-site .sds-footer__bottom,
	#sds-site .sds-footer__bottom > div {
		align-items: flex-start;
		flex-direction: column;
		gap: 9px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	#sds-site *,
	#sds-site *::before,
	#sds-site *::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
	}
}

/* --------------------------------------------------------------------------
   Version 1.5.0 visual refresh
   -------------------------------------------------------------------------- */

#sds-site {
	font-size: 16.5px;
}

#sds-site .sds-shell {
	width: min(1240px, calc(100% - 56px));
}

/* Refined header and direct contact actions */
#sds-site .sds-header {
	height: var(--sds-header-height);
	border-bottom-color: rgba(20, 32, 29, .09);
	background: rgba(255, 255, 255, .985);
	box-shadow: 0 8px 30px rgba(16, 28, 25, .045);
}

#sds-site .sds-header__inner {
	gap: 30px;
}

#sds-site .sds-brand-image {
	max-width: 150px;
	height: 64px;
}

#sds-site .sds-nav {
	gap: 28px;
}

#sds-site .sds-nav__links {
	gap: 23px;
}

#sds-site .sds-nav__links > a {
	padding: 33px 0;
	color: #2d3936;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: -.01em;
}

#sds-site .sds-nav__links > a::after {
	bottom: 24px;
	height: 3px;
	border-radius: 3px;
}

#sds-site .sds-nav__actions {
	gap: 14px;
}

#sds-site .sds-nav__email,
#sds-site .sds-nav__phone {
	display: flex;
	min-height: 48px;
	flex-direction: column;
	justify-content: center;
	gap: 1px;
	white-space: nowrap;
}

#sds-site .sds-nav__email span,
#sds-site .sds-nav__phone span {
	color: #8a9491;
	font-size: 9px;
	font-weight: 850;
	letter-spacing: .12em;
	line-height: 1.15;
	text-transform: uppercase;
}

#sds-site .sds-nav__email strong,
#sds-site .sds-nav__phone strong {
	font-size: 13px;
	font-weight: 800;
	letter-spacing: -.01em;
	line-height: 1.35;
}

#sds-site .sds-nav__email {
	color: #56615e;
}

#sds-site .sds-nav__phone {
	padding-left: 16px;
	border-left: 1px solid var(--sds-line);
	color: var(--sds-ink);
}

#sds-site .sds-nav__phone strong {
	color: var(--sds-red);
	font-size: 15px;
}

#sds-site .sds-nav__email:hover strong,
#sds-site .sds-nav__phone:hover strong {
	color: var(--sds-red-dark);
}

#sds-site .sds-nav__cta {
	min-height: 50px;
	padding: 0 21px;
	border-radius: 12px;
	box-shadow: 0 10px 22px rgba(179, 32, 52, .18);
	font-size: 14px;
}

#sds-site .sds-header__mobile-call {
	display: none;
}

/* Typography and controls */
#sds-site .sds-kicker {
	margin-bottom: 16px;
	font-size: 11px;
	letter-spacing: .15em;
}

#sds-site h1,
#sds-site h2,
#sds-site h3 {
	font-weight: 780;
}

#sds-site h2 {
	font-size: clamp(35px, 4vw, 54px);
	line-height: 1.06;
}

#sds-site h3 {
	font-size: 22px;
}

#sds-site .sds-button,
#sds-site .sds-button:visited {
	min-height: 54px;
	padding: 0 25px;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 800;
}

#sds-site .sds-button--primary {
	box-shadow: 0 12px 26px rgba(179, 32, 52, .18);
}

/* Stronger photo heroes */
#sds-site .sds-page-hero {
	min-height: 560px;
}

#sds-site .sds-page-hero--home {
	min-height: 690px;
}

#sds-site .sds-page-hero__overlay {
	background:
		linear-gradient(90deg, rgba(10, 18, 16, .94) 0%, rgba(10, 18, 16, .79) 43%, rgba(10, 18, 16, .28) 76%, rgba(10, 18, 16, .16) 100%),
		linear-gradient(0deg, rgba(7, 13, 12, .44), rgba(7, 13, 12, .02) 58%);
}

#sds-site .sds-page-hero__inner {
	padding-top: 78px;
	padding-bottom: 78px;
}

#sds-site .sds-page-hero__copy {
	max-width: 760px;
}

#sds-site .sds-page-hero h1 {
	max-width: 820px;
	font-size: clamp(50px, 6.1vw, 80px);
	line-height: .99;
	letter-spacing: -.06em;
}

#sds-site .sds-page-hero__text {
	max-width: 660px;
	margin-top: 25px;
	color: rgba(255, 255, 255, .88);
	font-size: 19px;
	line-height: 1.62;
}

#sds-site .sds-page-hero__actions {
	gap: 13px;
	margin-top: 34px;
}

#sds-site .sds-page-hero__direct {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 12px;
	margin-top: 24px;
	color: rgba(255, 255, 255, .68);
	font-size: 13px;
}

#sds-site .sds-page-hero__direct a {
	padding-bottom: 2px;
	border-bottom: 1px solid rgba(255, 255, 255, .55);
	color: #fff;
	font-weight: 800;
}

#sds-site .sds-page-hero__direct a:hover {
	border-bottom-color: #fff;
}

/* Better section rhythm and calmer cards */
#sds-site .sds-section {
	padding: 100px 0;
}

#sds-site .sds-section-head {
	margin-bottom: 46px;
}

#sds-site .sds-section-head--split {
	gap: 80px;
}

#sds-site .sds-trust-strip {
	border-bottom: 0;
	background: #17211f;
}

#sds-site .sds-trust-grid > div {
	min-height: 112px;
	border-right-color: rgba(255, 255, 255, .12);
}

#sds-site .sds-trust-grid strong {
	color: #fff;
	font-size: 19px;
}

#sds-site .sds-trust-grid span {
	color: #aeb8b5;
	font-size: 13px;
}

#sds-site .sds-card-grid {
	gap: 20px;
}

#sds-site .sds-card {
	min-height: 214px;
	padding: 34px;
	border-color: #e0e3df;
	border-radius: 20px;
	box-shadow: 0 8px 25px rgba(18, 30, 27, .035);
}

#sds-site .sds-card > span,
#sds-site .sds-steps article > span {
	margin-bottom: 34px;
	font-size: 11px;
	letter-spacing: .15em;
}

#sds-site .sds-card h3 {
	margin-bottom: 12px;
	font-size: 23px;
}

#sds-site .sds-card p {
	font-size: 15.5px;
	line-height: 1.68;
}

#sds-site .sds-card--link:hover {
	border-color: rgba(179, 32, 52, .32);
	box-shadow: 0 24px 56px rgba(16, 28, 25, .11);
	transform: translateY(-4px);
}

#sds-site .sds-split {
	gap: 84px;
}

#sds-site .sds-split__media {
	border-radius: 24px;
}

#sds-site .sds-split__media img {
	aspect-ratio: 16 / 10.5;
}

#sds-site .sds-split__content > p:not(.sds-kicker) {
	font-size: 18px;
}

#sds-site .sds-price-note {
	padding: 20px 22px;
	border-left-width: 5px;
	border-radius: 0 14px 14px 0;
	box-shadow: 0 10px 28px rgba(16, 28, 25, .045);
}

#sds-site .sds-coverage-summary {
	padding: 10px 0;
}

#sds-site .sds-coverage-summary__items span {
	padding: 14px 16px;
	border-radius: 12px;
}

#sds-site .sds-choice-card {
	min-height: 410px;
	padding: 50px;
	border-radius: 24px;
	box-shadow: 0 14px 38px rgba(15, 27, 24, .05);
}

#sds-site .sds-promise-card,
#sds-site .sds-simple-cta,
#sds-site .sds-quote-form,
#sds-site .sds-partner-intro__logo {
	border-radius: 22px;
}

/* Contact and quote pages */
#sds-site .sds-contact-actions,
#sds-site .sds-simple-cta__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-top: 28px;
}

#sds-site .sds-contact-cards {
	gap: 16px;
}

#sds-site .sds-contact-cards > a,
#sds-site .sds-contact-cards > div {
	min-height: 178px;
	padding: 29px;
	border-radius: 18px;
	background: #f6f6f3;
}

#sds-site .sds-contact-card small {
	color: #7b8582;
	font-size: 12px;
	font-weight: 650;
}

#sds-site .sds-contact-card--featured {
	border-color: var(--sds-red) !important;
	background: var(--sds-red) !important;
	color: #fff;
	box-shadow: 0 18px 42px rgba(179, 32, 52, .2);
}

#sds-site .sds-contact-card--featured span,
#sds-site .sds-contact-card--featured strong,
#sds-site .sds-contact-card--featured small {
	color: #fff;
}

#sds-site .sds-contact-card--featured span,
#sds-site .sds-contact-card--featured small {
	opacity: .82;
}

#sds-site .sds-simple-cta {
	padding: 52px;
	box-shadow: 0 18px 45px rgba(15, 27, 24, .055);
}

#sds-site .sds-simple-cta > div:first-child > p:last-child {
	max-width: 620px;
	margin: 16px 0 0;
}

#sds-site .sds-simple-cta__actions {
	flex-direction: column;
	align-items: flex-start;
	margin-top: 0;
}

#sds-site .sds-simple-cta__email {
	color: var(--sds-red);
	font-size: 14px;
	font-weight: 800;
	text-decoration: underline;
	text-underline-offset: 3px;
}

#sds-site .sds-quote-form {
	padding: 40px;
	border-color: #e0e3df;
	background: #f6f6f3;
	box-shadow: 0 20px 52px rgba(15, 27, 24, .06);
}

#sds-site .sds-quote-form input,
#sds-site .sds-quote-form select {
	min-height: 54px;
}

#sds-site .sds-quote-form input,
#sds-site .sds-quote-form select,
#sds-site .sds-quote-form textarea {
	border-radius: 11px;
}

#sds-site .sds-direct-contact-card {
	display: grid;
	gap: 4px;
	margin-top: 32px;
	padding: 22px;
	border-left: 4px solid var(--sds-red);
	border-radius: 0 14px 14px 0;
	background: #fff;
	box-shadow: 0 12px 30px rgba(16, 28, 25, .055);
}

#sds-site .sds-direct-contact-card span {
	color: #7d8784;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
}

#sds-site .sds-direct-contact-card a:first-of-type {
	color: var(--sds-red);
	font-size: 21px;
	font-weight: 850;
}

#sds-site .sds-direct-contact-card a:last-child {
	color: #4f5a57;
	font-size: 13px;
	font-weight: 700;
}

/* Prominent phone CTA */
#sds-site .sds-cta {
	padding: 78px 0;
	background:
		linear-gradient(120deg, rgba(116, 14, 31, .18), transparent 58%),
		var(--sds-red);
}

#sds-site .sds-cta__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, .62fr);
	align-items: center;
	gap: 72px;
}

#sds-site .sds-cta__copy p:not(.sds-kicker) {
	max-width: 680px;
	margin: 18px 0 0;
	color: rgba(255, 255, 255, .82);
	font-size: 17px;
}

#sds-site .sds-cta h2 {
	max-width: 780px;
	font-size: clamp(38px, 4.2vw, 56px);
}

#sds-site .sds-cta__actions {
	display: grid;
	gap: 12px;
	justify-items: stretch;
}

#sds-site .sds-cta__phone {
	display: flex;
	min-height: 86px;
	flex-direction: column;
	justify-content: center;
	padding: 16px 22px;
	border: 1px solid rgba(255, 255, 255, .45);
	border-radius: 16px;
	background: rgba(255, 255, 255, .1);
	color: #fff;
	transition: background .18s ease, transform .18s ease;
}

#sds-site .sds-cta__phone:hover {
	background: rgba(255, 255, 255, .17);
	transform: translateY(-2px);
}

#sds-site .sds-cta__phone span {
	font-size: 10px;
	font-weight: 850;
	letter-spacing: .13em;
	text-transform: uppercase;
}

#sds-site .sds-cta__phone strong {
	margin-top: 2px;
	font-size: 28px;
	line-height: 1.1;
	letter-spacing: -.035em;
}

#sds-site .sds-cta__email {
	justify-self: center;
	color: rgba(255, 255, 255, .84);
	font-size: 13px;
	font-weight: 750;
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* Footer contact block */
#sds-site .sds-footer {
	padding-top: 76px;
	background: #111a18;
}

#sds-site .sds-footer__grid {
	grid-template-columns: minmax(235px, 1.15fr) minmax(145px, .62fr) minmax(145px, .62fr) minmax(260px, .95fr);
	gap: 54px;
}

#sds-site .sds-footer__brand p {
	font-size: 15px;
	line-height: 1.7;
}

#sds-site .sds-footer__contact {
	display: grid;
	align-content: start;
	gap: 11px;
	padding: 26px;
	border: 1px solid #34413e;
	border-radius: 18px;
	background: #192421;
}

#sds-site .sds-footer__contact > strong {
	margin-bottom: 4px;
	color: #fff;
	font-size: 11px;
	font-weight: 850;
	letter-spacing: .12em;
	text-transform: uppercase;
}

#sds-site .sds-footer__contact-link {
	display: grid;
	gap: 1px;
	padding: 11px 0;
	border-bottom: 1px solid #34413e;
}

#sds-site .sds-footer__contact-link span {
	color: #8f9a97;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
}

#sds-site .sds-footer__contact-link b {
	overflow-wrap: anywhere;
	color: #fff;
	font-size: 16px;
	line-height: 1.35;
}

#sds-site .sds-footer__contact-link:first-of-type b {
	color: #ff8b9a;
	font-size: 20px;
}

#sds-site .sds-footer__quote {
	display: inline-flex;
	min-height: 46px;
	align-items: center;
	justify-content: center;
	margin-top: 5px;
	padding: 0 17px;
	border-radius: 11px;
	background: var(--sds-red);
	color: #fff;
	font-size: 13px;
	font-weight: 800;
}

#sds-site .sds-footer__quote:hover {
	background: var(--sds-red-dark);
}

#sds-site .sds-footer__bottom {
	margin-top: 62px;
}

/* Laptop refinements */
@media (max-width: 1180px) {
	#sds-site .sds-shell {
		width: min(100% - 42px, 1240px);
	}

	#sds-site .sds-nav__email {
		display: none;
	}

	#sds-site .sds-nav__links {
		gap: 18px;
	}

	#sds-site .sds-footer__grid {
		grid-template-columns: 1.1fr .7fr .7fr;
	}

	#sds-site .sds-footer__contact {
		grid-column: 1 / -1;
		grid-template-columns: auto 1fr 1fr auto;
		align-items: center;
	}

	#sds-site .sds-footer__contact > strong {
		margin: 0 10px 0 0;
	}

	#sds-site .sds-footer__contact-link {
		padding: 5px 18px;
		border-right: 1px solid #34413e;
		border-bottom: 0;
	}

	#sds-site .sds-footer__quote {
		margin-top: 0;
	}
}

@media (max-width: 1100px) and (min-width: 901px) {
	#sds-site .sds-nav__phone {
		display: flex;
	}

	#sds-site .sds-nav__links {
		gap: 15px;
	}

	#sds-site .sds-nav__links > a {
		font-size: 13px;
	}

	#sds-site .sds-nav__phone {
		padding-left: 12px;
	}

	#sds-site .sds-nav__phone strong {
		font-size: 13px;
	}

	#sds-site .sds-nav__cta {
		padding: 0 16px;
	}
}

/* Mobile header and layouts */
@media (max-width: 900px) {
	:root {
		--sds-header-height: 72px;
	}

	#sds-site .sds-shell {
		width: min(100% - 32px, 1240px);
	}

	#sds-site .sds-header__inner {
		gap: 10px;
	}

	#sds-site .sds-brand-image {
		max-width: 108px;
		height: 53px;
	}

	#sds-site .sds-header__mobile-call {
		display: flex;
		min-height: 44px;
		flex: 0 1 auto;
		flex-direction: column;
		justify-content: center;
		padding: 5px 11px;
		border: 1px solid #e0e3df;
		border-radius: 10px;
		background: #f5f5f2;
		line-height: 1.1;
	}

	#sds-site .sds-header__mobile-call span {
		color: #7d8885;
		font-size: 8px;
		font-weight: 850;
		letter-spacing: .1em;
		text-transform: uppercase;
	}

	#sds-site .sds-header__mobile-call strong {
		margin-top: 2px;
		color: var(--sds-red);
		font-size: 13px;
		font-weight: 850;
		white-space: nowrap;
	}

	#sds-site .sds-menu-toggle {
		width: 44px;
		height: 44px;
		flex-basis: 44px;
		border: 1px solid #e0e3df;
		background: #fff;
	}

	#sds-site .sds-nav {
		padding: 12px 16px 22px;
	}

	#sds-site .sds-nav__actions {
		display: grid;
		gap: 10px;
	}

	#sds-site .sds-nav__email,
	#sds-site .sds-nav__phone {
		display: flex;
		min-height: 60px;
		padding: 10px 14px;
		border: 1px solid var(--sds-line);
		border-radius: 11px;
		background: #f6f6f3;
	}

	#sds-site .sds-nav__phone {
		margin-bottom: 0;
	}

	#sds-site .sds-nav__email strong,
	#sds-site .sds-nav__phone strong {
		font-size: 16px;
	}

	#sds-site .sds-nav__cta {
		min-height: 54px;
	}

	#sds-site .sds-page-hero,
	#sds-site .sds-page-hero--home {
		min-height: 600px;
	}

	#sds-site .sds-page-hero__inner {
		padding-top: 62px;
		padding-bottom: 54px;
	}

	#sds-site .sds-page-hero h1 {
		font-size: clamp(42px, 11vw, 62px);
	}

	#sds-site .sds-page-hero__text {
		font-size: 17px;
	}

	#sds-site .sds-page-hero__direct {
		margin-top: 21px;
	}

	#sds-site .sds-section {
		padding: 74px 0;
	}

	#sds-site .sds-trust-grid > div,
	#sds-site .sds-trust-grid > div:first-child {
		border-bottom-color: rgba(255, 255, 255, .12);
		border-right-color: rgba(255, 255, 255, .12);
	}

	#sds-site .sds-card {
		padding: 29px;
	}

	#sds-site .sds-split {
		gap: 42px;
	}

	#sds-site .sds-contact-layout,
	#sds-site .sds-quote-grid {
		gap: 44px;
	}

	#sds-site .sds-simple-cta {
		gap: 30px;
		padding: 40px;
	}

	#sds-site .sds-simple-cta__actions {
		align-items: flex-start;
	}

	#sds-site .sds-cta {
		padding: 64px 0;
	}

	#sds-site .sds-cta__inner {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	#sds-site .sds-cta__actions {
		width: min(100%, 480px);
	}

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

	#sds-site .sds-footer__contact {
		grid-column: 1 / -1;
		grid-template-columns: 1fr;
		align-items: stretch;
	}

	#sds-site .sds-footer__contact > strong {
		margin: 0 0 4px;
	}

	#sds-site .sds-footer__contact-link {
		padding: 10px 0;
		border-right: 0;
		border-bottom: 1px solid #34413e;
	}
}

@media (max-width: 620px) {
	#sds-site .sds-shell {
		width: min(100% - 28px, 1240px);
	}

	#sds-site .sds-brand-image {
		max-width: 96px;
		height: 48px;
	}

	#sds-site .sds-header__mobile-call {
		padding-right: 9px;
		padding-left: 9px;
	}

	#sds-site .sds-header__mobile-call strong {
		font-size: 12.5px;
	}

	#sds-site .sds-page-hero,
	#sds-site .sds-page-hero--home {
		min-height: 570px;
	}

	#sds-site .sds-page-hero__overlay {
		background:
			linear-gradient(0deg, rgba(8, 15, 13, .96) 0%, rgba(8, 15, 13, .72) 62%, rgba(8, 15, 13, .28) 100%);
	}

	#sds-site .sds-page-hero__actions {
		gap: 10px;
	}

	#sds-site .sds-page-hero__direct {
		display: grid;
		gap: 4px;
	}

	#sds-site .sds-section {
		padding: 64px 0;
	}

	#sds-site h2 {
		font-size: clamp(32px, 10vw, 43px);
	}

	#sds-site .sds-card {
		min-height: 170px;
		padding: 25px;
		border-radius: 17px;
	}

	#sds-site .sds-choice-card {
		min-height: 310px;
		padding: 30px;
		border-radius: 19px;
	}

	#sds-site .sds-contact-cards > a,
	#sds-site .sds-contact-cards > div {
		min-height: 155px;
		padding: 25px;
	}

	#sds-site .sds-contact-actions,
	#sds-site .sds-simple-cta__actions {
		display: grid;
		width: 100%;
		grid-template-columns: 1fr;
	}

	#sds-site .sds-contact-actions .sds-button,
	#sds-site .sds-simple-cta__actions .sds-button {
		width: 100%;
	}

	#sds-site .sds-simple-cta {
		padding: 30px;
		border-radius: 18px;
	}

	#sds-site .sds-quote-form {
		padding: 24px;
		border-radius: 18px;
	}

	#sds-site .sds-cta {
		padding: 58px 0;
	}

	#sds-site .sds-cta__phone {
		min-height: 82px;
	}

	#sds-site .sds-cta__phone strong {
		font-size: 27px;
	}

	#sds-site .sds-footer__grid {
		grid-template-columns: 1fr;
	}

	#sds-site .sds-footer__contact {
		grid-column: auto;
	}
}

@media (max-width: 370px) {
	#sds-site .sds-brand-image {
		max-width: 88px;
	}

	#sds-site .sds-header__mobile-call span {
		display: none;
	}

	#sds-site .sds-header__mobile-call strong {
		margin-top: 0;
		font-size: 12px;
	}
}

@media (prefers-reduced-motion: reduce) {
	#sds-site *,
	#sds-site *::before,
	#sds-site *::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
	}
}

/* Dog transportation page */
#sds-site .sds-section--dark .sds-clean-list--light li {
	color: #eef2f0;
}

#sds-site .sds-section--dark .sds-clean-list--light li::before {
	background: #ffffff;
}

#sds-site .sds-section--dark .sds-price-note {
	background: #ffffff;
}

#sds-site .sds-section--dark .sds-price-note strong {
	font-size: 19px;
}
