/*
 * Smart Build design system v2 — dramatic redesign pass
 * Scoped to body.smartbuild so it cannot bleed into the rest of the site.
 *
 * Tokens:
 *   --md-blue       #1f7ee3   primary CTA / accent
 *   --md-blue-deep  #1668c2   hover
 *   --md-blue-tint  #e8f1fc   icon backgrounds
 *   --md-teal-deep  #001615   dark hero / final CTA
 *   --md-teal-mid   #0a2a2e   gradient stop
 *   --md-ink        #0f1d1c   headings
 *   --md-text       #3a3a3a   body
 *   --md-text-soft  #6a6a6a   secondary
 *   --md-line       #e6e8eb   borders
 *   --md-bg-soft    #f6f8fa   alternating section bg
 */

body.smartbuild {
	--md-blue: #1f7ee3;
	--md-blue-deep: #1668c2;
	--md-blue-tint: #e8f1fc;
	--md-blue-glow: rgba(31, 126, 227, 0.35);
	--md-teal-deep: #001615;
	--md-teal-mid: #0a2a2e;
	--md-ink: #0f1d1c;
	--md-text: #3a3a3a;
	--md-text-soft: #6a6a6a;
	--md-line: #e6e8eb;
	--md-line-soft: #f0f2f4;
	--md-bg: #ffffff;
	--md-bg-soft: #f6f8fa;
	--md-bg-tint: #f3f7fc;
	--md-shadow-sm: 0 2px 8px rgba(15, 29, 28, 0.05);
	--md-shadow: 0 12px 32px rgba(15, 29, 28, 0.08);
	--md-shadow-lg: 0 24px 64px rgba(15, 29, 28, 0.12);
	--md-shadow-blue: 0 16px 40px rgba(31, 126, 227, 0.25);

	background: var(--md-bg);
	color: var(--md-text);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body.smartbuild .smartbuild-page {
	font-family: 'Inter', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
	font-size: 17px;
	line-height: 1.65;
	color: var(--md-text);
	/* Break out of Astra's centered 1200px content container so the
	   dark hero / final CTA / tinted sections are truly full-bleed
	   and inner content centers against the actual viewport. */
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
}

body.smartbuild .smartbuild-page h1,
body.smartbuild .smartbuild-page h2,
body.smartbuild .smartbuild-page h3,
body.smartbuild .smartbuild-page h4 {
	font-family: 'Merriweather', Georgia, serif;
	font-weight: 400;
	color: var(--md-ink);
	letter-spacing: -0.01em;
	margin: 0;
}

body.smartbuild .smartbuild-page h1 {
	font-size: clamp(2.75rem, 6vw, 5rem);
	line-height: 1.04;
}
body.smartbuild .smartbuild-page h2 {
	font-size: clamp(2.125rem, 4.2vw, 3.25rem);
	line-height: 1.12;
}
body.smartbuild .smartbuild-page h3 {
	font-size: 1.25rem;
	line-height: 1.3;
	font-weight: 700;
	font-family: 'Inter', system-ui, sans-serif;
	letter-spacing: -0.005em;
}

body.smartbuild .smartbuild-page p {
	margin: 0;
	color: var(--md-text-soft);
}

body.smartbuild .sb-accent { color: var(--md-blue); font-style: italic; }

/* ───── Container ───── */

body.smartbuild .sb-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}
@media (min-width: 768px) {
	body.smartbuild .sb-container { padding: 0 2rem; }
}

body.smartbuild .sb-section {
	padding: 6rem 0;
}
@media (min-width: 768px) {
	body.smartbuild .sb-section { padding: 8rem 0; }
}
body.smartbuild .sb-section--tinted { background: var(--md-bg-tint); }
body.smartbuild .sb-section--pad-top-xl { padding-top: 9rem; }
@media (min-width: 768px) {
	body.smartbuild .sb-section--pad-top-xl { padding-top: 12rem; }
}

/* ───── Eyebrow ───── */

body.smartbuild .sb-eyebrow {
	display: inline-block;
	font-family: 'Montserrat', system-ui, sans-serif;
	font-weight: 700;
	font-size: 0.75rem;
	color: var(--md-blue);
	text-transform: uppercase;
	letter-spacing: 0.22em;
	margin-bottom: 1.25rem;
}
body.smartbuild .sb-eyebrow--light { color: rgba(255, 255, 255, 0.85); }

/* ───── Buttons ───── */

body.smartbuild .btn-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	border-radius: 9999px;
	font-family: 'Montserrat', system-ui, sans-serif;
	font-weight: 700;
	font-size: 0.8125rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: all 0.25s ease;
	white-space: nowrap;
	border: 0;
	cursor: pointer;
}
body.smartbuild .btn-pill__arrow {
	display: inline-flex;
	width: 1rem;
	height: 1rem;
	transition: transform 0.25s ease;
}
body.smartbuild .btn-pill__arrow svg { width: 100%; height: 100%; }
body.smartbuild .btn-pill:hover .btn-pill__arrow { transform: translateX(4px); }

body.smartbuild a.btn-pill-primary,
body.smartbuild a.btn-pill-primary:visited,
body.smartbuild button.btn-pill-primary {
	background: var(--md-blue);
	color: #ffffff !important;
	box-shadow: var(--md-shadow-blue);
}
body.smartbuild a.btn-pill-primary:hover,
body.smartbuild button.btn-pill-primary:hover {
	background: var(--md-blue-deep);
	color: #ffffff !important;
	transform: translateY(-2px);
	box-shadow: 0 20px 48px rgba(31, 126, 227, 0.35);
}

