/**
 * Getmd Elementor Kit — widget styles.
 * Self-contained (no Tailwind dependency). Token values mirror
 * getmd-blog v1.9.5 style.css / marketing.css.
 */

.gmd-codecmp {
	--gmd-bg: #0A0F1B;
	--gmd-card: #0F1729;
	--gmd-muted: #1F253D;
	--gmd-muted-60: rgba(31, 37, 61, 0.6);
	--gmd-border: #2B3455;
	--gmd-fg: #F8FAFC;
	--gmd-muted-fg: #A3B0C2;
	--gmd-orange: #F4781F;
	--gmd-red: #ED1D38;
	--gmd-green: #22C55E;
	--gmd-shadow-brand: 0 4px 24px -4px rgba(244, 120, 31, 0.35);
}

.gmd-codecmp__panes {
	position: relative;
	display: flex;
	flex-direction: column;
	border: 1px solid var(--gmd-border);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.25), 0 4px 6px -4px rgba(0, 0, 0, 0.25);
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
	font-size: 12px;
	line-height: 1.625;
	text-align: left;
}

@media (min-width: 640px) {
	.gmd-codecmp__panes {
		flex-direction: row;
	}
}

.gmd-codecmp__pane {
	flex: 1;
	min-width: 0;
}

.gmd-codecmp__pane--before {
	background: var(--gmd-muted-60);
}

.gmd-codecmp__pane--after {
	background: var(--gmd-bg);
}

.gmd-codecmp__titlebar {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	border-bottom: 1px solid var(--gmd-border);
	background: var(--gmd-muted);
}

.gmd-codecmp__dot {
	height: 10px;
	width: 10px;
	border-radius: 9999px;
	flex-shrink: 0;
}

.gmd-codecmp__dot--red { background: rgba(237, 29, 56, 0.7); }
.gmd-codecmp__dot--orange { background: rgba(244, 120, 31, 0.7); }
.gmd-codecmp__dot--green { background: rgba(34, 197, 94, 0.7); }

.gmd-codecmp__label {
	margin-left: 8px;
	font-size: 10px;
	color: var(--gmd-muted-fg);
}

.gmd-codecmp__label--accent {
	color: var(--gmd-orange);
	font-weight: 600;
}

.gmd-codecmp__code {
	margin: 0;
	padding: 16px;
	overflow: hidden;
	max-height: 256px;
	color: var(--gmd-muted-fg);
	background: transparent;
}

.gmd-codecmp__code code {
	font-family: inherit;
	font-size: inherit;
	color: inherit;
	background: transparent;
	padding: 0;
	white-space: pre;
}

.gmd-codecmp__pane--after .gmd-codecmp__code code {
	color: rgba(244, 120, 31, 0.9);
}

.gmd-codecmp__divider {
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	background: var(--gmd-bg);
	border-top: 1px solid var(--gmd-border);
	border-bottom: 1px solid var(--gmd-border);
	padding: 8px 12px;
}

@media (min-width: 640px) {
	.gmd-codecmp__divider {
		border-top: 0;
		border-bottom: 0;
		border-left: 1px solid var(--gmd-border);
		border-right: 1px solid var(--gmd-border);
		padding: 0 12px;
	}
}

.gmd-codecmp__arrow {
	display: flex;
	height: 32px;
	width: 32px;
	align-items: center;
	justify-content: center;
	border-radius: 9999px;
	background: var(--gmd-orange);
	color: #FFFFFF;
	box-shadow: var(--gmd-shadow-brand);
	flex-shrink: 0;
}

.gmd-codecmp__caption {
	margin-top: 16px;
	font-size: 14px;
	color: var(--gmd-muted-fg);
	text-align: center;
}

/* ===================================================================
   Shared tokens + utilities (all Getmd widgets)
   =================================================================== */

