/* =========================================================================
   Mission Web — design system
   Dark luxury SaaS aesthetic · glassmorphism · scoped to .missionweb-site
   ========================================================================= */

:root {
	--mw-bg-0: #050914;
	--mw-bg-1: #07111f;
	--mw-bg-2: #0b1628;
	--mw-card: rgba(15, 29, 52, 0.72);
	--mw-card-solid: #0f1d34;
	--mw-border: rgba(90, 190, 255, 0.18);
	--mw-border-strong: rgba(90, 190, 255, 0.38);
	--mw-accent: #45c7ff;
	--mw-accent-2: #8bdcff;
	--mw-gold: #ffd84d;
	--mw-text: #f6f8ff;
	--mw-muted: #94a3b8;
	--mw-font-head: "Sora", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
	--mw-font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
	--mw-radius: 20px;
	--mw-radius-lg: 26px;
	--mw-shadow: 0 24px 60px -24px rgba(2, 8, 20, 0.9);
	--mw-glow: 0 0 44px rgba(69, 199, 255, 0.22);
	--mw-section-pad: clamp(52px, 6.5vw, 92px);
	--mw-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ------------------------------------------------------------------------
   Base & theme overrides (Hello Elementor)
   ------------------------------------------------------------------------ */

body.missionweb-site {
	margin: 0;
	background-color: var(--mw-bg-0);
	background-image:
		radial-gradient(1000px 640px at 82% -8%, rgba(69, 199, 255, 0.10), transparent 60%),
		radial-gradient(860px 600px at -12% 26%, rgba(59, 130, 246, 0.10), transparent 62%),
		linear-gradient(180deg, var(--mw-bg-0) 0%, var(--mw-bg-1) 48%, var(--mw-bg-0) 100%);
	color: var(--mw-text);
	font-family: var(--mw-font-body);
	font-size: 17px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

/* Subtle grid overlay */
body.missionweb-site::before {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(139, 220, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(139, 220, 255, 0.035) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(ellipse 90% 62% at 50% 0%, #000 30%, transparent 78%);
	-webkit-mask-image: radial-gradient(ellipse 90% 62% at 50% 0%, #000 30%, transparent 78%);
	z-index: 0;
}

body.missionweb-site .site-main,
body.missionweb-site #content.site-main {
	margin: 0;
	padding: 0;
	max-width: none;
	position: relative;
	z-index: 1;
}

/* Dynamic starfield canvas (created by missionweb.js) */
#mw-starfield {
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

/* :where() keeps base typography at zero specificity so component
   classes always win. */
:where(body.missionweb-site) :where(h1, h2, h3, h4) {
	font-family: var(--mw-font-head);
	color: var(--mw-text);
	line-height: 1.16;
	letter-spacing: -0.02em;
	margin: 0 0 0.5em;
	font-weight: 700;
}

:where(body.missionweb-site) :where(h1) { font-size: clamp(2.4rem, 5.4vw, 4.1rem); font-weight: 800; }
:where(body.missionweb-site) :where(h2) { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
:where(body.missionweb-site) :where(h3) { font-size: 1.22rem; }
:where(body.missionweb-site) :where(p) { margin: 0 0 1em; }
:where(body.missionweb-site) :where(a) { color: var(--mw-accent-2); text-decoration: none; }
:where(body.missionweb-site) :where(a:hover) { color: var(--mw-accent); }
body.missionweb-site img { max-width: 100%; height: auto; }

body.missionweb-site :focus-visible {
	outline: 2px solid var(--mw-accent);
	outline-offset: 3px;
	border-radius: 4px;
}

.mw-grad {
	background: linear-gradient(92deg, var(--mw-accent) 8%, var(--mw-accent-2) 55%, #d9f3ff 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

/* Layout */
.mw-container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; position: relative; }
.mw-container--narrow { width: min(860px, calc(100% - 48px)); }
.mw-container-wide { width: min(1400px, 100%); margin-inline: auto; }

.mw-section { padding-block: var(--mw-section-pad); position: relative; }
.mw-section--tight { padding-block: clamp(32px, 4vw, 56px); }
.mw-section--alt {
	background: linear-gradient(180deg, transparent, rgba(11, 22, 40, 0.66) 18%, rgba(11, 22, 40, 0.66) 82%, transparent);
}

.mw-section-head { max-width: 780px; margin: 0 auto clamp(30px, 4vw, 48px); text-align: center; }
.mw-section-sub { color: var(--mw-muted); font-size: 1.08rem; margin-top: 14px; }
.mw-section-cta { text-align: center; margin-top: clamp(32px, 4vw, 48px); }

.mw-eyebrow {
	display: inline-block;
	font-family: var(--mw-font-head);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--mw-accent);
	margin-bottom: 14px;
}

/* Glass card primitive */
.mw-glass {
	background: var(--mw-card);
	border: 1px solid var(--mw-border);
	border-radius: var(--mw-radius);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	box-shadow: var(--mw-shadow);
}

/* Floating orbs */
.mw-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(70px);
	opacity: 0.5;
	pointer-events: none;
	z-index: 0;
}
.mw-orb--1 { width: 420px; height: 420px; top: -120px; right: -80px; background: radial-gradient(circle, rgba(69, 199, 255, 0.35), transparent 70%); }
.mw-orb--2 { width: 360px; height: 360px; bottom: -140px; left: -110px; background: radial-gradient(circle, rgba(59, 130, 246, 0.32), transparent 70%); }
.mw-orb--3 { width: 260px; height: 260px; top: 38%; left: 42%; background: radial-gradient(circle, rgba(255, 216, 77, 0.10), transparent 70%); animation: mw-drift 14s ease-in-out infinite alternate; }

@keyframes mw-drift {
	from { transform: translate3d(0, 0, 0); }
	to   { transform: translate3d(40px, -34px, 0); }
}

/* ------------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------------ */

.mw-btn {
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-family: var(--mw-font-head);
	font-size: 0.98rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	line-height: 1;
	padding: 17px 30px;
	border-radius: 14px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform 0.25s var(--mw-ease), box-shadow 0.25s var(--mw-ease), background 0.25s, border-color 0.25s;
	text-decoration: none;
	white-space: nowrap;
}

.mw-btn--primary {
	background: linear-gradient(120deg, #2eb6f5 0%, var(--mw-accent) 45%, var(--mw-accent-2) 100%);
	color: #04101e !important;
	box-shadow: 0 12px 34px -10px rgba(69, 199, 255, 0.55);
}
.mw-btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 44px -12px rgba(69, 199, 255, 0.72), var(--mw-glow);
	color: #04101e !important;
}

.mw-btn--ghost {
	background: rgba(69, 199, 255, 0.06);
	color: var(--mw-text) !important;
	border-color: var(--mw-border-strong);
}
.mw-btn--ghost:hover {
	transform: translateY(-2px);
	border-color: var(--mw-accent);
	background: rgba(69, 199, 255, 0.12);
	box-shadow: var(--mw-glow);
}

.mw-btn--sm { padding: 12px 22px; font-size: 0.9rem; }
.mw-btn--block { width: 100%; }

.mw-btn-spinner {
	width: 16px; height: 16px;
	border: 2px solid rgba(4, 16, 30, 0.35);
	border-top-color: #04101e;
	border-radius: 50%;
	display: none;
	animation: mw-spin 0.7s linear infinite;
}
.mw-btn.is-loading .mw-btn-spinner { display: inline-block; }
.mw-btn.is-loading { pointer-events: none; opacity: 0.85; }
@keyframes mw-spin { to { transform: rotate(360deg); } }

/* ------------------------------------------------------------------------
   Header
   ------------------------------------------------------------------------ */

.mw-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 10000;
	background: var(--mw-accent);
	color: #04101e;
	padding: 12px 20px;
	border-radius: 0 0 12px 0;
	font-weight: 600;
}
.mw-skip-link:focus { left: 0; }

.mw-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 900;
	padding-block: 14px;
	background: transparent;
	transition: padding 0.35s ease;
}
/* Scrolled backdrop lives on a pseudo-element: backdrop-filter on the
   header itself would turn it into the containing block for the fixed
   mobile drawer and clip the menu to the header height. */
.mw-header::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(5, 9, 20, 0.82);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	box-shadow: 0 14px 40px -18px rgba(2, 8, 20, 0.9);
	opacity: 0;
	transition: opacity 0.35s ease;
	pointer-events: none;
}
.mw-header::after {
	content: "";
	position: absolute;
	left: 0; right: 0; bottom: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(69, 199, 255, 0.35), transparent);
	opacity: 0;
	transition: opacity 0.35s ease;
}
.mw-header.is-scrolled { padding-block: 8px; }
.mw-header.is-scrolled::before { opacity: 1; }
.mw-header.is-scrolled::after { opacity: 1; }
/* Solid backdrop while the mobile drawer is open, at any scroll position */
body.mw-nav-open .mw-header::before { opacity: 1; }