body.smartbuild a.btn-pill-ghost,
body.smartbuild a.btn-pill-ghost:visited {
	background: transparent;
	color: var(--md-blue) !important;
	border: 2px solid rgba(31, 126, 227, 0.35);
}
body.smartbuild a.btn-pill-ghost:hover {
	background: var(--md-blue);
	color: #ffffff !important;
	border-color: var(--md-blue);
}
body.smartbuild a.btn-pill-ghost--light,
body.smartbuild a.btn-pill-ghost--light:visited {
	color: #ffffff !important;
	border-color: rgba(255, 255, 255, 0.4);
}
body.smartbuild a.btn-pill-ghost--light:hover {
	background: #ffffff;
	color: var(--md-teal-deep) !important;
	border-color: #ffffff;
}

/* ───────────── HERO ───────────── */

body.smartbuild .sb-hero {
	position: relative;
	background: linear-gradient(135deg, #001615 0%, #0a2a2e 50%, #062528 100%);
	color: #ffffff;
	overflow: hidden;
	padding: 5rem 0 8rem;
}
@media (min-width: 768px) {
	body.smartbuild .sb-hero { padding: 7rem 0 10rem; }
}

body.smartbuild .sb-hero__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
	background-size: 56px 56px;
	-webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 80%);
	mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 80%);
	pointer-events: none;
}

body.smartbuild .sb-hero__plan {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	color: rgba(140, 200, 255, 0.32);
	pointer-events: none;
	-webkit-mask-image: radial-gradient(ellipse 60% 55% at 50% 50%, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.4) 35%, black 70%, black 88%, transparent 100%);
	mask-image: radial-gradient(ellipse 60% 55% at 50% 50%, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.4) 35%, black 70%, black 88%, transparent 100%);
	filter: drop-shadow(0 0 12px rgba(31, 126, 227, 0.25));
}

body.smartbuild .sb-hero__glow {
	position: absolute;
	top: -20%;
	left: 50%;
	transform: translateX(-50%);
	width: 80%;
	height: 80%;
	background: radial-gradient(ellipse at center, rgba(31, 126, 227, 0.18) 0%, transparent 60%);
	pointer-events: none;
}

body.smartbuild .sb-hero__inner {
	position: relative;
	text-align: center;
}

body.smartbuild .sb-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	padding: 0.625rem 1.25rem;
	border-radius: 9999px;
	background: rgba(31, 126, 227, 0.15);
	border: 1px solid rgba(31, 126, 227, 0.35);
	margin-bottom: 2.5rem;
	font-family: 'Montserrat', system-ui, sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 0.18em;
}
body.smartbuild .sb-badge__dot {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 9999px;
	background: var(--md-blue);
	box-shadow: 0 0 12px var(--md-blue-glow);
}

body.smartbuild .smartbuild-page .sb-hero__title {
	color: #ffffff !important;
	max-width: 18ch;
	margin-left: auto;
	margin-right: auto;
}
body.smartbuild .sb-hero__title .sb-accent {
	color: #5fa3eb;
}

body.smartbuild .smartbuild-page .sb-hero__lede {
	margin: 2rem auto 0;
	max-width: 620px;
	font-size: 1.1875rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.78);
}

body.smartbuild .sb-hero__cta {
	margin-top: 2.75rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	justify-content: center;
	align-items: center;
}
@media (min-width: 640px) {
	body.smartbuild .sb-hero__cta { flex-direction: row; }
}

/* Trust strip — overlaps the boundary between hero and the next section */
body.smartbuild .sb-trust-wrap {
	position: relative;
	margin-top: -5rem;
	z-index: 5;
}
@media (min-width: 768px) {
	body.smartbuild .sb-trust-wrap { margin-top: -6rem; }
}
body.smartbuild .sb-section--after-trust { padding-top: 3rem; }
@media (min-width: 768px) {
	body.smartbuild .sb-section--after-trust { padding-top: 5rem; }
}

body.smartbuild .sb-trust-strip {
	background: #ffffff;
	border-radius: 1.25rem;
	box-shadow: var(--md-shadow-lg);
	padding: 2.5rem 2rem;
	display: grid;
	gap: 2rem;
}
@media (min-width: 768px) {
	body.smartbuild .sb-trust-strip {
		grid-template-columns: repeat(3, 1fr);
		gap: 2.5rem;
		padding: 3rem 3rem;
	}
}

body.smartbuild .sb-trust-strip__item {
	display: flex;
	align-items: flex-start;
	gap: 1.25rem;
}
body.smartbuild .sb-trust-strip__item + .sb-trust-strip__item {
	border-top: 1px solid var(--md-line-soft);
	padding-top: 2rem;
}
@media (min-width: 768px) {
	body.smartbuild .sb-trust-strip__item + .sb-trust-strip__item {
		border-top: 0;
		border-left: 1px solid var(--md-line-soft);
		padding-top: 0;
		padding-left: 2.5rem;
	}
}
body.smartbuild .sb-trust-strip__icon {
	flex-shrink: 0;
	width: 3rem;
	height: 3rem;
	border-radius: 0.875rem;
	background: var(--md-blue-tint);
	color: var(--md-blue);
	display: flex;
	align-items: center;
	justify-content: center;
}
body.smartbuild .sb-trust-strip__icon svg { width: 1.5rem; height: 1.5rem; }
body.smartbuild .sb-trust-strip__item h3 { color: var(--md-ink); margin-bottom: 0.375rem; }
body.smartbuild .sb-trust-strip__item p { font-size: 0.9375rem; line-height: 1.55; }