.gmd-plans, .gmd-showcase, .gmd-meetings {
	--gmd-bg: #0A0F1B;
	--gmd-card: #0F1729;
	--gmd-muted: #1F253D;
	--gmd-border: #2B3455;
	--gmd-fg: #F8FAFC;
	--gmd-muted-fg: #A3B0C2;
	--gmd-orange: #F4781F;
	--gmd-magenta: #B31E84;
	--gmd-shadow-brand: 0 4px 24px -4px rgba(244, 120, 31, 0.35);
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.gmd-hidden { display: none !important; }

.gmd-i { flex-shrink: 0; }
.gmd-i--xs { height: 12px; width: 12px; }
.gmd-i--sm { height: 16px; width: 16px; }
.gmd-i--md { height: 20px; width: 20px; }
.gmd-i--lg { height: 24px; width: 24px; }
.gmd-i--fill { fill: currentColor; }
.gmd-i--check { height: 16px; width: 16px; color: var(--gmd-orange, #F4781F); margin-top: 2px; }

/* Utility classes for native Elementor widgets (add via Advanced → CSS Classes
   or spans inside headings) */
.gmd-gradient-text {
	background: linear-gradient(90deg, #F4781F, #B31E84);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.gmd-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border-radius: 9999px;
	background: rgba(179, 30, 132, 0.1);
	padding: 6px 16px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #B31E84;
}

.gmd-eyebrow::before {
	content: '';
	height: 6px;
	width: 6px;
	border-radius: 9999px;
	background: #B31E84;
}

/* ===================================================================
   Pricing Cards (getmd-pricing-cards)
   =================================================================== */

.gmd-plans {
	display: grid;
	gap: 24px;
	align-items: stretch;
}

@media (min-width: 768px) {
	.gmd-plans { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.gmd-plan {
	position: relative;
	display: flex;
	flex-direction: column;
	border-radius: 12px;
	border: 1px solid var(--gmd-border);
	background: var(--gmd-card);
	padding: 28px;
	transition: box-shadow 200ms;
}

.gmd-plan:hover { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3); }

.gmd-plan--featured {
	border-color: var(--gmd-orange);
	background: rgba(244, 120, 31, 0.05);
	box-shadow: var(--gmd-shadow-brand), 0 0 0 1px rgba(244, 120, 31, 0.3);
}

.gmd-plan__badge-wrap {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
}

.gmd-plan__badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	border-radius: 9999px;
	background: var(--gmd-magenta);
	padding: 4px 12px;
	font-size: 12px;
	font-weight: 600;
	color: #FFFFFF;
	white-space: nowrap;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.gmd-plan__head { margin-bottom: 24px; }

.gmd-plan__name {
	font-size: 20px;
	font-weight: 700;
	color: var(--gmd-fg);
	margin: 0 0 4px;
	line-height: 1.3;
}

.gmd-plan__tagline {
	font-size: 14px;
	color: var(--gmd-muted-fg);
	line-height: 1.4;
	min-height: 2.5rem;
	margin: 0;
}

.gmd-plans a.gmd-plan__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	border-radius: 6px;
	border: 1px solid var(--gmd-border);
	background: var(--gmd-bg);
	padding: 10px 16px;
	font-size: 14px;
	font-weight: 600;
	color: var(--gmd-fg);
	text-decoration: none;
	margin-bottom: 24px;
	transition: background-color 150ms;
}

.gmd-plans a.gmd-plan__cta:hover { background: var(--gmd-muted); color: var(--gmd-fg); }

.gmd-plans a.gmd-plan__cta--primary {
	border-color: transparent;
	background: var(--gmd-orange);
	color: #FFFFFF;
}

.gmd-plans a.gmd-plan__cta--primary:hover { background: #DC6C1C; color: #FFFFFF; }

.gmd-plan__lines {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}

.gmd-plan__lines li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	color: var(--gmd-fg);
}

/* ===================================================================
   Showcase Accordion (getmd-showcase-accordion)
   =================================================================== */

.gmd-showcase {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.gmd-showcase__item {
	border-radius: 12px;
	border: 1px solid var(--gmd-border);
	background: var(--gmd-card);
	overflow: hidden;
}

.gmd-showcase button.gmd-showcase__trigger {
	display: flex;
	align-items: center;
	gap: 16px;
	width: 100%;
	text-align: left;
	padding: 20px 24px;
	background: transparent;
	background-color: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	color: inherit;
	font-size: inherit;
	line-height: inherit;
	cursor: pointer;
	transition: background-color 150ms;
	font-family: inherit;
}

.gmd-showcase button.gmd-showcase__trigger:hover,
.gmd-showcase button.gmd-showcase__trigger:focus {
	background: rgba(31, 37, 61, 0.3);
	background-color: rgba(31, 37, 61, 0.3);
	color: inherit;
}

.gmd-showcase__icon {
	display: inline-flex;
	flex-shrink: 0;
	border-radius: 8px;
	background: rgba(244, 120, 31, 0.1);
	padding: 10px;
	color: var(--gmd-orange);
}

.gmd-showcase__text { flex: 1; min-width: 0; }

.gmd-showcase__title {
	display: block;
	font-size: 17px;
	font-weight: 600;
	color: var(--gmd-fg);
	line-height: 1.4;
}

.gmd-showcase__summary {
	display: block;
	font-size: 14px;
	color: var(--gmd-muted-fg);
	margin-top: 4px;
	line-height: 1.6;
}

.gmd-showcase__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 32px;
	width: 32px;
	flex-shrink: 0;
	border-radius: 9999px;
	border: 1px solid var(--gmd-border);
	color: var(--gmd-muted-fg);
}

.gmd-showcase__content { padding: 0 24px 24px; }

.gmd-showcase__content-inner { padding-left: 0; }

@media (min-width: 640px) {
	.gmd-showcase__content-inner { padding-left: 56px; }
}

.gmd-showcase__bullets {
	list-style: none;
	margin: 0;
	padding: 16px 0 0;
	border-top: 1px solid var(--gmd-border);
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.gmd-showcase__bullets li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	color: var(--gmd-fg);
	line-height: 1.6;
}

/* ===================================================================
   HubSpot Meetings / thank-you card (getmd-hubspot-meetings)
   =================================================================== */

.gmd-meetings--waiting { display: none; }

.gmd-meetings__card {
	text-align: center;
	border-radius: 12px;
	border: 1px solid rgba(244, 120, 31, 0.3);
	background: rgba(244, 120, 31, 0.05);
	padding: 48px 32px;
}

.gmd-meetings__check {
	display: inline-flex;
	border-radius: 9999px;
	background: rgba(244, 120, 31, 0.1);
	padding: 12px;
	color: var(--gmd-orange);
	margin-bottom: 20px;
}

.gmd-meetings__title {
	font-size: 28px;
	font-weight: 700;
	color: var(--gmd-fg);
	margin: 0 0 12px;
	line-height: 1.2;
}

.gmd-meetings__text {
	color: var(--gmd-muted-fg);
	margin: 0 auto 32px;
	max-width: 36rem;
	line-height: 1.6;
}

.gmd-meetings__placeholder {
	border: 1px dashed var(--gmd-border);
	border-radius: 8px;
	padding: 48px 24px;
	color: var(--gmd-muted-fg);
	font-size: 14px;
}

/* ===================================================================
   Icon Cards (getmd-icon-cards)
   =================================================================== */

.gmd-cards {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	--gmd-card: #0F1729;
	--gmd-border: #2B3455;
	--gmd-fg: #F8FAFC;
	--gmd-muted-fg: #A3B0C2;
	--gmd-orange: #F4781F;
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.gmd-card {
	position: relative;
	border-radius: 12px;
	border: 1px solid var(--gmd-border);
	background: var(--gmd-card);
	padding: 28px;
	transition: box-shadow 200ms, border-color 200ms;
}

.gmd-card:hover {
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
	border-color: rgba(244, 120, 31, 0.3);
}

.gmd-card__num {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 36px;
	font-weight: 900;
	color: rgba(31, 37, 61, 0.4);
	line-height: 1;
	user-select: none;
}

.gmd-card__icon {
	display: inline-flex;
	border-radius: 8px;
	background: rgba(244, 120, 31, 0.1);
	padding: 10px;
	color: var(--gmd-orange);
	margin-bottom: 16px;
}

.gmd-card__title {
	font-size: 18px;
	font-weight: 700;
	color: var(--gmd-fg);
	margin: 0 0 10px;
	line-height: 1.3;
}

.gmd-card__desc {
	font-size: 14px;
	color: var(--gmd-muted-fg);
	line-height: 1.6;
	margin: 0;
}

/* ===================================================================
   Split Feature (getmd-split-feature)
   =================================================================== */

.gmd-split {
	display: grid;
	gap: 40px;
	align-items: center;
	--gmd-fg: #F8FAFC;
	--gmd-muted-fg: #A3B0C2;
	--gmd-border: #2B3455;
	--gmd-orange: #F4781F;
	--gmd-magenta: #B31E84;
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

@media (min-width: 1024px) {
	.gmd-split { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 64px; }
	/* No resolvable image: one column, so the copy is not stranded beside a
	   blank half. The widget adds this class when the image is unset. */
	.gmd-split--no-media { grid-template-columns: minmax(0, 1fr); }
	.gmd-split--img-left .gmd-split__media { order: 1; }
	.gmd-split--img-left .gmd-split__copy { order: 2; }
	.gmd-split--img-right .gmd-split__copy { order: 1; }
	.gmd-split--img-right .gmd-split__media { order: 2; }
}

.gmd-split__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border-radius: 9999px;
	padding: 6px 16px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.gmd-split__eyebrow--magenta {
	background: rgba(179, 30, 132, 0.1);
	color: var(--gmd-magenta);
}

.gmd-split__eyebrow--magenta::before {
	content: '';
	height: 6px;
	width: 6px;
	border-radius: 9999px;
	background: var(--gmd-magenta);
}

.gmd-split__eyebrow--orange {
	background: rgba(244, 120, 31, 0.1);
	color: var(--gmd-orange);
	padding: 4px 12px;
}

.gmd-split__headline {
	font-size: 30px;
	font-weight: 700;
	color: var(--gmd-fg);
	line-height: 1.15;
	letter-spacing: -0.02em;
	margin: 0 0 20px;
}

@media (min-width: 640px) {
	.gmd-split__headline { font-size: 36px; }
}

.gmd-split__body {
	font-size: 16px;
	color: var(--gmd-muted-fg);
	line-height: 1.7;
	margin: 0 0 24px;
}

@media (min-width: 640px) {
	.gmd-split__body { font-size: 18px; }
}

.gmd-split__bullets {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.gmd-split__bullets li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 15px;
	color: var(--gmd-fg);
	line-height: 1.6;
}

.gmd-split__media img {
	width: 100%;
	height: auto;
	border-radius: 16px;
	display: block;
}

.gmd-split__media--border img {
	border: 1px solid var(--gmd-border);
}

/* ===================================================================
   FAQ (getmd-faq)
   =================================================================== */

.gmd-faq {
	display: flex;
	flex-direction: column;
	gap: 12px;
	--gmd-card: #0F1729;
	--gmd-border: #2B3455;
	--gmd-fg: #F8FAFC;
	--gmd-muted-fg: #A3B0C2;
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.gmd-faq__item {
	border-radius: 12px;
	border: 1px solid var(--gmd-border);
	background: var(--gmd-card);
	padding: 0 20px;
}

.gmd-faq button.gmd-faq__trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	text-align: left;
	padding: 16px 0;
	background: transparent;
	background-color: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	color: var(--gmd-fg);
	font-family: inherit;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	cursor: pointer;
}

.gmd-faq button.gmd-faq__trigger:hover,
.gmd-faq button.gmd-faq__trigger:focus {
	background: transparent;
	background-color: transparent;
	color: var(--gmd-fg);
}

.gmd-faq__chevron {
	display: inline-flex;
	flex-shrink: 0;
	color: var(--gmd-muted-fg);
	transition: transform 200ms;
}

.gmd-faq button.gmd-faq__trigger[aria-expanded="true"] .gmd-faq__chevron {
	transform: rotate(180deg);
}

.gmd-faq__answer {
	padding: 0 0 16px;
}

.gmd-faq__answer p {
	margin: 0;
	font-size: 14px;
	color: var(--gmd-muted-fg);
	line-height: 1.7;
}

/* ===================================================================
   Testimonial (getmd-testimonial)
   =================================================================== */

.gmd-quote {
	margin: 0 auto;
	max-width: 42rem;
	border-radius: 12px;
	border: 1px solid #2B3455;
	background: #0F1729;
	padding: 40px;
	text-align: left;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.gmd-quote__text {
	font-size: 18px;
	font-weight: 500;
	color: #F8FAFC;
	line-height: 1.7;
	margin: 0 0 24px;
}

.gmd-quote__footer {
	display: flex;
	align-items: center;
	gap: 16px;
}

.gmd-quote__avatar {
	height: 44px;
	width: 44px;
	border-radius: 9999px;
	object-fit: cover;
	flex-shrink: 0;
}

.gmd-quote__initial {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 44px;
	width: 44px;
	border-radius: 9999px;
	background: linear-gradient(135deg, #F4781F, #B31E84);
	color: #FFFFFF;
	font-size: 16px;
	font-weight: 700;
	flex-shrink: 0;
}

.gmd-quote__meta { display: flex; flex-direction: column; }

.gmd-quote__name {
	font-size: 14px;
	font-weight: 600;
	color: #F8FAFC;
}

.gmd-quote__role {
	font-size: 12px;
	color: #A3B0C2;
}

/* ===================================================================
   TEMPORARY: ghost hover for the old PHP theme's orange CTA anchors
   (header "Get a demo" etc). Remove after Session 4 replaces the
   theme header/footer with Elementor templates.
   =================================================================== */

.site-header a.bg-primary:hover,
body a.bg-primary:hover {
	background-color: transparent !important;
	color: #F4781F !important;
	box-shadow: inset 0 0 0 1px #F4781F;
}

/* ===================================================================
   Stat Cards (getmd-stat-cards)
   =================================================================== */

.gmd-stats {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.gmd-stat {
	border-radius: 12px;
	border: 1px solid #2B3455;
	background: #0F1729;
	padding: 20px;
}

.gmd-stat__label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #A3B0C2;
	margin: 0 0 8px;
}

.gmd-stat__value {
	font-size: 30px;
	font-weight: 900;
	color: #F8FAFC;
	line-height: 1.1;
	margin: 0 0 4px;
}

.gmd-stat__delta {
	font-size: 12px;
	color: #A3B0C2;
	margin: 0;
}

.gmd-stat__delta--good { color: #22C55E; }

/* ===================================================================
   Elementor Pro Forms - brand styling
   Mirrors the v1.9.5 request-pricing form exactly.
   !important is deliberate: Elementor generates kit-level and per-widget
   form CSS whose specificity we do not control, and it loads after this
   file. Scoped tightly to .elementor-widget-form so nothing else is hit.
   =================================================================== */

.elementor-widget-form {
	--gmd-bg: #0A0F1B;        /* bg-background  */
	--gmd-card: #0F1729;      /* bg-card        */
	--gmd-border: #2B3455;    /* border-border  */
	--gmd-input: #303A5F;     /* border-input   */
	--gmd-fg: #F8FAFC;        /* text-foreground*/
	--gmd-muted-fg: #A3B0C2;  /* text-muted-fg  */
	--gmd-orange: #F4781F;    /* primary        */
	--gmd-red: #EF4444;       /* text-red-500   */
}

/* ---- Labels ---- */
.elementor-widget-form .elementor-field-group > label.elementor-field-label {
	color: var(--gmd-fg) !important;
	font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	line-height: 1.4 !important;
	margin-bottom: 8px !important;
	padding-bottom: 0 !important;
}

.elementor-widget-form .elementor-mark-required,
.elementor-widget-form .elementor-field-label .elementor-mark-required {
	color: var(--gmd-red) !important;
}

/* ---- Text inputs, textareas, selects ---- */
.elementor-widget-form .elementor-field-group .elementor-field-textual,
.elementor-widget-form .elementor-field-group input[type="text"],
.elementor-widget-form .elementor-field-group input[type="email"],
.elementor-widget-form .elementor-field-group input[type="url"],
.elementor-widget-form .elementor-field-group input[type="tel"],
.elementor-widget-form .elementor-field-group input[type="number"],
.elementor-widget-form .elementor-field-group input[type="date"],
.elementor-widget-form .elementor-field-group textarea,
.elementor-widget-form .elementor-field-group select {
	background-color: var(--gmd-bg) !important;
	background-image: none;
	border: 1px solid var(--gmd-input) !important;
	border-radius: 6px !important;
	color: var(--gmd-fg) !important;
	font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
	font-size: 14px !important;
	line-height: 1.5 !important;
	padding: 9px 12px !important;
	min-height: 40px !important;
	width: 100%;
	box-shadow: none !important;
	transition: border-color 150ms, box-shadow 150ms;
}

.elementor-widget-form .elementor-field-group textarea {
	min-height: 104px !important;
	resize: vertical;
}

/* ---- Placeholders ---- */
.elementor-widget-form .elementor-field-group .elementor-field-textual::placeholder,
.elementor-widget-form .elementor-field-group input::placeholder,
.elementor-widget-form .elementor-field-group textarea::placeholder {
	color: var(--gmd-muted-fg) !important;
	opacity: 0.65 !important;
}

/* ---- Focus: orange ring, matching focus:ring-2 ring-primary/40 ---- */
.elementor-widget-form .elementor-field-group .elementor-field-textual:focus,
.elementor-widget-form .elementor-field-group input:focus,
.elementor-widget-form .elementor-field-group textarea:focus,
.elementor-widget-form .elementor-field-group select:focus {
	border-color: var(--gmd-orange) !important;
	box-shadow: 0 0 0 2px rgba(244, 120, 31, 0.4) !important;
	outline: none !important;
}

/* ---- Select: strip native chrome, draw our own chevron ---- */
.elementor-widget-form .elementor-field-group select {
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	appearance: none !important;
	padding-right: 36px !important;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23A3B0C2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
	background-repeat: no-repeat !important;
	background-position: right 12px center !important;
	background-size: 16px 16px !important;
	cursor: pointer;
}

.elementor-widget-form .elementor-field-group select option {
	background-color: var(--gmd-card);
	color: var(--gmd-fg);
}

/* Elementor wraps selects and can inject a second arrow */
.elementor-widget-form .elementor-field-group .elementor-select-wrapper::before,
.elementor-widget-form .elementor-field-group .elementor-select-wrapper::after {
	display: none !important;
}

.elementor-widget-form .elementor-field-group .elementor-select-wrapper {
	position: relative;
	width: 100%;
}

/* ---- Submit button: auto width on desktop, like the live form ---- */
.elementor-widget-form .elementor-field-type-submit,
.elementor-widget-form .e-form__buttons {
	justify-content: flex-start !important;
	align-items: flex-start !important;
}

.elementor-widget-form .elementor-field-type-submit button[type="submit"],
.elementor-widget-form button.elementor-button[type="submit"] {
	background-color: var(--gmd-orange) !important;
	border: 1px solid var(--gmd-orange) !important;
	border-radius: 6px !important;
	color: #FFFFFF !important;
	font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	min-height: 44px !important;
	padding: 10px 28px !important;
	width: auto !important;
	max-width: max-content !important;
	flex: 0 0 auto !important;
	align-self: flex-start !important;
	box-shadow: 0 4px 24px -4px rgba(244, 120, 31, 0.35);
	transition: background-color 150ms, color 150ms;
}

.elementor-widget-form .elementor-field-type-submit button[type="submit"]:hover,
.elementor-widget-form button.elementor-button[type="submit"]:hover {
	background-color: transparent !important;
	color: var(--gmd-orange) !important;
}

.elementor-widget-form .elementor-field-type-submit button[type="submit"]:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

@media (max-width: 640px) {
	.elementor-widget-form .elementor-field-type-submit button[type="submit"] {
		width: 100% !important;
		max-width: none !important;
		align-self: stretch !important;
	}
}

/* ---- Inline HTML helper text between fields ---- */
.elementor-widget-form .elementor-field-type-html {
	color: var(--gmd-muted-fg) !important;
	font-size: 12px !important;
	line-height: 1.5;
	padding-top: 0 !important;
}

.elementor-widget-form .elementor-field-type-html p {
	margin: 0;
	color: var(--gmd-muted-fg);
	font-size: 12px;
}

/* ---- Validation + status messages ---- */
.elementor-widget-form .elementor-message {
	font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
	font-size: 14px !important;
	line-height: 1.5;
	margin-top: 12px;
}

.elementor-widget-form .elementor-message.elementor-message-danger {
	color: var(--gmd-red) !important;
	background: rgba(239, 68, 68, 0.06);
	border: 1px solid rgba(239, 68, 68, 0.3);
	border-radius: 6px;
	padding: 10px 14px;
}

.elementor-widget-form .elementor-message.elementor-message-success {
	color: #22C55E !important;
}

.elementor-widget-form .elementor-field-group.elementor-error .elementor-field-textual,
.elementor-widget-form .elementor-field-group.elementor-error select,
.elementor-widget-form .elementor-field-group.elementor-error textarea {
	border-color: var(--gmd-red) !important;
}

.elementor-widget-form .elementor-field-group .elementor-error-message,
.elementor-widget-form .elementor-field-group span.elementor-form-help-inline {
	color: var(--gmd-red) !important;
	font-size: 13px !important;
	margin-top: 6px;
}

/* ---- Checkbox / radio / acceptance ---- */
.elementor-widget-form .elementor-field-subgroup label,
.elementor-widget-form .elementor-field-type-acceptance label {
	color: var(--gmd-muted-fg) !important;
	font-size: 14px !important;
}

.elementor-widget-form input[type="checkbox"],
.elementor-widget-form input[type="radio"] {
	accent-color: var(--gmd-orange);
}

/* ===================================================================
   Vertical rhythm
   The kit sets a 20px base gap between widgets. Buttons that follow
   body copy want more air than that, matching the theme's spacing.
   =================================================================== */

.elementor-widget-text-editor + .elementor-widget-button,
.elementor-widget-text-editor + .elementor-widget-form,
.elementor-widget-heading + .elementor-widget-button {
	margin-top: 12px;
}

/* Custom widgets that follow copy read better with a clear break */
.elementor-widget-text-editor + .elementor-widget-getmd-pricing-cards,
.elementor-widget-text-editor + .elementor-widget-getmd-showcase-accordion,
.elementor-widget-text-editor + .elementor-widget-getmd-icon-cards,
.elementor-widget-text-editor + .elementor-widget-getmd-stat-cards,
.elementor-widget-text-editor + .elementor-widget-getmd-faq,
.elementor-widget-text-editor + .elementor-widget-getmd-code-comparison {
	margin-top: 20px;
}

/* Paragraph rhythm inside rich text blocks */
.elementor-widget-text-editor p + p {
	margin-top: 16px;
}

.elementor-widget-text-editor ul,
.elementor-widget-text-editor ol {
	margin: 16px 0;
	padding-left: 20px;
}

.elementor-widget-text-editor li + li {
	margin-top: 8px;
}

/* ===================================================================
   Container width utilities
   Apply as a CSS class on a container. Sets Elementor's own
   --content-width variable (which .e-con-inner reads) so the constraint
   works with the framework rather than against it, plus a direct
   max-width for belt and braces. Backgrounds stay full-bleed because
   only the inner content column is constrained.
   Mirrors the theme's Tailwind max-w-* scale.
   =================================================================== */

.e-con.gmd-narrow { --content-width: 672px; }   /* max-w-2xl */
.e-con.gmd-form   { --content-width: 768px; }   /* max-w-3xl */
.e-con.gmd-medium { --content-width: 896px; }   /* max-w-4xl */
.e-con.gmd-wide   { --content-width: 1024px; }  /* max-w-5xl */
.e-con.gmd-xwide  { --content-width: 1152px; }  /* max-w-6xl */

.gmd-narrow > .e-con-inner { max-width: 672px;  margin-left: auto; margin-right: auto; }
.gmd-form   > .e-con-inner { max-width: 768px;  margin-left: auto; margin-right: auto; }
.gmd-medium > .e-con-inner { max-width: 896px;  margin-left: auto; margin-right: auto; }
.gmd-wide   > .e-con-inner { max-width: 1024px; margin-left: auto; margin-right: auto; }
.gmd-xwide  > .e-con-inner { max-width: 1152px; margin-left: auto; margin-right: auto; }

/* Centred eyebrow pill helper (native text widgets) */
.gmd-eyebrow-center { text-align: center; }
.gmd-eyebrow-center .gmd-eyebrow { margin: 0 auto; }

/* Closing italic note under a section */
.gmd-note {
	color: #A3B0C2;
	font-style: italic;
	text-align: center;
}

/* ===================================================================
   Callout box (inside Split Feature, or standalone via .gmd-callout)
   =================================================================== */

.gmd-callout {
	border: 1px solid rgba(244, 120, 31, 0.3);
	background: rgba(244, 120, 31, 0.05);
	border-radius: 8px;
	padding: 20px;
	margin-top: 24px;
}

.gmd-callout__title {
	font-size: 14px;
	font-weight: 500;
	color: #F8FAFC;
	margin: 0;
	line-height: 1.6;
}

.gmd-callout__body {
	font-size: 14px;
	color: #A3B0C2;
	margin: 4px 0 0;
	line-height: 1.6;
}

/* Highlight a figure inside callout or body copy */
.gmd-hl { color: #F4781F; font-weight: 700; }

/* ===================================================================
   Stat Cards alignment
   =================================================================== */

.gmd-stats--center .gmd-stat { text-align: center; }

/* ===================================================================
   Diagnostic Cards (getmd-diagnostic-cards)
   =================================================================== */

.gmd-diag {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.gmd-diag__card {
	border-radius: 8px;
	border: 1px solid #2B3455;
	background: rgba(31, 37, 61, 0.3);
	padding: 14px;
}

.gmd-diag--stacked .gmd-diag__card {
	border-radius: 12px;
	background: #0F1729;
	padding: 20px;
}

/* Tones */
.gmd-diag__card--good  { border-color: rgba(34, 197, 94, 0.3);  background: rgba(34, 197, 94, 0.05); }
.gmd-diag__card--warn  { border-color: rgba(244, 120, 31, 0.3); background: rgba(244, 120, 31, 0.05); }
.gmd-diag__card--info  { border-color: rgba(59, 130, 246, 0.3); background: rgba(59, 130, 246, 0.05); }
.gmd-diag__card--bad   { border-color: rgba(239, 68, 68, 0.3);  background: rgba(239, 68, 68, 0.05); }
.gmd-diag__card--muted { border-color: #2B3455;                 background: rgba(31, 37, 61, 0.3); }

.gmd-diag--stacked .gmd-diag__card--good,
.gmd-diag--stacked .gmd-diag__card--warn,
.gmd-diag--stacked .gmd-diag__card--info,
.gmd-diag--stacked .gmd-diag__card--bad,
.gmd-diag--stacked .gmd-diag__card--muted { background: #0F1729; }

/* Inline layout */
.gmd-diag__row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: 4px;
	gap: 12px;
}

.gmd-diag__label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.gmd-diag__value {
	font-size: 20px;
	font-weight: 900;
	line-height: 1;
}

.gmd-diag__card--good  .gmd-diag__label, .gmd-diag__card--good  .gmd-diag__value { color: #22C55E; }
.gmd-diag__card--warn  .gmd-diag__label, .gmd-diag__card--warn  .gmd-diag__value { color: #F4781F; }
.gmd-diag__card--info  .gmd-diag__label, .gmd-diag__card--info  .gmd-diag__value { color: #3B82F6; }
.gmd-diag__card--bad   .gmd-diag__label, .gmd-diag__card--bad   .gmd-diag__value { color: #EF4444; }
.gmd-diag__card--muted .gmd-diag__label, .gmd-diag__card--muted .gmd-diag__value { color: #A3B0C2; }

.gmd-diag__desc {
	font-size: 12px;
	color: #A3B0C2;
	margin: 0;
	line-height: 1.5;
}

/* Stacked layout */
.gmd-diag__title {
	font-size: 14px;
	font-weight: 600;
	color: #F8FAFC;
	margin: 0 0 4px;
}

.gmd-diag__status {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 8px;
	line-height: 1.2;
}

.gmd-diag--stacked .gmd-diag__card--good  .gmd-diag__status { color: #22C55E; }
.gmd-diag--stacked .gmd-diag__card--warn  .gmd-diag__status { color: #F4781F; }
.gmd-diag--stacked .gmd-diag__card--info  .gmd-diag__status { color: #3B82F6; }
.gmd-diag--stacked .gmd-diag__card--bad   .gmd-diag__status { color: #EF4444; }
.gmd-diag--stacked .gmd-diag__card--muted .gmd-diag__status { color: #A3B0C2; }

.gmd-diag--stacked .gmd-diag__desc { font-style: italic; margin-bottom: 12px; }

.gmd-diag__detail {
	font-size: 12px;
	color: #A3B0C2;
	line-height: 1.6;
	margin: 0;
	border-top: 1px solid #2B3455;
	padding-top: 12px;
}

/* ===================================================================
   Eyebrow variants + screenshot frames
   =================================================================== */

/* Orange minimal pill (no leading dot) - matches bg-primary/10 text-primary */
.gmd-eyebrow--orange {
	background: rgba(244, 120, 31, 0.1);
	color: #F4781F;
	padding: 4px 12px;
}

.gmd-eyebrow--orange::before { display: none; }

/* Multiple pills sit on one line with a gap */
.gmd-eyebrow-center .gmd-eyebrow + .gmd-eyebrow { margin-left: 8px; }

/* Product screenshots.
   inline-block, not block: .gmd-shot is applied to a native Elementor Image
   widget, and Elementor aligns those with text-align on the wrapper - which a
   block box ignores, silently killing the alignment control. */
.gmd-shot img {
	border-radius: 16px;
	border: 1px solid #2B3455;
	width: 100%;
	height: auto;
	display: inline-block;
	vertical-align: middle;
}

.gmd-shot--shadow img {
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -4px rgba(0, 0, 0, 0.3);
}

/* ===================================================================
   Contact Cards (getmd-contact-cards)
   =================================================================== */

.gmd-contact {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.gmd-contact .gmd-contact__card {
	display: flex;
	flex-direction: column;
	border-radius: 12px;
	border: 1px solid #2B3455;
	background: #0F1729;
	padding: 24px;
	text-decoration: none;
	transition: box-shadow 200ms, border-color 200ms;
}

.gmd-contact a.gmd-contact__card:hover {
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
	border-color: rgba(244, 120, 31, 0.3);
}

.gmd-contact__icon {
	display: inline-flex;
	align-self: flex-start;
	border-radius: 8px;
	background: rgba(244, 120, 31, 0.1);
	padding: 10px;
	color: #F4781F;
	margin-bottom: 16px;
}

.gmd-contact__title {
	font-size: 16px;
	font-weight: 600;
	color: #F8FAFC;
	margin: 0 0 8px;
}

.gmd-contact__body {
	font-size: 14px;
	color: #A3B0C2;
	line-height: 1.6;
	margin: 0 0 20px;
	flex: 1;
}

.gmd-contact .gmd-contact__btn {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 8px;
	height: 36px;
	padding: 0 16px;
	border: 0;
	border-radius: 6px;
	background: rgba(244, 120, 31, 0.1);
	color: #F4781F;
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	transition: background-color 150ms;
}

.gmd-contact .gmd-contact__btn:hover { background: rgba(244, 120, 31, 0.2); }

.gmd-contact .gmd-contact__btn--primary {
	background: #F4781F;
	color: #FFFFFF;
}

.gmd-contact .gmd-contact__btn--primary:hover { background: #DC6C1C; }

.gmd-contact a[data-revealed] { word-break: break-all; }

/* ===================================================================
   Legal / long-form prose (privacy, terms)
   =================================================================== */

.gmd-legal section { margin-bottom: 32px; }
.gmd-legal h2 {
	font-size: 18px;
	font-weight: 600;
	color: #F8FAFC;
	margin: 0 0 12px;
	line-height: 1.4;
}
.gmd-legal p { margin: 0 0 12px; line-height: 1.7; color: #A3B0C2; }
.gmd-legal ul { margin: 12px 0; padding-left: 20px; list-style: disc; }
.gmd-legal li { margin-bottom: 6px; line-height: 1.7; color: #A3B0C2; }
.gmd-legal a { color: #F4781F; }

/* ===================================================================
   Site header (Elementor Theme Builder template)
   =================================================================== */

.gmd-header {
	position: sticky !important;
	top: 0;
	z-index: 50;
	width: 100%;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	transition: border-color 200ms, box-shadow 200ms;
}

/*
 * Offset the sticky header by the WordPress admin bar height when it is
 * present, otherwise the logo and nav sit underneath it for logged-in
 * users. Core uses 32px from 783px up and 46px below that.
 */
.admin-bar .gmd-header { top: 32px; }

@media screen and (max-width: 782px) {
	.admin-bar .gmd-header { top: 46px; }
}

/* Border appears once the page is scrolled, matching theme v1.9.5 */
.gmd-header.gmd-header--scrolled {
	border-bottom-color: #2B3455 !important;
	box-shadow: 0 1px 3px 0 rgba(15, 23, 41, 0.08);
}

.gmd-logo img { height: 32px; width: auto; }

/* Nav CTA keeps the solid orange treatment at nav scale */
.gmd-nav-cta .elementor-button {
	height: 36px;
	padding: 0 16px;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
}

/* ===================================================================
   Site footer (Elementor Theme Builder template)
   =================================================================== */

.gmd-foot__head {
	font-size: 14px;
	font-weight: 600;
	color: #F8FAFC;
	margin: 0 0 12px;
}

.gmd-foot__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.gmd-foot__list a {
	font-size: 14px;
	color: #A3B0C2;
	text-decoration: none;
	transition: color 150ms;
}

.gmd-foot__list a:hover { color: #F8FAFC; }

/* ===================================================================
   Blog: archive cards + single post prose
   =================================================================== */

.gmd-posts .elementor-post {
	border-radius: 12px;
	border: 1px solid #2B3455;
	background: #0F1729;
	overflow: hidden;
	transition: box-shadow 200ms, border-color 200ms;
}

.gmd-posts .elementor-post:hover {
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
	border-color: rgba(244, 120, 31, 0.3);
}

.gmd-posts .elementor-post__text { padding: 0 20px 20px; }
.gmd-posts .elementor-post__meta-data { padding: 16px 20px 0; margin-bottom: 8px; font-size: 12px; color: #A3B0C2; }
.gmd-posts .elementor-post__title { font-size: 18px; line-height: 1.35; margin: 0 0 8px; }
.gmd-posts .elementor-post__title a { color: #F8FAFC; }
.gmd-posts .elementor-post__title a:hover { color: #F4781F; }
.gmd-posts .elementor-post__excerpt p { font-size: 14px; color: #A3B0C2; line-height: 1.6; margin: 0; }
.gmd-posts .elementor-post__read-more { color: #F4781F; font-size: 14px; font-weight: 600; }
.gmd-posts .elementor-post__thumbnail__link { margin: 0; }

/* Pagination */
.gmd-posts .elementor-pagination { margin-top: 40px; }
.gmd-posts .page-numbers {
	color: #A3B0C2;
	padding: 6px 12px;
	border-radius: 6px;
	border: 1px solid #2B3455;
	margin: 0 3px;
}
.gmd-posts .page-numbers.current,
.gmd-posts .page-numbers:hover { color: #F4781F; border-color: #F4781F; }

/* Single post meta line */
.gmd-postmeta .elementor-icon-list-text,
.gmd-postmeta .elementor-icon-list-item { color: #A3B0C2; font-size: 14px; }
.gmd-postmeta a { color: #F4781F; }

/* Single post body copy */
.gmd-prose { color: #A3B0C2; line-height: 1.8; }
.gmd-prose h2 { font-size: 28px; margin: 40px 0 16px; color: #F8FAFC; line-height: 1.3; }
.gmd-prose h3 { font-size: 22px; margin: 32px 0 12px; color: #F8FAFC; line-height: 1.35; }
.gmd-prose h4 { font-size: 18px; margin: 24px 0 10px; color: #F8FAFC; }
.gmd-prose p { margin: 0 0 18px; }
.gmd-prose ul, .gmd-prose ol { margin: 0 0 18px; padding-left: 22px; }
.gmd-prose ul { list-style: disc; }
.gmd-prose ol { list-style: decimal; }
.gmd-prose li { margin-bottom: 8px; }
.gmd-prose a { color: #F4781F; text-decoration: underline; }
.gmd-prose img { border-radius: 12px; margin: 24px 0; }
.gmd-prose blockquote {
	border-left: 3px solid #F4781F;
	padding: 4px 0 4px 20px;
	margin: 24px 0;
	color: #F8FAFC;
	font-style: italic;
}
.gmd-prose code {
	background: #1F253D;
	padding: 2px 6px;
	border-radius: 4px;
	font-size: 14px;
	color: #F4781F;
}
.gmd-prose pre {
	background: #0F1729;
	border: 1px solid #2B3455;
	border-radius: 8px;
	padding: 16px;
	overflow-x: auto;
	margin: 24px 0;
}
.gmd-prose pre code { background: none; padding: 0; color: #A3B0C2; }
.gmd-prose table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.gmd-prose th, .gmd-prose td {
	border: 1px solid #2B3455;
	padding: 10px 12px;
	text-align: left;
	font-size: 14px;
}
.gmd-prose th { background: #1F253D; color: #F8FAFC; font-weight: 600; }

/* ===================================================================
   404 + search templates
   =================================================================== */

.gmd-404__code {
	font-size: 96px;
	font-weight: 900;
	line-height: 1;
	margin: 0 0 8px;
	background: linear-gradient(90deg, #F4781F, #B31E84);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	text-align: center;
}

@media (min-width: 640px) {
	.gmd-404__code { font-size: 128px; }
}

/* Search form: match the branded input treatment */
.gmd-search input[type="search"],
.gmd-search .elementor-search-form__input {
	background-color: #0A0F1B !important;
	border: 1px solid #303A5F !important;
	border-radius: 6px !important;
	color: #F8FAFC !important;
	font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
	font-size: 14px !important;
	padding: 10px 14px !important;
}

.gmd-search input[type="search"]::placeholder,
.gmd-search .elementor-search-form__input::placeholder {
	color: #A3B0C2 !important;
	opacity: 0.65 !important;
}

.gmd-search input[type="search"]:focus,
.gmd-search .elementor-search-form__input:focus {
	border-color: #F4781F !important;
	box-shadow: 0 0 0 2px rgba(244, 120, 31, 0.4) !important;
	outline: none !important;
}

.gmd-search .elementor-search-form__submit {
	background-color: #F4781F !important;
	color: #FFFFFF !important;
	border-radius: 6px !important;
	font-weight: 600;
}

.gmd-search .elementor-search-form__submit:hover {
	background-color: transparent !important;
	color: #F4781F !important;
	box-shadow: inset 0 0 0 1px #F4781F;
}

/* Empty-state message from the Posts widget */
.gmd-posts .elementor-posts-nothing-found {
	color: #A3B0C2;
	font-size: 16px;
	text-align: center;
	padding: 48px 24px;
	border: 1px dashed #2B3455;
	border-radius: 12px;
}