/* Keep the fixed header (and mobile drawer) clear of the WP admin bar */
body.admin-bar .mw-header { top: 32px; }
@media (max-width: 980px) {
	body.admin-bar .mw-nav {
		top: 32px;
		height: calc(100vh - 32px);
		height: calc(100dvh - 32px);
	}
}
@media (max-width: 782px) {
	body.admin-bar .mw-header { top: 46px; }
	body.admin-bar .mw-nav {
		top: 46px;
		height: calc(100vh - 46px);
		height: calc(100dvh - 46px);
	}
}

.mw-header-inner { display: flex; align-items: center; gap: 28px; }

.mw-logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.mw-logo img { width: 150px; height: auto; display: block; }

.mw-logo-text {
	font-family: var(--mw-font-head);
	font-size: 1.25rem;
	font-weight: 800;
	font-style: italic;
	letter-spacing: 0.04em;
	color: var(--mw-text);
}
.mw-logo-text strong { color: var(--mw-accent); }

.mw-nav { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.mw-nav-list { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.mw-nav-list a {
	display: block;
	padding: 10px 14px;
	color: var(--mw-text);
	font-size: 0.95rem;
	font-weight: 500;
	border-radius: 10px;
	transition: color 0.2s, background 0.2s;
}
.mw-nav-list a:hover { color: var(--mw-accent-2); background: rgba(69, 199, 255, 0.07); }
.mw-nav-list .current-menu-item > a,
.mw-nav-list .current_page_item > a { color: var(--mw-accent); }

.mw-nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 46px; height: 46px;
	margin-left: auto;
	background: rgba(69, 199, 255, 0.07);
	border: 1px solid var(--mw-border);
	border-radius: 12px;
	cursor: pointer;
	padding: 12px 11px;
}
.mw-nav-toggle-bar {
	display: block;
	height: 2px;
	border-radius: 2px;
	background: var(--mw-text);
	transition: transform 0.3s var(--mw-ease), opacity 0.2s;
}
.mw-nav-toggle[aria-expanded="true"] .mw-nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mw-nav-toggle[aria-expanded="true"] .mw-nav-toggle-bar:nth-child(2) { opacity: 0; }
.mw-nav-toggle[aria-expanded="true"] .mw-nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
	.mw-nav-toggle { display: flex; }
	.mw-nav {
		position: fixed;
		top: 0; right: 0;
		height: 100vh;
		height: 100dvh;
		width: min(340px, 86vw);
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		gap: 8px;
		padding: 96px 28px 40px;
		background: rgba(5, 9, 20, 0.97);
		backdrop-filter: blur(22px);
		-webkit-backdrop-filter: blur(22px);
		border-left: 1px solid var(--mw-border);
		transform: translateX(105%);
		transition: transform 0.4s var(--mw-ease);
		overflow-y: auto;
		z-index: -1;
	}
	body.mw-nav-open .mw-nav { transform: translateX(0); }
	.mw-nav-list { flex-direction: column; align-items: stretch; width: 100%; gap: 2px; }
	.mw-nav-list a { font-size: 1.1rem; padding: 13px 14px; }
	.mw-nav-cta { margin-top: 18px; width: 100%; }
	body.mw-nav-open { overflow: hidden; }
}

/* ------------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------------ */

.mw-hero {
	padding-top: clamp(112px, 13vw, 150px);
	padding-bottom: clamp(48px, 6vw, 84px);
	position: relative;
	overflow: hidden;
}

.mw-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(40px, 5vw, 72px);
	align-items: center;
	z-index: 1;
}

.mw-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	background: rgba(69, 199, 255, 0.08);
	border: 1px solid var(--mw-border);
	border-radius: 999px;
	padding: 9px 18px;
	font-size: 0.86rem;
	font-weight: 500;
	color: var(--mw-accent-2);
	margin-bottom: 26px;
}
.mw-hero-badge span { color: var(--mw-gold); }

.mw-hero-sub { font-size: 1.16rem; color: var(--mw-muted); max-width: 560px; margin-top: 20px; }
.mw-hero-support { font-family: var(--mw-font-head); font-weight: 600; color: var(--mw-accent-2); font-size: 1.02rem; }

.mw-hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin: 30px 0 6px; }

.mw-hero-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	list-style: none;
	margin: 26px 0 0;
	padding: 0;
}
.mw-hero-badges li {
	font-size: 0.83rem;
	font-weight: 500;
	color: var(--mw-text);
	background: rgba(15, 29, 52, 0.66);
	border: 1px solid var(--mw-border);
	border-radius: 999px;
	padding: 7px 15px;
}

.mw-hero-form { position: relative; }
.mw-hero-form::before {
	content: "";
	position: absolute;
	inset: -34px -30px auto auto;
	width: 190px; height: 190px;
	background: radial-gradient(circle, rgba(69, 199, 255, 0.28), transparent 68%);
	filter: blur(30px);
	pointer-events: none;
}

.mw-hero-browser {
	display: flex;
	gap: 7px;
	padding: 13px 18px;
	background: rgba(15, 29, 52, 0.9);
	border: 1px solid var(--mw-border);
	border-bottom: none;
	border-radius: var(--mw-radius) var(--mw-radius) 0 0;
	transform: translateY(1px);
	position: relative;
	z-index: 1;
}
.mw-hero-browser span { width: 10px; height: 10px; border-radius: 50%; background: rgba(148, 163, 184, 0.4); }
.mw-hero-browser span:first-child { background: rgba(69, 199, 255, 0.75); }

.mw-hero-form .mw-form-card { border-top-left-radius: 0; border-top-right-radius: 0; position: relative; z-index: 1; }

@media (max-width: 980px) {
	.mw-hero-grid { grid-template-columns: 1fr; }
	.mw-hero-form { max-width: 560px; }
}

/* Inner page hero */
.mw-pagehero {
	padding-top: clamp(118px, 14vw, 165px);
	padding-bottom: clamp(20px, 3vw, 36px);
	overflow: hidden;
	text-align: center;
}
.mw-pagehero-inner { max-width: 840px; z-index: 1; }
.mw-pagehero-sub { color: var(--mw-muted); font-size: 1.14rem; max-width: 640px; margin-inline: auto; }
.mw-pagehero .mw-hero-ctas { justify-content: center; }

/* ------------------------------------------------------------------------
   Trust strip
   ------------------------------------------------------------------------ */

.mw-truststrip { padding-block: 22px; border-block: 1px solid rgba(90, 190, 255, 0.10); background: rgba(7, 17, 31, 0.6); }
.mw-truststrip-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px 34px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.mw-truststrip-list li { font-size: 0.9rem; font-weight: 500; color: var(--mw-muted); letter-spacing: 0.02em; }

/* ------------------------------------------------------------------------
   Industry double marquee
   ------------------------------------------------------------------------ */

.mw-industries { padding-block: 12px; overflow: hidden; }
.mw-industries-title { display: block; text-align: center; color: var(--mw-muted); margin-bottom: 30px; }