/* ───────────── SECTION HEAD ───────────── */

body.smartbuild .sb-section__head {
	max-width: 720px;
	margin: 0 auto 4rem;
	text-align: center;
}
body.smartbuild .sb-section__head p {
	margin-top: 1.25rem;
	font-size: 1.0625rem;
}

/* ───────────── SERVICES ───────────── */

body.smartbuild .sb-services {
	display: grid;
	gap: 1.5rem;
}
@media (min-width: 640px) { body.smartbuild .sb-services { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { body.smartbuild .sb-services { grid-template-columns: repeat(3, 1fr); } }

body.smartbuild .sb-service {
	position: relative;
	background: #ffffff;
	border-radius: 1.25rem;
	border: 1px solid var(--md-line-soft);
	padding: 2.25rem 2rem;
	box-shadow: var(--md-shadow-sm);
	transition: all 0.25s ease;
	overflow: hidden;
}
body.smartbuild .sb-service::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--md-blue), #5fa3eb);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}
body.smartbuild .sb-service:hover {
	transform: translateY(-4px);
	box-shadow: var(--md-shadow);
	border-color: rgba(31, 126, 227, 0.2);
}
body.smartbuild .sb-service:hover::before { transform: scaleX(1); }

body.smartbuild .sb-service__icon {
	width: 3.25rem;
	height: 3.25rem;
	border-radius: 0.875rem;
	background: var(--md-blue-tint);
	color: var(--md-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	transition: all 0.25s ease;
}
body.smartbuild .sb-service:hover .sb-service__icon {
	background: var(--md-blue);
	color: #ffffff;
}
body.smartbuild .sb-service__icon svg { width: 1.625rem; height: 1.625rem; }
body.smartbuild .sb-service__icon--solid {
	background: var(--md-blue);
	color: #ffffff;
}

body.smartbuild .sb-service h3 { margin-bottom: 0.75rem; color: var(--md-ink); }
body.smartbuild .sb-service p { font-size: 0.9375rem; }

body.smartbuild .sb-service--cta {
	background: linear-gradient(135deg, #001615 0%, #0a2a2e 100%);
	color: #ffffff;
	border-color: transparent;
}
body.smartbuild .sb-service--cta h3 { color: #ffffff; }
body.smartbuild .sb-service--cta p { color: rgba(255, 255, 255, 0.72); }
body.smartbuild .sb-service--cta::before { background: var(--md-blue); }
body.smartbuild .sb-service__link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 1.25rem;
	color: #5fa3eb !important;
	font-family: 'Montserrat', system-ui, sans-serif;
	font-weight: 700;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}
body.smartbuild .sb-service__link svg { width: 1rem; height: 1rem; transition: transform 0.2s ease; }
body.smartbuild .sb-service__link:hover svg { transform: translateX(4px); }

/* ───────────── PROCESS STEPS ───────────── */

body.smartbuild .sb-steps {
	position: relative;
	display: grid;
	gap: 2.5rem;
}
@media (min-width: 768px) {
	body.smartbuild .sb-steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}
body.smartbuild .sb-steps__line {
	display: none;
}
@media (min-width: 768px) {
	body.smartbuild .sb-steps__line {
		display: block;
		position: absolute;
		top: 1.75rem;
		left: 16.66%;
		right: 16.66%;
		height: 2px;
		background: repeating-linear-gradient(90deg, var(--md-blue) 0, var(--md-blue) 6px, transparent 6px, transparent 14px);
		opacity: 0.4;
		z-index: 0;
	}
}

body.smartbuild .sb-step {
	position: relative;
	text-align: center;
	z-index: 1;
}
body.smartbuild .sb-step__number {
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 9999px;
	background: var(--md-blue);
	color: #ffffff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: 'Montserrat', system-ui, sans-serif;
	font-weight: 800;
	font-size: 1rem;
	box-shadow: var(--md-shadow-blue);
	margin-bottom: 1.75rem;
	border: 4px solid var(--md-bg-tint);
}
body.smartbuild .sb-step__card h3 { color: var(--md-ink); margin-bottom: 0.625rem; }
body.smartbuild .sb-step__card p { font-size: 0.9375rem; max-width: 28ch; margin: 0 auto; }

/* ───────────── ANCHOR ───────────── */

body.smartbuild .sb-anchor {
	display: grid;
	gap: 3rem;
	align-items: center;
}
@media (min-width: 900px) {
	body.smartbuild .sb-anchor { grid-template-columns: 1fr 1.2fr; gap: 5rem; }
}
body.smartbuild .sb-anchor__lede h2 {
	font-size: clamp(2.5rem, 5vw, 3.75rem);
	line-height: 1.05;
}
body.smartbuild .sb-anchor__intro {
	font-size: 1.0625rem;
	margin-bottom: 2rem;
}

body.smartbuild .sb-checklist {
	margin: 0 0 2.5rem;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
body.smartbuild .sb-checklist li {
	display: flex;
	align-items: flex-start;
	gap: 0.875rem;
	color: var(--md-ink);
	font-size: 1rem;
	font-weight: 500;
}
body.smartbuild .sb-checklist__check {
	flex-shrink: 0;
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 9999px;
	background: var(--md-blue-tint);
	color: var(--md-blue);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 0.125rem;
}
body.smartbuild .sb-checklist__check svg { width: 0.875rem; height: 0.875rem; }

/* ───────────── FINAL CTA ───────────── */

body.smartbuild .sb-final {
	position: relative;
	background: linear-gradient(135deg, #001615 0%, #0a2a2e 50%, #001615 100%);
	color: #ffffff;
	padding: 7rem 0;
	overflow: hidden;
	text-align: center;
}
@media (min-width: 768px) {
	body.smartbuild .sb-final { padding: 9rem 0; }
}
body.smartbuild .sb-final__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
	background-size: 64px 64px;
	-webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
	mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
	pointer-events: none;
}
body.smartbuild .sb-final__inner { position: relative; }
body.smartbuild .smartbuild-page .sb-final h2 {
	color: #ffffff !important;
	max-width: 18ch;
	margin-left: auto;
	margin-right: auto;
}
body.smartbuild .smartbuild-page .sb-final p {
	margin: 1.5rem auto 0;
	max-width: 540px;
	font-size: 1.0625rem;
	color: rgba(255, 255, 255, 0.78);
}
body.smartbuild .sb-final__cta {
	margin-top: 2.5rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	justify-content: center;
	align-items: center;
}
@media (min-width: 640px) {
	body.smartbuild .sb-final__cta { flex-direction: row; }
}

/* ═══════════════════════════════════════════════════════
 * SUB-PAGE HERO (compact dark hero used by all sub-pages)
 * ═══════════════════════════════════════════════════════ */

body.smartbuild .sb-subhero {
	position: relative;
	background: linear-gradient(135deg, #001615 0%, #0a2a2e 50%, #062528 100%);
	color: #ffffff;
	overflow: hidden;
	padding: 5rem 0 6rem;
	text-align: center;
}
@media (min-width: 768px) {
	body.smartbuild .sb-subhero { padding: 6rem 0 7rem; }
}
body.smartbuild .sb-subhero__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
	background-size: 56px 56px;
	-webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 80%);
	mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 80%);
	pointer-events: none;
}
body.smartbuild .sb-subhero__glow {
	position: absolute;
	top: -20%;
	left: 50%;
	transform: translateX(-50%);
	width: 70%;
	height: 70%;
	background: radial-gradient(ellipse at center, rgba(31, 126, 227, 0.18) 0%, transparent 60%);
	pointer-events: none;
}
body.smartbuild .sb-subhero__inner { position: relative; }
body.smartbuild .smartbuild-page .sb-subhero__title {
	color: #ffffff !important;
	font-size: clamp(2.25rem, 4.5vw, 3.5rem);
	line-height: 1.1;
	max-width: 22ch;
	margin-left: auto;
	margin-right: auto;
}
body.smartbuild .smartbuild-page .sb-subhero__lede {
	margin: 1.5rem auto 0;
	max-width: 640px;
	font-size: 1.0625rem;
	color: rgba(255, 255, 255, 0.78);
}

/* ═══════════════════════════════════════════════════════
 * HOW IT WORKS — phases
 * ═══════════════════════════════════════════════════════ */

body.smartbuild .sb-phases {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	max-width: 880px;
	margin: 0 auto;
}
body.smartbuild .sb-phase {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 2rem;
	padding: 2rem;
	background: #ffffff;
	border-radius: 1.25rem;
	border: 1px solid var(--md-line-soft);
	box-shadow: var(--md-shadow-sm);
	transition: all 0.25s ease;
}
body.smartbuild .sb-phase:hover {
	box-shadow: var(--md-shadow);
	border-color: rgba(31, 126, 227, 0.2);
	transform: translateY(-2px);
}
@media (max-width: 640px) {
	body.smartbuild .sb-phase { grid-template-columns: 1fr; gap: 1rem; padding: 1.5rem; }
}
body.smartbuild .sb-phase__number {
	font-family: 'Merriweather', Georgia, serif;
	font-size: 2.75rem;
	color: var(--md-blue);
	line-height: 1;
	font-weight: 400;
}
body.smartbuild .sb-phase__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.75rem 1rem;
	margin-bottom: 0.75rem;
}
body.smartbuild .sb-phase__meta h3 {
	font-size: 1.375rem;
	color: var(--md-ink);
	margin: 0;
}
body.smartbuild .sb-phase__time {
	font-family: 'Montserrat', system-ui, sans-serif;
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--md-blue);
	background: var(--md-blue-tint);
	padding: 0.375rem 0.75rem;
	border-radius: 9999px;
}
body.smartbuild .sb-phase p {
	font-size: 0.9375rem;
	margin-bottom: 1.25rem;
}
body.smartbuild .sb-phase__deliver {
	font-size: 0.875rem;
	color: var(--md-ink);
	padding-top: 1rem;
	border-top: 1px dashed var(--md-line);
}
body.smartbuild .sb-phase__deliver-label {
	display: block;
	font-family: 'Montserrat', system-ui, sans-serif;
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--md-text-soft);
	margin-bottom: 0.25rem;
}