.mw-marquee {
	display: flex;
	gap: 14px;
	overflow: hidden;
	padding-block: 8px;
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.mw-marquee-track {
	display: flex;
	gap: 14px;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-shrink: 0;
	min-width: 100%;
	justify-content: space-around;
	animation: mw-marquee-left 46s linear infinite;
}
.mw-marquee--right .mw-marquee-track { animation-name: mw-marquee-right; animation-duration: 52s; }
.mw-marquee:hover .mw-marquee-track { animation-play-state: paused; }

@keyframes mw-marquee-left {
	from { transform: translateX(0); }
	to   { transform: translateX(calc(-100% - 14px)); }
}
@keyframes mw-marquee-right {
	from { transform: translateX(calc(-100% - 14px)); }
	to   { transform: translateX(0); }
}

.mw-chip {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	white-space: nowrap;
	background: rgba(15, 29, 52, 0.66);
	border: 1px solid var(--mw-border);
	border-radius: 999px;
	padding: 11px 20px;
	font-size: 0.93rem;
	font-weight: 500;
	color: var(--mw-text);
	transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.mw-chip:hover { border-color: var(--mw-accent); box-shadow: var(--mw-glow); transform: translateY(-2px); }
.mw-chip-emoji { font-size: 1.05rem; }

/* ------------------------------------------------------------------------
   Problem / What-we-handle / Services grids
   ------------------------------------------------------------------------ */

.mw-problem-grid,
.mw-handle-grid,
.mw-services-grid {
	display: grid;
	gap: 22px;
}
.mw-problem-grid { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.mw-handle-grid { grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); }
.mw-services-grid { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }

.mw-problem-card,
.mw-handle-card,
.mw-service-card {
	padding: 30px 26px;
	transition: transform 0.3s var(--mw-ease), border-color 0.3s, box-shadow 0.3s;
}
.mw-problem-card:hover,
.mw-handle-card:hover,
.mw-service-card:hover {
	transform: translateY(-5px);
	border-color: var(--mw-border-strong);
	box-shadow: var(--mw-shadow), var(--mw-glow);
}

.mw-problem-icon,
.mw-handle-card > span,
.mw-service-card > span,
.mw-contact-card > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px; height: 52px;
	font-size: 1.45rem;
	background: rgba(69, 199, 255, 0.09);
	border: 1px solid var(--mw-border);
	border-radius: 15px;
	margin-bottom: 18px;
}

.mw-problem-card h3, .mw-handle-card h3 { font-size: 1.06rem; }
.mw-problem-card p, .mw-handle-card p { color: var(--mw-muted); font-size: 0.92rem; margin: 0; }

.mw-service-card h2 { font-size: 1.28rem; }
.mw-service-card p { color: var(--mw-muted); font-size: 0.96rem; margin: 0; }

/* ------------------------------------------------------------------------
   Work grid
   ------------------------------------------------------------------------ */

.mw-work-filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-bottom: 40px;
}
.mw-filter {
	background: rgba(15, 29, 52, 0.66);
	border: 1px solid var(--mw-border);
	color: var(--mw-text);
	border-radius: 999px;
	padding: 10px 22px;
	font-size: 0.9rem;
	font-weight: 500;
	font-family: var(--mw-font-body);
	cursor: pointer;
	transition: border-color 0.25s, background 0.25s, color 0.25s;
}
.mw-filter:hover { border-color: var(--mw-accent); }
.mw-filter.is-active {
	background: linear-gradient(120deg, rgba(69, 199, 255, 0.22), rgba(139, 220, 255, 0.12));
	border-color: var(--mw-accent);
	color: var(--mw-accent-2);
}

.mw-work-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 26px;
}

.mw-work-card { overflow: hidden; display: flex; flex-direction: column; transition: transform 0.3s var(--mw-ease), border-color 0.3s, box-shadow 0.3s; }
.mw-work-card:hover { transform: translateY(-6px); border-color: var(--mw-border-strong); box-shadow: var(--mw-shadow), var(--mw-glow); }
.mw-work-card.is-hidden { display: none; }

.mw-work-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: linear-gradient(140deg, #0d1c33, #123152); }
.mw-work-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s var(--mw-ease); }
.mw-work-card:hover .mw-work-media img { transform: scale(1.045); }

.mw-work-placeholder {
	position: absolute; inset: 0;
	display: flex; align-items: center; justify-content: center;
	background:
		radial-gradient(circle at 30% 25%, rgba(69, 199, 255, 0.22), transparent 55%),
		linear-gradient(140deg, #0d1c33, #10294a);
}
.mw-work-placeholder span {
	font-family: var(--mw-font-head);
	font-size: 3.4rem;
	font-weight: 800;
	color: rgba(139, 220, 255, 0.34);
}

.mw-work-industry {
	position: absolute;
	top: 14px; left: 14px;
	background: rgba(5, 9, 20, 0.78);
	backdrop-filter: blur(8px);
	border: 1px solid var(--mw-border);
	border-radius: 999px;
	padding: 6px 14px;
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--mw-accent-2);
	letter-spacing: 0.04em;
}

.mw-work-body { padding: 26px 26px 28px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.mw-work-title { font-size: 1.22rem; margin: 0; }
.mw-work-blurb { color: var(--mw-muted); font-size: 0.95rem; margin: 0; }

.mw-work-delivered { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.mw-work-delivered li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--mw-text); }

.mw-work-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.mw-work-cta {
	margin-top: auto;
	font-family: var(--mw-font-head);
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--mw-accent);
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: gap 0.25s var(--mw-ease);
}
.mw-work-cta:hover { gap: 13px; }

/* ------------------------------------------------------------------------
   Pricing
   ------------------------------------------------------------------------ */

.mw-pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
	gap: 28px;
	max-width: 900px;
	margin-inline: auto;
	align-items: start;
}

.mw-price-card { padding: 40px 34px; position: relative; display: flex; flex-direction: column; gap: 6px; }

.mw-price-card--featured {
	border-color: var(--mw-border-strong);
	background:
		linear-gradient(175deg, rgba(69, 199, 255, 0.10) 0%, rgba(15, 29, 52, 0.85) 34%),
		var(--mw-card);
	box-shadow: var(--mw-shadow), 0 0 60px -10px rgba(69, 199, 255, 0.28);
}

.mw-price-badge {
	position: absolute;
	top: 22px; right: 24px;
	background: linear-gradient(120deg, var(--mw-gold), #ffe89a);
	color: #211a02;
	font-family: var(--mw-font-head);
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border-radius: 999px;
	padding: 7px 14px;
}

.mw-price-name { font-size: 1.35rem; margin-bottom: 2px; }

.mw-price-amount {
	font-family: var(--mw-font-head);
	font-size: clamp(3rem, 5vw, 3.8rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1;
	margin: 8px 0 10px;
}
.mw-price-amount sup { font-size: 0.45em; font-weight: 700; vertical-align: super; margin-right: 2px; color: var(--mw-accent-2); }
.mw-price-per { font-size: 0.32em; font-weight: 500; color: var(--mw-muted); letter-spacing: 0; margin-left: 8px; }

.mw-price-desc { color: var(--mw-muted); font-size: 0.98rem; }

.mw-price-features {
	list-style: none;
	margin: 18px 0 26px;
	padding: 22px 20px;
	background: rgba(5, 9, 20, 0.42);
	border: 1px solid rgba(90, 190, 255, 0.10);
	border-radius: 16px;
	display: grid;
	gap: 11px;
}
.mw-price-features li { display: flex; align-items: center; gap: 11px; font-size: 0.94rem; }

.mw-price-note { color: var(--mw-muted); font-size: 0.84rem; margin: -12px 0 18px; }

.mw-check { width: 19px; height: 19px; flex-shrink: 0; }
.mw-check circle { fill: rgba(69, 199, 255, 0.16); }
.mw-check .mw-check-tick { stroke: var(--mw-accent); stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; }

.mw-pricing-allplans {
	max-width: 900px;
	margin: 26px auto 0;
	padding: 26px 32px;
	border-radius: 16px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px 44px;
}
.mw-pricing-allplans-label {
	font-family: var(--mw-font-head);
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--mw-text);
	margin: 0;
}
.mw-pricing-allplans-list {
	list-style: none;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px 36px;
	margin: 0;
	padding: 0;
	flex: 1;
	min-width: 280px;
}
.mw-pricing-allplans-list li { color: var(--mw-muted); font-size: 0.95rem; }

/* Reference-style layout: heading rail on the left, cards on the right,
   "all plans include" bar spanning the full width below. */
.mw-pricing--rail {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.7fr);
	gap: clamp(28px, 3vw, 44px) clamp(32px, 4.5vw, 64px);
	align-items: start;
}
@media (max-width: 980px) { .mw-pricing--rail { grid-template-columns: 1fr; } }
.mw-pricing--rail .mw-compare { grid-column: 1 / -1; }
.mw-pricing-side-title { font-size: clamp(2.1rem, 3.4vw, 2.9rem); line-height: 1.12; }
.mw-pricing-side-copy { color: var(--mw-muted); font-size: 1.02rem; max-width: 400px; }
.mw-pricing-need {
	margin-top: clamp(28px, 4vw, 48px);
	padding: 30px 28px;
	border-radius: var(--mw-radius);
}
.mw-pricing-need h3 { font-size: 1.2rem; margin-bottom: 8px; }
.mw-pricing-need p { color: var(--mw-muted); font-size: 0.94rem; margin-bottom: 20px; }
.mw-pricing--rail .mw-pricing-grid { max-width: none; margin-inline: 0; }
.mw-pricing--rail .mw-pricing-allplans { grid-column: 1 / -1; max-width: none; margin: 0; }

/* Comparison table */
.mw-compare { margin-top: clamp(48px, 6vw, 80px); }
.mw-compare-title { text-align: center; margin-bottom: 30px; }
.mw-compare-scroll { overflow-x: auto; border-radius: var(--mw-radius); border: 1px solid var(--mw-border); background: var(--mw-card); backdrop-filter: blur(16px); }
.mw-compare-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.mw-compare-table th,
.mw-compare-table td { padding: 15px 22px; text-align: left; border-bottom: 1px solid rgba(90, 190, 255, 0.09); font-size: 0.93rem; }
.mw-compare-table thead th { font-family: var(--mw-font-head); font-size: 0.95rem; color: var(--mw-accent-2); background: rgba(5, 9, 20, 0.5); }
.mw-compare-table tbody th { font-weight: 500; color: var(--mw-text); }
.mw-compare-table td { text-align: center; }
.mw-compare-table tbody tr:last-child th,
.mw-compare-table tbody tr:last-child td { border-bottom: none; }
.mw-yes { color: var(--mw-accent); font-weight: 700; }
.mw-no { color: rgba(148, 163, 184, 0.5); }

/* Included / not included */
.mw-included-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }
.mw-included-card { padding: 34px 32px; }
.mw-included-card h2 { font-size: 1.3rem; margin-bottom: 18px; }

.mw-list-check, .mw-list-dash { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.mw-list-check li, .mw-list-dash li { padding-left: 30px; position: relative; font-size: 0.95rem; color: var(--mw-muted); }
.mw-list-check li::before { content: "✓"; position: absolute; left: 0; color: var(--mw-accent); font-weight: 700; }
.mw-list-dash li::before { content: "—"; position: absolute; left: 0; color: rgba(148, 163, 184, 0.6); }

.mw-disclaimer { margin-top: 26px; padding: 24px 30px; border-radius: 16px; }
.mw-disclaimer p { margin: 0; color: var(--mw-muted); font-size: 0.94rem; }
.mw-disclaimer strong { color: var(--mw-text); }

/* ------------------------------------------------------------------------
   Reviews
   ------------------------------------------------------------------------ */

.mw-stars { display: inline-flex; gap: 3px; }
.mw-star { width: 18px; height: 18px; fill: var(--mw-gold); filter: drop-shadow(0 0 6px rgba(255, 216, 77, 0.35)); }

.mw-review-summary {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: clamp(28px, 4vw, 60px);
	align-items: center;
	padding: 36px 42px;
	margin-bottom: 40px;
}
@media (max-width: 900px) {
	.mw-review-summary { grid-template-columns: 1fr; text-align: center; }
	.mw-review-summary-score { align-items: center; }
	.mw-review-tags { justify-content: center; }
}

.mw-review-summary-score { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.mw-review-average {
	font-family: var(--mw-font-head);
	font-size: 4.4rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.03em;
}
.mw-review-count { color: var(--mw-muted); font-size: 0.9rem; }

.mw-review-summary-bars { display: grid; gap: 9px; min-width: 0; }
.mw-bar-row { display: grid; grid-template-columns: 34px 1fr 44px; align-items: center; gap: 12px; font-size: 0.84rem; color: var(--mw-muted); }
.mw-bar-track { height: 7px; background: rgba(5, 9, 20, 0.65); border-radius: 999px; overflow: hidden; }
.mw-bar-fill {
	display: block;
	height: 100%;
	width: var(--mw-bar, 0%);
	border-radius: 999px;
	background: linear-gradient(90deg, var(--mw-gold), #ffe89a);
	box-shadow: 0 0 10px rgba(255, 216, 77, 0.4);
}
.mw-bar-pct { text-align: right; }

.mw-review-tags-title {
	font-family: var(--mw-font-head);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--mw-muted);
	margin-bottom: 12px;
}
.mw-review-tags { display: flex; flex-wrap: wrap; gap: 9px; max-width: 300px; }

.mw-tag {
	display: inline-block;
	background: rgba(69, 199, 255, 0.09);
	border: 1px solid var(--mw-border);
	color: var(--mw-accent-2);
	border-radius: 999px;
	padding: 6px 14px;
	font-size: 0.8rem;
	font-weight: 500;
}
.mw-tag--soft { background: rgba(15, 29, 52, 0.6); color: var(--mw-muted); }

.mw-review-grid { columns: 3 300px; column-gap: 24px; }
.mw-review-card {
	display: inline-block;
	width: 100%;
	margin-bottom: 24px;
	padding: 28px 28px 24px;
	break-inside: avoid;
	transition: transform 0.3s var(--mw-ease), border-color 0.3s, box-shadow 0.3s;
}
.mw-review-card:hover { transform: translateY(-4px); border-color: var(--mw-border-strong); box-shadow: var(--mw-shadow), var(--mw-glow); }

.mw-verified {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--mw-accent);
	margin: 0 0 12px;
}
.mw-review-text { margin: 14px 0 18px; font-size: 0.96rem; color: var(--mw-text); }
.mw-review-text p { margin: 0 0 0.6em; }
.mw-review-text p:last-child { margin-bottom: 0; }

.mw-review-meta { display: flex; align-items: center; gap: 14px; }
.mw-avatar {
	--mw-avatar: var(--mw-accent);
	width: 46px; height: 46px;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-family: var(--mw-font-head);
	font-size: 0.86rem;
	font-weight: 700;
	color: var(--mw-text);
	background: color-mix(in srgb, var(--mw-avatar) 22%, transparent);
	border: 1.5px solid var(--mw-avatar);
}
.mw-review-who { display: flex; flex-direction: column; line-height: 1.4; }
.mw-review-who strong { font-size: 0.94rem; }
.mw-review-byline { color: var(--mw-muted); font-size: 0.83rem; }
.mw-review-date { color: rgba(148, 163, 184, 0.65); font-size: 0.78rem; margin-top: 2px; }

/* ------------------------------------------------------------------------
   FAQs
   ------------------------------------------------------------------------ */

.mw-faqs { display: grid; gap: 14px; }
.mw-faq { overflow: hidden; transition: border-color 0.3s; }
.mw-faq:has(.mw-faq-toggle[aria-expanded="true"]) { border-color: var(--mw-border-strong); }

.mw-faq-q { margin: 0; font-size: 1rem; }
.mw-faq-toggle {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	background: none;
	border: none;
	color: var(--mw-text);
	font-family: var(--mw-font-head);
	font-size: 1.02rem;
	font-weight: 600;
	text-align: left;
	padding: 22px 26px;
	cursor: pointer;
}
.mw-faq-icon {
	position: relative;
	width: 22px; height: 22px;
	flex-shrink: 0;
	border: 1px solid var(--mw-border-strong);
	border-radius: 50%;
}
.mw-faq-icon::before,
.mw-faq-icon::after {
	content: "";
	position: absolute;
	top: 50%; left: 50%;
	width: 10px; height: 2px;
	background: var(--mw-accent);
	transform: translate(-50%, -50%);
	transition: transform 0.3s var(--mw-ease);
}
.mw-faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.mw-faq-toggle[aria-expanded="true"] .mw-faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }

.mw-faq-a { padding: 0 26px 24px; color: var(--mw-muted); font-size: 0.97rem; }
.mw-faq-a p:last-child { margin-bottom: 0; }

/* ------------------------------------------------------------------------
   Forms
   ------------------------------------------------------------------------ */

.mw-form-card {
	background: var(--mw-card);
	border: 1px solid var(--mw-border);
	border-radius: var(--mw-radius-lg);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	box-shadow: var(--mw-shadow);
	padding: clamp(28px, 4vw, 42px);
}

.mw-form-title { font-size: 1.4rem; margin-bottom: 6px; }
.mw-form-intro { color: var(--mw-muted); font-size: 0.94rem; margin-bottom: 24px; }

.mw-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.mw-field--wide { grid-column: 1 / -1; }
@media (max-width: 560px) { .mw-form-grid { grid-template-columns: 1fr; } }
/* The compact (hero/sidebar) variant always stacks — it lives in narrow
   columns where two-up fields cram the labels. */
.mw-form-card--compact .mw-form-grid { grid-template-columns: 1fr; gap: 12px; }

.mw-form-card--compact .mw-form-grid { gap: 12px; }
.mw-form-card--compact .mw-form-title { font-size: 1.2rem; }

.mw-field { position: relative; }
.mw-field input,
.mw-field select,
.mw-field textarea {
	width: 100%;
	box-sizing: border-box;
	background: rgba(5, 9, 20, 0.55);
	border: 1px solid rgba(90, 190, 255, 0.16);
	border-radius: 13px;
	color: var(--mw-text);
	font-family: var(--mw-font-body);
	font-size: 0.95rem;
	padding: 22px 16px 10px;
	transition: border-color 0.25s, box-shadow 0.25s;
	appearance: none;
	-webkit-appearance: none;
}
.mw-field textarea { resize: vertical; min-height: 74px; }
.mw-field input:focus,
.mw-field select:focus,
.mw-field textarea:focus {
	outline: none;
	border-color: var(--mw-accent);
	box-shadow: 0 0 0 3px rgba(69, 199, 255, 0.16);
}

.mw-field label {
	position: absolute;
	left: 16px;
	top: 16px;
	max-width: calc(100% - 34px);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: var(--mw-muted);
	font-size: 0.93rem;
	pointer-events: none;
	transition: top 0.2s var(--mw-ease), font-size 0.2s var(--mw-ease), color 0.2s;
}

.mw-field input:focus + label,
.mw-field input:not(:placeholder-shown) + label,
.mw-field textarea:focus + label,
.mw-field textarea:not(:placeholder-shown) + label,
.mw-field--select label {
	top: 7px;
	font-size: 0.72rem;
	letter-spacing: 0.04em;
	color: var(--mw-accent-2);
}

.mw-field--select::after {
	content: "";
	position: absolute;
	right: 17px; top: 50%;
	width: 8px; height: 8px;
	border-right: 2px solid var(--mw-muted);
	border-bottom: 2px solid var(--mw-muted);
	transform: translateY(-70%) rotate(45deg);
	pointer-events: none;
}
.mw-field select { color: var(--mw-text); }
.mw-field select option { background: var(--mw-card-solid); color: var(--mw-text); }

/* Honeypot — visually removed, still in DOM for bots */
.mw-hp-wrap {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
}

.mw-form-note { text-align: center; color: rgba(148, 163, 184, 0.75); font-size: 0.8rem; margin: 14px 0 0; }
.mw-form-error { color: #ff9b9b; font-size: 0.88rem; text-align: center; margin: 12px 0 0; }

.mw-form-success { text-align: center; padding: 34px 10px 22px; }
.mw-form-success-icon { display: inline-flex; margin-bottom: 14px; }
.mw-form-success-icon .mw-check { width: 54px; height: 54px; }
.mw-form-success h4 { font-size: 1.4rem; margin-bottom: 6px; }
.mw-form-success p { color: var(--mw-muted); margin: 0; }

/* ------------------------------------------------------------------------
   Steps (How It Works)
   ------------------------------------------------------------------------ */

.mw-steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; counter-reset: mw-step; }
.mw-step { display: flex; gap: 24px; align-items: flex-start; padding: 30px 32px; transition: transform 0.3s var(--mw-ease), border-color 0.3s, box-shadow 0.3s; }
.mw-step:hover { transform: translateY(-4px); border-color: var(--mw-border-strong); box-shadow: var(--mw-shadow), var(--mw-glow); }
.mw-step-num {
	flex-shrink: 0;
	width: 52px; height: 52px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--mw-font-head);
	font-size: 1.3rem;
	font-weight: 800;
	color: #04101e;
	background: linear-gradient(120deg, var(--mw-accent), var(--mw-accent-2));
	border-radius: 16px;
	box-shadow: 0 10px 26px -10px rgba(69, 199, 255, 0.6);
}
.mw-step h2 { font-size: 1.24rem; margin-bottom: 6px; }
.mw-step p { color: var(--mw-muted); margin: 0; font-size: 0.97rem; }

/* ------------------------------------------------------------------------
   Growth Audit
   ------------------------------------------------------------------------ */

.mw-audit { padding: clamp(30px, 4vw, 46px); border-radius: var(--mw-radius-lg); position: relative; }

.mw-audit-progress { height: 6px; background: rgba(5, 9, 20, 0.65); border-radius: 999px; overflow: hidden; margin-bottom: 14px; }
.mw-audit-progress-fill {
	display: block;
	height: 100%;
	width: 14%;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--mw-accent), var(--mw-accent-2));
	box-shadow: 0 0 12px rgba(69, 199, 255, 0.5);
	transition: width 0.45s var(--mw-ease);
}
.mw-audit-stepcount { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mw-muted); margin-bottom: 26px; }

.mw-audit-step { border: none; margin: 0; padding: 0; }
.mw-audit-q {
	font-family: var(--mw-font-head);
	font-size: clamp(1.25rem, 2.4vw, 1.6rem);
	font-weight: 700;
	line-height: 1.3;
	padding: 0;
	margin-bottom: 26px;
	color: var(--mw-text);
}

.mw-audit-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 12px; }
.mw-audit-option {
	background: rgba(5, 9, 20, 0.5);
	border: 1px solid rgba(90, 190, 255, 0.16);
	color: var(--mw-text);
	border-radius: 14px;
	padding: 17px 18px;
	font-family: var(--mw-font-body);
	font-size: 0.95rem;
	font-weight: 500;
	text-align: left;
	cursor: pointer;
	transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.mw-audit-option:hover {
	border-color: var(--mw-accent);
	background: rgba(69, 199, 255, 0.09);
	transform: translateY(-2px);
}

.mw-audit-number { display: flex; gap: 14px; align-items: stretch; max-width: 460px; }
.mw-audit-number .mw-field { flex: 1; }

.mw-audit-back {
	margin-top: 26px;
	background: none;
	border: none;
	color: var(--mw-muted);
	font-family: var(--mw-font-body);
	font-size: 0.88rem;
	cursor: pointer;
	padding: 6px 4px;
}
.mw-audit-back:hover { color: var(--mw-accent-2); }

.mw-audit-result-title { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.mw-audit-result-copy { color: var(--mw-muted); max-width: 620px; }

.mw-audit-result-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; margin: 28px 0; }
.mw-audit-result-card {
	background: rgba(5, 9, 20, 0.5);
	border: 1px solid var(--mw-border);
	border-radius: 16px;
	padding: 26px 24px;
}
.mw-audit-result-card h4 { font-size: 0.98rem; color: var(--mw-accent-2); margin-bottom: 10px; }
.mw-audit-result-card p { font-size: 0.9rem; color: var(--mw-muted); margin: 0; }
.mw-audit-range {
	font-family: var(--mw-font-head);
	font-size: 1.5rem !important;
	font-weight: 800;
	color: var(--mw-text) !important;
	margin-bottom: 10px !important;
}

.mw-audit-disclaimer { font-size: 0.82rem; color: rgba(148, 163, 184, 0.8); }
.mw-audit-result-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 22px; }
.mw-audit-sent { color: var(--mw-accent-2); font-size: 0.9rem; margin-top: 18px; }