/* Quick FAQ on How It Works */
body.smartbuild .sb-quickfaq {
	display: grid;
	gap: 1.5rem;
	max-width: 880px;
	margin: 0 auto;
}
@media (min-width: 768px) {
	body.smartbuild .sb-quickfaq { grid-template-columns: repeat(3, 1fr); }
}
body.smartbuild .sb-quickfaq__item {
	background: #ffffff;
	border-radius: 1rem;
	padding: 1.75rem;
	border: 1px solid var(--md-line-soft);
}
body.smartbuild .sb-quickfaq__item h3 {
	font-size: 1.0625rem;
	margin-bottom: 0.625rem;
	color: var(--md-ink);
}
body.smartbuild .sb-quickfaq__item p {
	font-size: 0.9375rem;
}
body.smartbuild .sb-quickfaq__more {
	text-align: center;
	margin-top: 3rem;
}

/* ═══════════════════════════════════════════════════════
 * PACKAGES
 * ═══════════════════════════════════════════════════════ */

body.smartbuild .sb-packages {
	display: grid;
	gap: 2rem;
}
@media (min-width: 900px) {
	body.smartbuild .sb-packages { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
}

body.smartbuild .sb-package {
	position: relative;
	background: #ffffff;
	border-radius: 1.25rem;
	border: 1px solid var(--md-line-soft);
	padding: 2.5rem 2rem;
	box-shadow: var(--md-shadow-sm);
	display: flex;
	flex-direction: column;
	transition: all 0.25s ease;
}
body.smartbuild .sb-package:hover {
	transform: translateY(-4px);
	box-shadow: var(--md-shadow);
}
body.smartbuild .sb-package--featured {
	background: linear-gradient(180deg, #001615 0%, #0a2a2e 100%);
	color: #ffffff;
	border: 0;
	box-shadow: var(--md-shadow-lg);
	transform: scale(1.02);
}
@media (min-width: 900px) {
	body.smartbuild .sb-package--featured { transform: scale(1.05); }
	body.smartbuild .sb-package--featured:hover { transform: scale(1.05) translateY(-4px); }
}
body.smartbuild .sb-package__ribbon {
	position: absolute;
	top: -0.75rem;
	left: 50%;
	transform: translateX(-50%);
	background: var(--md-blue);
	color: #ffffff;
	font-family: 'Montserrat', system-ui, sans-serif;
	font-size: 0.6875rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 0.5rem 1rem;
	border-radius: 9999px;
	box-shadow: var(--md-shadow-blue);
}
body.smartbuild .sb-package__tag {
	font-family: 'Montserrat', system-ui, sans-serif;
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--md-blue);
	margin-bottom: 0.75rem;
}
body.smartbuild .sb-package__name {
	font-family: 'Merriweather', Georgia, serif;
	font-weight: 400;
	font-size: 2rem;
	color: var(--md-ink);
	margin-bottom: 0.5rem;
}
body.smartbuild .sb-package--featured .sb-package__name { color: #ffffff; }
body.smartbuild .sb-package__price {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--md-blue);
	margin-bottom: 1rem;
}
body.smartbuild .sb-package--featured .sb-package__price { color: #5fa3eb; }
body.smartbuild .sb-package__desc {
	font-size: 0.9375rem;
	margin-bottom: 1.75rem;
}
body.smartbuild .sb-package--featured .sb-package__desc { color: rgba(255, 255, 255, 0.78); }
body.smartbuild .sb-package__list {
	list-style: none;
	margin: 0 0 2rem;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	flex-grow: 1;
}
body.smartbuild .sb-package__list li {
	display: flex;
	align-items: flex-start;
	gap: 0.625rem;
	font-size: 0.9375rem;
	color: var(--md-text);
}
body.smartbuild .sb-package--featured .sb-package__list li { color: rgba(255, 255, 255, 0.85); }
body.smartbuild .sb-package__list li::before {
	content: '';
	flex-shrink: 0;
	margin-top: 0.5rem;
	width: 0.375rem;
	height: 0.375rem;
	border-radius: 9999px;
	background: var(--md-blue);
}
body.smartbuild .sb-package--featured .sb-package__list li::before { background: #5fa3eb; }
body.smartbuild .sb-package__foot {
	margin-top: auto;
	padding-top: 1.5rem;
	border-top: 1px solid var(--md-line-soft);
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: flex-start;
}
body.smartbuild .sb-package--featured .sb-package__foot { border-top-color: rgba(255, 255, 255, 0.15); }
body.smartbuild .sb-package__tier {
	font-size: 0.8125rem;
	color: var(--md-text-soft);
}
body.smartbuild .sb-package--featured .sb-package__tier { color: rgba(255, 255, 255, 0.6); }

body.smartbuild .sb-included {
	max-width: 720px;
	margin: 0 auto;
	display: grid;
	gap: 1rem;
	list-style: none;
	padding: 0;
}
@media (min-width: 600px) {
	body.smartbuild .sb-included { grid-template-columns: repeat(2, 1fr); }
}
body.smartbuild .sb-included li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 0.9375rem;
	color: var(--md-ink);
}
body.smartbuild .sb-included li::before {
	content: '✓';
	flex-shrink: 0;
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 9999px;
	background: var(--md-blue-tint);
	color: var(--md-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.875rem;
	font-weight: 700;
}

/* ═══════════════════════════════════════════════════════
 * PORTFOLIO
 * ═══════════════════════════════════════════════════════ */

body.smartbuild .sb-portfolio {
	display: grid;
	gap: 1.5rem;
}
@media (min-width: 640px) { body.smartbuild .sb-portfolio { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { body.smartbuild .sb-portfolio { grid-template-columns: repeat(3, 1fr); } }

body.smartbuild .sb-portfolio__card {
	background: #ffffff;
	border-radius: 1.25rem;
	border: 1px solid var(--md-line-soft);
	overflow: hidden;
	box-shadow: var(--md-shadow-sm);
	transition: all 0.25s ease;
}
body.smartbuild .sb-portfolio__card:hover {
	transform: translateY(-4px);
	box-shadow: var(--md-shadow);
	border-color: rgba(31, 126, 227, 0.2);
}
body.smartbuild .sb-portfolio__art {
	height: 160px;
	background: linear-gradient(135deg, #001615, #0a2a2e);
	position: relative;
	overflow: hidden;
}
body.smartbuild .sb-portfolio__art-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(31, 126, 227, 0.18) 1px, transparent 1px),
		linear-gradient(90deg, rgba(31, 126, 227, 0.18) 1px, transparent 1px);
	background-size: 32px 32px;
	-webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
	mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
body.smartbuild .sb-portfolio__body { padding: 1.75rem; }
body.smartbuild .sb-portfolio__count {
	font-family: 'Montserrat', system-ui, sans-serif;
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--md-blue);
	margin-bottom: 0.5rem;
}
body.smartbuild .sb-portfolio__body h3 {
	color: var(--md-ink);
	margin-bottom: 0.625rem;
}
body.smartbuild .sb-portfolio__body p {
	font-size: 0.9375rem;
}
body.smartbuild .sb-portfolio__notice {
	margin-top: 4rem;
	padding: 2.5rem;
	background: var(--md-blue-tint);
	border-radius: 1.25rem;
	text-align: center;
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
}
body.smartbuild .sb-portfolio__notice p {
	color: var(--md-ink);
	margin-bottom: 1.5rem;
	font-size: 1rem;
}

/* ═══════════════════════════════════════════════════════
 * FAQ
 * ═══════════════════════════════════════════════════════ */

body.smartbuild .sb-faq-group { max-width: 880px; margin: 0 auto 4rem; }
body.smartbuild .sb-faq-group:last-child { margin-bottom: 0; }
body.smartbuild .sb-faq-group__title {
	font-family: 'Merriweather', Georgia, serif;
	font-size: 1.625rem;
	color: var(--md-ink);
	margin-bottom: 1.5rem;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid var(--md-blue);
}
body.smartbuild .sb-faq-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}
body.smartbuild .sb-faq-item {
	background: #ffffff;
	border: 1px solid var(--md-line-soft);
	border-radius: 0.75rem;
	overflow: hidden;
	transition: all 0.2s ease;
}
body.smartbuild .sb-faq-item[open] {
	border-color: rgba(31, 126, 227, 0.3);
	box-shadow: var(--md-shadow-sm);
}
body.smartbuild .sb-faq-item summary {
	padding: 1.25rem 1.5rem;
	cursor: pointer;
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 1rem;
	font-weight: 600;
	color: var(--md-ink);
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}
body.smartbuild .sb-faq-item summary::-webkit-details-marker { display: none; }
body.smartbuild .sb-faq-item summary::after {
	content: '+';
	flex-shrink: 0;
	width: 1.75rem;
	height: 1.75rem;
	border-radius: 9999px;
	background: var(--md-blue-tint);
	color: var(--md-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	font-weight: 400;
	transition: transform 0.2s ease;
}
body.smartbuild .sb-faq-item[open] summary::after {
	content: '−';
	background: var(--md-blue);
	color: #ffffff;
}
body.smartbuild .sb-faq-item p {
	padding: 0 1.5rem 1.5rem;
	font-size: 0.9375rem;
	color: var(--md-text);
	line-height: 1.65;
	margin: 0;
}

/* ═══════════════════════════════════════════════════════
 * GET STARTED FORM v2 — sectioned cards on tinted background
 * ═══════════════════════════════════════════════════════ */

body.smartbuild .sb-form-wrap { max-width: 820px; margin: 0 auto; }
body.smartbuild .sb-form { display: flex; flex-direction: column; gap: 1.5rem; }

body.smartbuild .sb-form__error {
	background: #fff5f5;
	border: 1px solid #fcc;
	border-radius: 0.75rem;
	padding: 1rem 1.25rem;
	margin-bottom: 1rem;
	color: #842;
	font-size: 0.9375rem;
}
body.smartbuild .sb-form__hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }

/* ── Card ───────────── */

body.smartbuild .sb-card {
	background: #ffffff;
	border-radius: 1.25rem;
	border: 1px solid var(--md-line-soft);
	box-shadow: var(--md-shadow);
	overflow: hidden;
	transition: box-shadow 0.25s ease;
}
body.smartbuild .sb-card:focus-within {
	box-shadow: 0 24px 64px rgba(31, 126, 227, 0.12);
	border-color: rgba(31, 126, 227, 0.25);
}

body.smartbuild .sb-card__head {
	display: grid;
	grid-template-columns: auto auto 1fr;
	align-items: center;
	gap: 1rem;
	padding: 1.5rem 1.75rem;
	background: linear-gradient(180deg, var(--md-bg-tint) 0%, #ffffff 100%);
	border-bottom: 1px solid var(--md-line-soft);
}
@media (min-width: 768px) {
	body.smartbuild .sb-card__head { padding: 1.75rem 2.25rem; gap: 1.25rem; }
}
body.smartbuild .sb-card__num {
	font-family: 'Merriweather', Georgia, serif;
	font-size: 1.75rem;
	font-weight: 400;
	color: var(--md-blue);
	line-height: 1;
}
body.smartbuild .sb-card__icon {
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 0.75rem;
	background: var(--md-blue-tint);
	color: var(--md-blue);
	display: flex;
	align-items: center;
	justify-content: center;
}
body.smartbuild .sb-card__icon svg { width: 1.375rem; height: 1.375rem; }
body.smartbuild .sb-card__title-wrap { min-width: 0; }
body.smartbuild .smartbuild-page .sb-card__title {
	font-family: 'Merriweather', Georgia, serif;
	font-size: 1.25rem;
	color: var(--md-ink);
	margin: 0 0 0.125rem;
	line-height: 1.2;
	font-weight: 400;
}
body.smartbuild .sb-card__sub {
	font-size: 0.8125rem;
	color: var(--md-text-soft);
	margin: 0;
}

body.smartbuild .sb-card__body {
	padding: 1.75rem;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}
@media (min-width: 768px) {
	body.smartbuild .sb-card__body { padding: 2rem 2.25rem; gap: 1.5rem; }
}

/* ── Field rows ───────────── */

body.smartbuild .sb-row {
	display: grid;
	gap: 1.25rem;
}
@media (min-width: 600px) {
	body.smartbuild .sb-row--2 { grid-template-columns: 1fr 1fr; }
	body.smartbuild .sb-row--3 { grid-template-columns: 2fr 1fr 1fr; }
}

body.smartbuild .sb-field {
	display: flex;
	flex-direction: column;
	gap: 0.4375rem;
}
body.smartbuild .sb-field--full { width: 100%; }
body.smartbuild .sb-field__label {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--md-ink);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	display: inline-flex;
	align-items: center;
	gap: 0.4375rem;
}
body.smartbuild .sb-req {
	display: inline-block;
	width: 0.4375rem;
	height: 0.4375rem;
	border-radius: 9999px;
	background: var(--md-blue);
}

body.smartbuild .sb-form input[type="text"],
body.smartbuild .sb-form input[type="email"],
body.smartbuild .sb-form input[type="tel"],
body.smartbuild .sb-form select,
body.smartbuild .sb-form textarea {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 0.9375rem;
	padding: 0.75rem 0.9375rem;
	border: 1px solid var(--md-line);
	border-radius: 0.625rem;
	background: #f9fafb;
	color: var(--md-ink);
	transition: all 0.2s ease;
	width: 100%;
	-webkit-appearance: none;
	appearance: none;
}
body.smartbuild .sb-form input::placeholder,
body.smartbuild .sb-form textarea::placeholder {
	color: #9ca3af;
}
body.smartbuild .sb-form input:hover,
body.smartbuild .sb-form select:hover,
body.smartbuild .sb-form textarea:hover {
	border-color: #c7d2db;
	background: #ffffff;
}
body.smartbuild .sb-form input:focus,
body.smartbuild .sb-form select:focus,
body.smartbuild .sb-form textarea:focus {
	outline: none;
	border-color: var(--md-blue);
	background: #ffffff;
	box-shadow: 0 0 0 4px rgba(31, 126, 227, 0.12);
}
body.smartbuild .sb-form select {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231f7ee3' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	padding-right: 2.5rem;
}
body.smartbuild .sb-form textarea { resize: vertical; min-height: 120px; }

/* ── Chips (interest checkboxes) ───────────── */

body.smartbuild .sb-chips {
	display: grid;
	gap: 0.75rem;
}
@media (min-width: 600px) { body.smartbuild .sb-chips { grid-template-columns: 1fr 1fr; } }

body.smartbuild .sb-chip { display: block; cursor: pointer; }
body.smartbuild .sb-chip input { position: absolute; opacity: 0; pointer-events: none; }
body.smartbuild .sb-chip__inner {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 0.875rem;
	padding: 0.875rem 1rem;
	border: 1.5px solid var(--md-line);
	border-radius: 0.75rem;
	background: #f9fafb;
	transition: all 0.2s ease;
}
body.smartbuild .sb-chip:hover .sb-chip__inner {
	border-color: rgba(31, 126, 227, 0.45);
	background: #ffffff;
	transform: translateY(-1px);
}
body.smartbuild .sb-chip__check {
	width: 1.25rem;
	height: 1.25rem;
	border-radius: 0.4375rem;
	border: 1.5px solid var(--md-line);
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	color: transparent;
	transition: all 0.15s ease;
	flex-shrink: 0;
}
body.smartbuild .sb-chip__check svg { width: 0.875rem; height: 0.875rem; }
body.smartbuild .sb-chip input:checked + .sb-chip__inner {
	border-color: var(--md-blue);
	background: var(--md-blue-tint);
	box-shadow: 0 0 0 3px rgba(31, 126, 227, 0.08);
}
body.smartbuild .sb-chip input:checked + .sb-chip__inner .sb-chip__check {
	border-color: var(--md-blue);
	background: var(--md-blue);
	color: #ffffff;
}
body.smartbuild .sb-chip input:focus-visible + .sb-chip__inner {
	box-shadow: 0 0 0 3px rgba(31, 126, 227, 0.25);
}
body.smartbuild .sb-chip__text { display: flex; flex-direction: column; gap: 0.125rem; min-width: 0; }
body.smartbuild .sb-chip__text strong {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--md-ink);
	line-height: 1.2;
}
body.smartbuild .sb-chip__text small {
	font-size: 0.75rem;
	color: var(--md-text-soft);
	line-height: 1.3;
}

/* ── Dropzone ───────────── */

body.smartbuild .sb-dropzone {
	position: relative;
	border: 2px dashed #cdd5dd;
	border-radius: 0.875rem;
	background: #f9fafb;
	transition: all 0.2s ease;
}
body.smartbuild .sb-dropzone:hover,
body.smartbuild .sb-dropzone.is-drag {
	border-color: var(--md-blue);
	background: var(--md-blue-tint);
}
body.smartbuild .sb-dropzone.is-filled {
	border-color: var(--md-blue);
	border-style: solid;
	background: var(--md-blue-tint);
}
body.smartbuild .sb-dropzone input[type="file"] {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
	z-index: 2;
}
body.smartbuild .sb-dropzone__label {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 2rem 1.5rem;
	text-align: center;
	cursor: pointer;
}
body.smartbuild .sb-dropzone__icon {
	width: 3rem;
	height: 3rem;
	border-radius: 9999px;
	background: #ffffff;
	color: var(--md-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.25rem;
	box-shadow: var(--md-shadow-sm);
}
body.smartbuild .sb-dropzone__icon svg { width: 1.375rem; height: 1.375rem; }
body.smartbuild .sb-dropzone__primary {
	font-size: 0.9375rem;
	color: var(--md-ink);
}
body.smartbuild .sb-dropzone__primary strong { color: var(--md-blue); }
body.smartbuild .sb-dropzone__meta {
	font-size: 0.8125rem;
	color: var(--md-text-soft);
}
body.smartbuild .sb-dropzone__meta strong { color: var(--md-blue); }

/* ── Submit + trust ───────────── */

body.smartbuild .sb-submit {
	background: #ffffff;
	border-radius: 1.25rem;
	border: 1px solid var(--md-line-soft);
	box-shadow: var(--md-shadow);
	padding: 2rem 1.75rem;
	text-align: center;
}
@media (min-width: 768px) {
	body.smartbuild .sb-submit { padding: 2.5rem 2.25rem; }
}

body.smartbuild .sb-submit__btn {
	font-size: 0.875rem;
	padding: 1.125rem 2.5rem;
	width: 100%;
	max-width: 380px;
}
@media (min-width: 768px) {
	body.smartbuild .sb-submit__btn { width: auto; }
}

body.smartbuild .sb-trust {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem 1.75rem;
	margin-top: 1.75rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--md-line-soft);
}
body.smartbuild .sb-trust__item {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.8125rem;
	color: var(--md-text);
	font-weight: 500;
}
body.smartbuild .sb-trust__icon {
	width: 1.125rem;
	height: 1.125rem;
	color: var(--md-blue);
	display: inline-flex;
}
body.smartbuild .sb-trust__icon svg { width: 100%; height: 100%; }

/* Defensive override: keep header search icon (and any header nav anchors) un-underlined on Smart Build pages */
body.smartbuild .ast-builder-menu-1 .astra-search-icon,
body.smartbuild .ast-builder-menu-1 .astra-search-icon:hover,
body.smartbuild #ast-hf-menu-1 a.astra-search-icon,
body.smartbuild .ast-search-menu-icon a,
body.smartbuild header a {
	text-decoration: none !important;
	border-bottom: 0 !important;
}

body.smartbuild .sb-form__legal {
	margin-top: 1.25rem;
	font-size: 0.75rem;
	color: var(--md-text-soft);
	max-width: 480px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.5;
	text-align: center !important;
	display: block;
}

/* ═══════════════════════════════════════════════════════
 * THANK YOU
 * ═══════════════════════════════════════════════════════ */

body.smartbuild .sb-thanks { max-width: 720px; margin: 0 auto; }
body.smartbuild .sb-thanks h2 {
	font-size: 1.75rem;
	margin-bottom: 1.75rem;
	text-align: center;
}
body.smartbuild .sb-thanks__steps {
	margin: 0 0 3rem;
	padding: 0 0 0 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}
body.smartbuild .sb-thanks__steps li {
	font-size: 1rem;
	color: var(--md-text);
	line-height: 1.6;
}
body.smartbuild .sb-thanks__steps li::marker { color: var(--md-blue); font-weight: 700; }
body.smartbuild .sb-thanks__contact {
	background: var(--md-blue-tint);
	border-radius: 1.25rem;
	padding: 2.5rem 2rem;
	text-align: center;
}
body.smartbuild .sb-thanks__contact p {
	color: var(--md-ink);
	font-size: 1rem;
	margin-bottom: 1.5rem;
}
body.smartbuild .sb-thanks__contact .btn-pill + .btn-pill { margin-left: 0.75rem; }

/* ───────────── HIDE GLOBAL HCP LEAD HOOK ─────────────
 * Smart Build pages have their own CTA flow; the Astra advanced hook
 * (id 2189) injects an HCP lead iframe above the footer that conflicts
 * visually with the dark Smart Build CTA. Hide it only here.
 */
body.smartbuild .astra-advanced-hook-2189 { display: none !important; }

/* ───────────── FORM (Get Started page) ───────────── */

body.smartbuild .smartbuild-form-wrapper {
	max-width: 760px;
	margin: 0 auto;
}
body.smartbuild .smartbuild-form-wrapper .srfm-form-container input[type="text"],
body.smartbuild .smartbuild-form-wrapper .srfm-form-container input[type="email"],
body.smartbuild .smartbuild-form-wrapper .srfm-form-container input[type="tel"],
body.smartbuild .smartbuild-form-wrapper .srfm-form-container input[type="number"],
body.smartbuild .smartbuild-form-wrapper .srfm-form-container select,
body.smartbuild .smartbuild-form-wrapper .srfm-form-container textarea {
	border-radius: 6px;
	border: 1px solid var(--md-line);
	padding: 0.875rem 1rem;
}
body.smartbuild .smartbuild-form-wrapper .srfm-form-container button[type="submit"] {
	background: var(--md-blue);
	border-radius: 9999px;
	padding: 1rem 2rem;
	font-family: 'Montserrat', system-ui, sans-serif;
	font-weight: 700;
	font-size: 0.8125rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	box-shadow: var(--md-shadow-blue);
}
body.smartbuild .smartbuild-form-wrapper .srfm-form-container button[type="submit"]:hover {
	background: var(--md-blue-deep);
}