/* ------------------------------------------------------------------------
   Final CTA + misc sections
   ------------------------------------------------------------------------ */

.mw-finalcta {
	background:
		radial-gradient(720px 420px at 50% 0%, rgba(69, 199, 255, 0.12), transparent 65%),
		linear-gradient(180deg, transparent, rgba(11, 22, 40, 0.8));
}
.mw-finalcta-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(40px, 6vw, 80px);
	align-items: center;
}
@media (max-width: 900px) { .mw-finalcta-grid { grid-template-columns: 1fr; } }
.mw-finalcta-copy p { color: var(--mw-muted); font-size: 1.05rem; }

.mw-minitrust { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; margin: 22px 0 0; padding: 0; }
.mw-minitrust li {
	font-size: 0.82rem;
	font-weight: 500;
	background: rgba(69, 199, 255, 0.07);
	border: 1px solid var(--mw-border);
	border-radius: 999px;
	padding: 7px 15px;
	color: var(--mw-accent-2);
}
.mw-minitrust--center { justify-content: center; }

/* Contact page */
.mw-contact-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: 30px; align-items: start; }
@media (max-width: 900px) { .mw-contact-grid { grid-template-columns: 1fr; } }
.mw-contact-side { display: grid; gap: 18px; }
.mw-contact-card { padding: 26px 26px; }
.mw-contact-card h2 { font-size: 1.05rem; margin-bottom: 6px; }
.mw-contact-card p { color: var(--mw-muted); font-size: 0.92rem; margin: 0; }

/* Prose (privacy/terms) */
.mw-prose h2 { font-size: 1.35rem; margin-top: 2em; }
.mw-prose h2:first-child { margin-top: 0; }
.mw-prose p { color: var(--mw-muted); }

/* ------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------ */

.mw-footer {
	margin-top: clamp(20px, 3vw, 40px);
	padding: clamp(60px, 8vw, 100px) 0 36px;
	background:
		radial-gradient(760px 380px at 18% 0%, rgba(69, 199, 255, 0.10), transparent 60%),
		linear-gradient(180deg, rgba(11, 22, 40, 0.4), #04070f 70%);
	border-top: 1px solid rgba(90, 190, 255, 0.14);
	position: relative;
	z-index: 1;
}

.mw-footer-top {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr) minmax(0, 0.8fr);
	gap: clamp(36px, 5vw, 70px);
	margin-bottom: 52px;
}
@media (max-width: 860px) { .mw-footer-top { grid-template-columns: 1fr; } }

.mw-footer-logo { width: 170px; height: auto; margin-bottom: 22px; }
.mw-footer-headline { font-size: clamp(1.4rem, 2.6vw, 1.9rem); max-width: 420px; }
.mw-footer-copy { color: var(--mw-muted); font-size: 0.96rem; max-width: 420px; margin-bottom: 26px; }

.mw-footer h3 {
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--mw-muted);
	margin-bottom: 18px;
}

.mw-footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.mw-footer-links a { color: var(--mw-text); font-size: 0.94rem; }
.mw-footer-links a:hover { color: var(--mw-accent); }

.mw-footer-contact p { color: var(--mw-muted); font-size: 0.94rem; margin-bottom: 10px; }
.mw-footer-tag { font-style: italic; color: rgba(148, 163, 184, 0.7); }

.mw-footer-trust {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px 32px;
	list-style: none;
	margin: 0 0 34px;
	padding: 24px 0;
	border-block: 1px solid rgba(90, 190, 255, 0.10);
}
.mw-footer-trust li { color: var(--mw-muted); font-size: 0.86rem; font-weight: 500; }

.mw-footer-bottom { text-align: center; }
.mw-footer-bottom p { color: rgba(148, 163, 184, 0.6); font-size: 0.82rem; margin: 0; }

/* ------------------------------------------------------------------------
   Reveal animations & reduced motion
   ------------------------------------------------------------------------ */

.mw-reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--mw-ease), transform 0.7s var(--mw-ease); }
.mw-reveal.is-visible { opacity: 1; transform: none; }

/* Progressive enhancement: if JS never runs, everything stays visible */
body.missionweb-site:not(.mw-js) .mw-reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	.mw-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
	.mw-marquee-track { animation: none !important; flex-wrap: wrap; justify-content: center; min-width: 0; }
	.mw-marquee ul[aria-hidden="true"] { display: none; }
	.mw-orb--3 { animation: none !important; }
	body.missionweb-site * { scroll-behavior: auto !important; }
	#mw-starfield { display: none; }
}

/* ------------------------------------------------------------------------
   Theme/kit hardening — Elementor global styles target bare <button> and
   would otherwise repaint our controls (e.g. kit accent on focused audit
   options). Re-assert our button surfaces at winning specificity.
   ------------------------------------------------------------------------ */

body.missionweb-site .mw-audit-option,
body.missionweb-site .mw-audit-option:focus,
body.missionweb-site .mw-audit-option:focus-visible {
	background: rgba(5, 9, 20, 0.5) !important;
	color: var(--mw-text) !important;
	border: 1px solid rgba(90, 190, 255, 0.16) !important;
}
body.missionweb-site .mw-audit-option:hover {
	background: rgba(69, 199, 255, 0.09) !important;
	color: var(--mw-text) !important;
	border-color: var(--mw-accent) !important;
}
/* Theme/kit button styles can force nowrap or fixed heights — long audit
   answers must wrap inside their pill. */
body.missionweb-site .mw-audit-option {
	white-space: normal !important;
	height: auto !important;
	min-height: 0 !important;
	line-height: 1.45 !important;
	text-align: left !important;
	overflow-wrap: break-word;
	min-width: 0;
}

body.missionweb-site .mw-faq-toggle,
body.missionweb-site .mw-faq-toggle:hover,
body.missionweb-site .mw-faq-toggle:focus,
body.missionweb-site .mw-audit-back,
body.missionweb-site .mw-audit-back:hover,
body.missionweb-site .mw-audit-back:focus {
	background: transparent !important;
	border: none !important;
}
body.missionweb-site .mw-faq-toggle { color: var(--mw-text) !important; }

body.missionweb-site .mw-filter,
body.missionweb-site .mw-filter:focus {
	background: rgba(15, 29, 52, 0.66) !important;
	color: var(--mw-text) !important;
	border: 1px solid var(--mw-border) !important;
}
body.missionweb-site .mw-filter:hover { border-color: var(--mw-accent) !important; }
body.missionweb-site .mw-filter.is-active {
	background: linear-gradient(120deg, rgba(69, 199, 255, 0.22), rgba(139, 220, 255, 0.12)) !important;
	border-color: var(--mw-accent) !important;
	color: var(--mw-accent-2) !important;
}

body.missionweb-site button.mw-btn--primary,
body.missionweb-site button.mw-btn--primary:hover,
body.missionweb-site button.mw-btn--primary:focus {
	background: linear-gradient(120deg, #2eb6f5 0%, var(--mw-accent) 45%, var(--mw-accent-2) 100%) !important;
	color: #04101e !important;
	border-color: transparent !important;
}
body.missionweb-site .mw-nav-toggle,
body.missionweb-site .mw-nav-toggle:hover,
body.missionweb-site .mw-nav-toggle:focus {
	background: rgba(69, 199, 255, 0.07) !important;
	border: 1px solid var(--mw-border) !important;
}

/* ------------------------------------------------------------------------
   Elementor document layouts (native widgets styled by the design system)
   ------------------------------------------------------------------------ */

/* Section rhythm: heading blocks, body blocks, and card rows compose one
   visual section. */
body.missionweb-site .mw-els { padding-block: var(--mw-section-pad); }
body.missionweb-site .mw-els-head { padding-top: var(--mw-section-pad); padding-bottom: clamp(22px, 3vw, 36px); }
body.missionweb-site .mw-els-body { padding-bottom: var(--mw-section-pad); }
body.missionweb-site .mw-els-row { padding-bottom: 0; }
body.missionweb-site .mw-el-alt { background: rgba(11, 22, 40, 0.55); }
/* Single-section alt band with its own fade (used when a shortcode brings
   its own heading, e.g. the pricing section). */
body.missionweb-site .mw-el-altfade { background: linear-gradient(180deg, transparent, rgba(11, 22, 40, 0.66) 18%, rgba(11, 22, 40, 0.66) 82%, transparent); }
/* Soften the band edges: the first/last section of an alt group fades. */
body.missionweb-site .mw-els-head.mw-el-alt { background: linear-gradient(180deg, transparent, rgba(11, 22, 40, 0.55) 72%); }
body.missionweb-site .mw-els-body.mw-el-alt { background: linear-gradient(180deg, rgba(11, 22, 40, 0.55), rgba(11, 22, 40, 0.55) 34%, transparent); }
body.missionweb-site .mw-els-body.mw-els-industries { padding-top: clamp(20px, 2.6vw, 34px); padding-bottom: clamp(28px, 3.6vw, 48px); }

/* Section heads read like the original: centered, narrow measure. */
.mw-els-head .elementor-container { max-width: 820px; }
.mw-els-head .elementor-widget:not(:last-child) { margin-bottom: 14px; }
.mw-els-head .mw-eyebrow { margin-bottom: 0; }
.mw-els-head .mw-section-sub { margin-top: 0; }

.mw-el-narrow .elementor-container { max-width: 860px; }
.mw-el-subwrap { max-width: 760px; margin-inline: auto; }

/* Hero (Elementor variant) */
body.missionweb-site .mw-el-hero {
	padding-top: clamp(112px, 13vw, 150px);
	padding-bottom: clamp(48px, 6vw, 84px);
	overflow: hidden;
}
body.missionweb-site .mw-el-hero::before {
	content: "";
	position: absolute;
	top: -120px; right: -80px;
	width: 420px; height: 420px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(69, 199, 255, 0.35), transparent 70%);
	filter: blur(70px);
	opacity: 0.5;
	pointer-events: none;
}
body.missionweb-site .mw-el-hero::after {
	content: "";
	position: absolute;
	bottom: -140px; left: -110px;
	width: 360px; height: 360px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(59, 130, 246, 0.32), transparent 70%);
	filter: blur(70px);
	opacity: 0.5;
	pointer-events: none;
}
/* Hero rhythm: match the hand-built layout, not Elementor's default 20px
   widget stacking. Columns center vertically against the tall form card. */
.mw-el-hero .elementor-container { align-items: center; }
/* The 50/50 split gives the headline a narrower measure — scale it so
   "Ultra-Premium Websites for Less" breaks cleanly over two lines. */
body.missionweb-site .mw-el-hero h1.elementor-heading-title,
body.missionweb-site .mw-hero-copy h1 { font-size: clamp(2.2rem, 3.9vw, 3.4rem); }
.mw-el-hero .elementor-widget:not(:last-child) { margin-bottom: 20px; }
.mw-el-hero .mw-hero-badge { margin-bottom: 0; }
.mw-el-hero .mw-hero-sub { margin-top: 0; }
.mw-el-hero .mw-hero-badges { margin-top: 8px; }

.mw-el-heroform { position: relative; }
.mw-el-heroform .mw-form-card { border-top-left-radius: 0; border-top-right-radius: 0; }
.mw-el-heroform .elementor-widget:has(.mw-hero-browser) { margin-bottom: 0; }

/* Inner-page hero (Elementor variant) */
body.missionweb-site .mw-el-pagehero {
	padding-top: clamp(118px, 14vw, 165px);
	padding-bottom: clamp(14px, 2vw, 26px);
	text-align: center;
	overflow: hidden;
}
.mw-el-pagehero .elementor-container { max-width: 880px; }
.mw-el-pagehero .elementor-widget:not(:last-child) { margin-bottom: 16px; }
.mw-el-pagehero .mw-eyebrow { margin-bottom: 0; }
body.missionweb-site .mw-el-pagehero .mw-pagehero-sub { font-size: 1.14rem; color: var(--mw-muted); margin-top: 0; }
.mw-el-pagehero .mw-elbtn--inline { margin-right: 7px; margin-left: 7px; }

/* Elementor base-style guards */
body.missionweb-site .elementor-heading-title { color: var(--mw-text); font-family: var(--mw-font-head); line-height: 1.16; letter-spacing: -0.02em; }
body.missionweb-site .elementor-widget-text-editor { font-family: var(--mw-font-body); }
body.missionweb-site .elementor-widget-text-editor p:last-child { margin-bottom: 0; }

/* Card columns — the column's widget-wrap is the glass card. Elementor's
   column padding lands INSIDE that card, so gutters must come from margin
   on the card box itself (14px each side = 28px gaps, matching the
   original grids). Interior padding needs !important to beat the
   .elementor-column-gap-* padding rules. */
.mw-elcard > .elementor-widget-wrap {
	background: var(--mw-card);
	border: 1px solid var(--mw-border);
	border-radius: var(--mw-radius);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	box-shadow: var(--mw-shadow);
	margin: 14px;
	width: calc(100% - 28px); /* wrap is width:100% — make room for the margins */
	padding: 30px 26px !important;
	transition: transform 0.3s var(--mw-ease), border-color 0.3s, box-shadow 0.3s;
}
.mw-elcard > .elementor-widget-wrap:hover {
	transform: translateY(-4px);
	border-color: var(--mw-border-strong);
	box-shadow: var(--mw-shadow), var(--mw-glow);
}
.mw-elcard .elementor-widget:not(:last-child) { margin-bottom: 10px; }
.mw-elcard .elementor-widget-text-editor { color: var(--mw-muted); }
.mw-elcard .mw-elicon { margin-bottom: 6px; }
.mw-elcard--sm .elementor-heading-title { font-size: 1.06rem; }
.mw-elcard--sm .elementor-widget-text-editor { font-size: 0.92rem; }
.mw-elcard--xs .elementor-heading-title { font-size: 1rem; }
.mw-elcard--xs .elementor-widget-text-editor { font-size: 0.88rem; }
.mw-elcard--service .elementor-heading-title { font-size: 1.2rem; }
.mw-elcard--service .elementor-widget-text-editor { font-size: 0.95rem; }
.mw-elcard--lg > .elementor-widget-wrap { padding: 34px 32px !important; }

.mw-elicon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px; height: 52px;
	font-size: 1.45rem;
	background: rgba(69, 199, 255, 0.09);
	border: 1px solid var(--mw-border);
	border-radius: 15px;
}

.mw-elstep > .elementor-widget-wrap { padding: 30px 32px !important; }
.mw-elstep .mw-step-num { margin-bottom: 14px; }

/* Elementor-native buttons restyled as Mission Web buttons.
   !important throughout: the active kit's global button styles (default
   green accent) load after this sheet and would otherwise repaint them. */
body.missionweb-site .mw-elbtn .elementor-button {
	box-sizing: border-box !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 10px;
	font-family: var(--mw-font-head) !important;
	font-size: 0.98rem !important;
	font-weight: 600 !important;
	letter-spacing: 0.01em !important;
	line-height: 1 !important;
	text-transform: none !important;
	padding: 17px 30px !important;
	border-radius: 14px !important;
	border: 1px solid transparent !important;
	transition: transform 0.25s var(--mw-ease), box-shadow 0.25s var(--mw-ease), background 0.25s, border-color 0.25s;
}
body.missionweb-site .mw-elbtn--primary .elementor-button {
	background: linear-gradient(120deg, #2eb6f5 0%, var(--mw-accent) 45%, var(--mw-accent-2) 100%) !important;
	color: #04101e !important;
	box-shadow: 0 12px 34px -10px rgba(69, 199, 255, 0.55) !important;
}
body.missionweb-site .mw-elbtn--primary .elementor-button:hover,
body.missionweb-site .mw-elbtn--primary .elementor-button:focus {
	background: linear-gradient(120deg, #2eb6f5 0%, var(--mw-accent) 45%, var(--mw-accent-2) 100%) !important;
	color: #04101e !important;
	transform: translateY(-2px);
	box-shadow: 0 18px 44px -12px rgba(69, 199, 255, 0.72), var(--mw-glow) !important;
}
body.missionweb-site .mw-elbtn--ghost .elementor-button {
	background: rgba(69, 199, 255, 0.06) !important;
	color: var(--mw-text) !important;
	border-color: var(--mw-border-strong) !important;
}
body.missionweb-site .mw-elbtn--ghost .elementor-button:hover,
body.missionweb-site .mw-elbtn--ghost .elementor-button:focus {
	background: rgba(69, 199, 255, 0.12) !important;
	color: var(--mw-text) !important;
	border-color: var(--mw-accent) !important;
	transform: translateY(-2px);
	box-shadow: var(--mw-glow) !important;
}
/* Elementor widgets default to width:100%, which stacks inline buttons. */
body.missionweb-site .elementor-widget.mw-elbtn--inline {
	display: inline-block;
	width: auto;
	margin-right: 14px;
	margin-bottom: 10px !important;
	vertical-align: top;
}
.mw-elbtn--gap { margin-top: 26px; }

/* Final CTA (Elementor variant) */
.mw-finalcta-el {
	background:
		radial-gradient(720px 420px at 50% 0%, rgba(69, 199, 255, 0.12), transparent 65%),
		linear-gradient(180deg, transparent, rgba(11, 22, 40, 0.8));
}
.mw-finalcta-el .elementor-container { align-items: center; }
.mw-finalcta-el .elementor-widget:not(:last-child) { margin-bottom: 16px; }
.mw-finalcta-el .elementor-widget-text-editor { color: var(--mw-muted); font-size: 1.05rem; }
.mw-finalcta-el .mw-minitrust { margin-top: 6px; }

/* Contact-page cards are HTML widgets — the icon circle sits one level
   deeper than in the classic markup. */
.mw-contact-card span[aria-hidden="true"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px; height: 52px;
	font-size: 1.45rem;
	background: rgba(69, 199, 255, 0.09);
	border: 1px solid var(--mw-border);
	border-radius: 15px;
	margin-bottom: 18px;
}

/* Keep everything visible inside the Elementor editor */
.elementor-editor-active .mw-reveal,
.elementor-edit-area-active .mw-reveal {
	opacity: 1 !important;
	transform: none !important;
}

/* ------------------------------------------------------------------------
   Checkout
   ------------------------------------------------------------------------ */

.mw-price-reassure { text-align: center; color: var(--mw-muted); font-size: 0.82rem; margin: 12px 0 0; }

.mw-checkout-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 26px; align-items: start; }
@media (max-width: 900px) { .mw-checkout-grid { grid-template-columns: 1fr; } }
.mw-checkout-left, .mw-checkout-right { display: grid; gap: 22px; }

.mw-checkout-order, .mw-checkout-pay, .mw-checkout-guarantee, .mw-checkout-ads { padding: 32px 30px; }
.mw-checkout-order h2, .mw-checkout-pay h2 { font-size: 1.3rem; }

.mw-checkout-plan {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 14px;
	font-family: var(--mw-font-head);
	font-weight: 700;
	font-size: 1.05rem;
	background: rgba(5, 9, 20, 0.45);
	border: 1px solid rgba(90, 190, 255, 0.12);
	border-radius: 14px;
	padding: 14px 18px;
	margin: 14px 0 18px;
}
.mw-checkout-price { font-size: 1.6rem; color: var(--mw-accent-2); }
.mw-checkout-price small { font-size: 0.55em; color: var(--mw-muted); font-weight: 500; }
.mw-checkout-note { color: var(--mw-muted); font-size: 0.86rem; margin: 16px 0 0; }
.mw-checkout-subline { color: var(--mw-muted); font-size: 0.94rem; }

.mw-elpay > .elementor-widget-wrap,
.mw-checkout-pay {
	border-color: var(--mw-border-strong);
	box-shadow: var(--mw-shadow), 0 0 60px -10px rgba(69, 199, 255, 0.25);
}

.mw-checkout-trust { list-style: none; margin: 18px 0 0; padding: 14px 0 0; border-top: 1px solid rgba(90, 190, 255, 0.1); display: grid; gap: 8px; }
.mw-checkout-trust li { font-size: 0.84rem; color: var(--mw-muted); }

.mw-checkout-shield { font-size: 1.8rem; display: inline-block; margin-bottom: 8px; }
.mw-checkout-guarantee { border-color: rgba(255, 216, 77, 0.25); }
.mw-elguarantee > .elementor-widget-wrap { border-color: rgba(255, 216, 77, 0.25); }
.mw-checkout-guarantee h3 { color: var(--mw-gold); }
.mw-elguarantee .elementor-heading-title { color: var(--mw-gold); }
.mw-checkout-guarantee p, .mw-checkout-ads p { color: var(--mw-muted); font-size: 0.94rem; }

.mw-checkout-stars { display: flex; align-items: center; gap: 6px; justify-content: center; color: var(--mw-muted); font-size: 0.9rem; }
.mw-checkout-star { color: var(--mw-gold); font-size: 1.1rem; text-shadow: 0 0 10px rgba(255, 216, 77, 0.45); }

.mw-checkout-embed { margin-top: 18px; }
.mw-checkout-embed--pending {
	background: rgba(5, 9, 20, 0.45);
	border: 1px dashed rgba(90, 190, 255, 0.3);
	border-radius: 14px;
	padding: 22px 20px;
}
.mw-checkout-embed--pending p { color: var(--mw-muted); font-size: 0.92rem; }
.mw-checkout-pending-label { font-family: var(--mw-font-head); font-weight: 700; color: var(--mw-text) !important; }
.mw-checkout-adminnote { font-size: 0.78rem !important; color: rgba(255, 216, 77, 0.85) !important; margin-top: 12px !important; }
.mw-checkout-smallprint { text-align: center; color: rgba(148, 163, 184, 0.75); font-size: 0.82rem; margin-top: 26px; }

/* WP Simple Pay embeds inside the dark card */
.mw-checkout-embed .simpay-checkout-form,
.mw-checkout-embed .simpay-embedded-form-wrap {
	background: transparent;
	color: var(--mw-text);
}
.mw-checkout-embed .simpay-checkout-form label { color: var(--mw-text); }
.mw-checkout-embed .simpay-checkout-form .simpay-payment-btn,
.mw-checkout-embed .simpay-checkout-form button[type="submit"] {
	box-sizing: border-box;
	width: 100%;
	font-family: var(--mw-font-head);
	font-size: 0.98rem;
	font-weight: 600;
	line-height: 1;
	padding: 17px 30px;
	border-radius: 14px;
	border: none;
	cursor: pointer;
	background: linear-gradient(120deg, #2eb6f5 0%, var(--mw-accent) 45%, var(--mw-accent-2) 100%);
	color: #04101e;
	box-shadow: 0 12px 34px -10px rgba(69, 199, 255, 0.55);
	transition: transform 0.25s var(--mw-ease), box-shadow 0.25s var(--mw-ease);
}
.mw-checkout-embed .simpay-checkout-form .simpay-payment-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 44px -12px rgba(69, 199, 255, 0.72), var(--mw-glow);
}
