:root {
	--rf-navy: #07111f;
	--rf-navy-soft: #0d1b2f;
	--rf-ink: #0f172a;
	--rf-copy: #475569;
	--rf-muted: #64748b;
	--rf-line: #e2e8f0;
	--rf-surface: #f7f9fc;
	--rf-white: #fff;
	--rf-primary: #2563eb;
	--rf-primary-hover: #0891b2;
	--rf-cyan: #06b6d4;
	--rf-gradient: linear-gradient(135deg, var(--rf-primary), var(--rf-cyan));
	--rf-radius-sm: 10px;
	--rf-radius: 18px;
	--rf-radius-lg: 28px;
	--rf-shadow-sm: 0 10px 30px rgba(15, 23, 42, .07);
	--rf-shadow: 0 22px 60px rgba(15, 23, 42, .12);
	--rf-container: 1180px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	background: var(--rf-white);
	color: var(--rf-copy);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.7;
	margin: 0;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

body.modal-open { overflow: hidden; }

img {
	height: auto;
	max-width: 100%;
}

figure { margin: 0; }

a {
	color: var(--rf-primary);
	text-decoration: none;
	transition: color .2s ease, opacity .2s ease, transform .2s ease;
}

a:hover { color: var(--rf-primary-hover); }

button,
input,
select,
textarea { font: inherit; }

button { cursor: pointer; }

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--rf-ink);
	font-weight: 800;
	letter-spacing: -.035em;
	line-height: 1.15;
	margin: 0 0 1rem;
}

h1 { font-size: clamp(2.5rem, 7vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1.25rem; }

svg {
	fill: none;
	height: 1.2em;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
	width: 1.2em;
}

.site { min-height: 100vh; }
.site-content { min-height: 60vh; }

.container {
	margin-inline: auto;
	max-width: var(--rf-container);
	padding-inline: 20px;
	width: 100%;
}

.narrow-container { max-width: 860px; }

.section { padding: 80px 0; }

.eyebrow {
	color: var(--rf-primary);
	font-size: .78rem;
	font-weight: 800;
	letter-spacing: .14em;
	margin-bottom: .8rem;
	text-transform: uppercase;
}

.button,
button.button,
input[type="submit"] {
	align-items: center;
	background: var(--rf-gradient);
	border: 0;
	border-radius: 999px;
	box-shadow: 0 10px 24px rgba(37, 99, 235, .2);
	color: var(--rf-white);
	display: inline-flex;
	font-size: .92rem;
	font-weight: 800;
	gap: .55rem;
	justify-content: center;
	line-height: 1.2;
	min-height: 46px;
	padding: .85rem 1.35rem;
	text-align: center;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover,
.button:focus-visible,
button.button:hover,
input[type="submit"]:hover {
	box-shadow: 0 14px 30px rgba(8, 145, 178, .25);
	color: var(--rf-white);
	transform: translateY(-2px);
}

.button svg { transition: transform .2s ease; }
.button:hover svg { transform: translateX(3px); }
.button-sm { font-size: .78rem; min-height: 40px; padding: .7rem 1rem; }
.button-lg { font-size: 1rem; min-height: 54px; padding: 1rem 1.5rem; }

.button-secondary,
.button-ghost {
	background: var(--rf-white);
	border: 1px solid var(--rf-line);
	box-shadow: none;
	color: var(--rf-ink);
}

.button-secondary:hover,
.button-ghost:hover {
	background: #eff6ff;
	border-color: #bfdbfe;
	color: var(--rf-primary);
}

.button-light {
	background: var(--rf-white);
	box-shadow: 0 15px 30px rgba(2, 8, 23, .2);
	color: var(--rf-primary);
}

.button-light:hover { background: #eff6ff; color: var(--rf-primary); }

.text-link {
	align-items: center;
	color: var(--rf-ink);
	display: inline-flex;
	font-size: .9rem;
	font-weight: 800;
	gap: .45rem;
	white-space: nowrap;
}

.text-link svg { transition: transform .2s ease; }
.text-link:hover svg { transform: translateX(4px); }

/* Header */
.site-header {
	background: var(--rf-header-bg, #fff);
	border-bottom: 1px solid rgba(203, 213, 225, .7);
	color: var(--rf-header-text, #0f172a);
	position: relative;
	transition: box-shadow .25s ease, border-color .25s ease;
	width: 100%;
	z-index: 1000;
}

.has-sticky-header .site-header {
	position: sticky;
	top: 0;
}

.admin-bar.has-sticky-header .site-header { top: 32px; }
.site-header.is-scrolled {
	border-color: rgba(148, 163, 184, .32);
	box-shadow: 0 12px 34px rgba(15, 23, 42, .09);
}

.header-inner {
	align-items: center;
	display: flex;
	gap: 16px;
	height: 78px;
	justify-content: space-between;
}

.site-branding { flex: 0 0 auto; min-width: 0; }
.brand-link { align-items: center; color: inherit; display: inline-flex; }
.header-logo { display: block; max-height: 52px; max-width: 215px; width: auto; }
.custom-logo-link { display: inline-flex; }
.custom-logo { max-height: 52px; max-width: 215px; width: auto; }

.text-logo {
	align-items: center;
	color: var(--rf-header-text, var(--rf-ink));
	display: inline-flex;
	font-size: 1.08rem;
	font-weight: 850;
	gap: .7rem;
	letter-spacing: -.03em;
}

.logo-mark {
	align-items: center;
	background: var(--rf-gradient);
	border-radius: 11px;
	box-shadow: 0 8px 18px rgba(37, 99, 235, .22);
	color: var(--rf-white);
	display: inline-flex;
	font-size: 1.05rem;
	height: 42px;
	justify-content: center;
	width: 42px;
}

.main-navigation {
	background: var(--rf-header-bg, #fff);
	border-top: 1px solid var(--rf-line);
	display: none;
	left: 0;
	padding: 12px 20px 18px;
	position: absolute;
	right: 0;
	top: 100%;
}

.main-navigation.is-open { display: block; box-shadow: 0 18px 30px rgba(15, 23, 42, .12); }

.primary-menu {
	display: flex;
	flex-direction: column;
	gap: 2px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-menu li { list-style: none; margin: 0; position: relative; }

.primary-menu a {
	border-radius: 10px;
	color: var(--rf-header-text, var(--rf-ink));
	display: block;
	font-size: 15px;
	font-weight: 700;
	padding: .7rem .85rem;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .current-menu-ancestor > a {
	background: rgba(37, 99, 235, .08);
	color: var(--rf-primary);
}

.primary-menu .sub-menu {
	border-left: 2px solid #dbeafe;
	list-style: none;
	margin: 2px 0 4px 15px;
	padding: 0 0 0 8px;
}

.primary-menu .sub-menu a { font-size: .84rem; font-weight: 650; }

.menu-toggle {
	background: transparent;
	border: 0;
	display: grid;
	gap: 4px;
	margin-left: auto;
	padding: 10px 5px;
}

.menu-toggle > span:not(.screen-reader-text) {
	background: currentColor;
	border-radius: 4px;
	display: block;
	height: 2px;
	transition: transform .2s ease, opacity .2s ease;
	width: 23px;
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(2) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-of-type(3) { opacity: 0; }
.menu-toggle[aria-expanded="true"] > span:nth-of-type(4) { transform: translateY(-6px) rotate(-45deg); }

.header-actions { align-items: center; display: flex; gap: 8px; }

.icon-button {
	align-items: center;
	background: transparent;
	border: 1px solid var(--rf-line);
	border-radius: 50%;
	color: var(--rf-header-text, var(--rf-ink));
	display: inline-flex;
	height: 36px;
	justify-content: center;
	padding: 0;
	position: relative;
	width: 36px;
}

.icon-button svg { height: 16px; width: 16px; }
.icon-button:hover { background: #eff6ff; border-color: #bfdbfe; color: var(--rf-primary); }
.header-cta { display: none; }
.header-cta.button-sm {
	box-shadow: 0 10px 24px rgba(37, 99, 235, .22);
	font-size: 14px;
	min-height: 44px;
	padding: .75rem 1.15rem;
}
.header-cta svg { height: 16px; width: 16px; }
.cart-count {
	align-items: center;
	background: var(--rf-primary);
	border: 2px solid var(--rf-white);
	border-radius: 50%;
	color: var(--rf-white);
	display: flex;
	font-size: .6rem;
	font-weight: 800;
	height: 18px;
	justify-content: center;
	position: absolute;
	right: -4px;
	top: -4px;
	width: 18px;
}

/* Search modal */
.search-modal {
	inset: 0;
	padding: 20px;
	position: fixed;
	z-index: 9999;
}

.search-modal[hidden] { display: none; }

.search-modal-backdrop {
	background: rgba(2, 8, 23, .78);
	backdrop-filter: blur(8px);
	inset: 0;
	position: absolute;
}

.search-modal-panel {
	background: var(--rf-white);
	border-radius: var(--rf-radius-lg);
	box-shadow: 0 30px 100px rgba(2, 8, 23, .35);
	left: 50%;
	max-width: 760px;
	padding: 54px 24px 32px;
	position: absolute;
	top: 16%;
	transform: translateX(-50%);
	width: calc(100% - 40px);
}

.search-modal-panel h2 { font-size: clamp(1.7rem, 5vw, 2.6rem); }

.search-modal-close {
	align-items: center;
	background: #f1f5f9;
	border: 0;
	border-radius: 50%;
	display: flex;
	height: 40px;
	justify-content: center;
	position: absolute;
	right: 18px;
	top: 18px;
	width: 40px;
}

.search-form {
	align-items: stretch;
	background: #f8fafc;
	border: 1px solid var(--rf-line);
	border-radius: 14px;
	display: flex;
	gap: 8px;
	padding: 6px;
}

.search-form label { flex: 1; }

.search-field {
	background: transparent;
	border: 0;
	color: var(--rf-ink);
	height: 48px;
	outline: 0;
	padding: 0 12px;
	width: 100%;
}

.search-submit {
	align-items: center;
	background: var(--rf-gradient);
	border: 0;
	border-radius: 10px;
	color: var(--rf-white);
	display: flex;
	font-weight: 800;
	gap: 7px;
	justify-content: center;
	padding: 0 18px;
}

.search-hint { color: var(--rf-muted); font-size: .82rem; margin: .7rem 0 0; }

/* Hero */
.hero-section {
	background:
		radial-gradient(circle at 82% 18%, rgba(37, 99, 235, .28), transparent 35%),
		radial-gradient(circle at 55% 95%, rgba(6, 182, 212, .16), transparent 38%),
		linear-gradient(118deg, #06101e 0%, #091a30 56%, #0a1d36 100%);
	color: #cbd5e1;
	overflow: hidden;
	padding: 78px 0 0;
	position: relative;
}

.hero-orb {
	border-radius: 50%;
	filter: blur(75px);
	opacity: .36;
	pointer-events: none;
	position: absolute;
}

.hero-orb-one {
	background: #2563eb;
	height: 460px;
	right: -130px;
	top: -190px;
	width: 460px;
}

.hero-orb-two {
	background: #06b6d4;
	bottom: -170px;
	height: 380px;
	left: -150px;
	width: 380px;
}

.hero-section > .container { max-width: 1280px; }

.hero-grid {
	align-items: center;
	display: grid;
	gap: clamp(42px, 5vw, 68px);
	position: relative;
	z-index: 1;
}

.hero-content { max-width: 650px; }

.hero-kicker {
	align-items: center;
	color: #93c5fd;
	display: flex;
	font-size: .76rem;
	font-weight: 800;
	gap: .6rem;
	letter-spacing: .12em;
	margin-bottom: 1.2rem;
	text-transform: uppercase;
}

.hero-kicker span {
	background: #22d3ee;
	border-radius: 50%;
	box-shadow: 0 0 0 5px rgba(34, 211, 238, .1);
	height: 7px;
	width: 7px;
}

.hero-content h1 {
	background: linear-gradient(135deg, #fff 25%, #dbeafe 70%, #67e8f9);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	font-size: clamp(2.45rem, 6.5vw, 3.65rem);
	letter-spacing: -.052em;
	line-height: 1.06;
	margin-bottom: 1.4rem;
	max-width: 650px;
}

.hero-subtitle {
	color: #b9c8db;
	font-size: clamp(1rem, 1.8vw, 1.12rem);
	line-height: 1.72;
	max-width: 650px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin: 2.1rem 0 1.75rem; }
.hero-actions .button {
	font-size: 1rem;
	min-height: 58px;
	padding: 1rem 1.7rem;
}
.hero-actions .button-secondary {
	background: rgba(255, 255, 255, .075);
	border-color: rgba(255, 255, 255, .2);
	color: #fff;
}
.hero-actions .button-secondary:hover {
	background: rgba(255, 255, 255, .14);
	border-color: rgba(255, 255, 255, .32);
}

.trust-row { display: flex; flex-wrap: wrap; gap: 14px 22px; }
.trust-row span { align-items: center; display: inline-flex; font-size: .78rem; font-weight: 700; gap: .35rem; }
.trust-row svg { color: #22d3ee; }

.hero-visual {
	margin-inline: auto;
	min-height: 380px;
	padding: 50px 4px 72px;
	position: relative;
	width: 100%;
}

.hero-image-frame {
	background: #07111f;
	border: 1px solid rgba(147, 197, 253, .3);
	border-radius: 26px;
	box-shadow:
		0 38px 85px rgba(0, 0, 0, .38),
		0 0 0 7px rgba(255, 255, 255, .035);
	isolation: isolate;
	margin: 0;
	overflow: hidden;
	position: relative;
	transform: perspective(1400px) rotateY(-2deg) rotateX(1deg);
	transform-origin: center right;
}

.hero-image-frame::after {
	background: linear-gradient(135deg, rgba(255, 255, 255, .12), transparent 28%);
	border-radius: inherit;
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
	z-index: 1;
}

.hero-image {
	aspect-ratio: 1484 / 1060;
	display: block;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.product-dashboard {
	filter: drop-shadow(0 36px 60px rgba(0, 0, 0, .34));
	position: relative;
	width: 100%;
}

.dashboard-window {
	background: #f8fafc;
	border: 1px solid rgba(255, 255, 255, .34);
	border-radius: 22px;
	box-shadow: 0 0 0 7px rgba(255, 255, 255, .035);
	overflow: hidden;
	transform: perspective(1400px) rotateY(-3deg) rotateX(1deg);
	transform-origin: center right;
}

.dashboard-window-bar {
	align-items: center;
	background: #e9eff6;
	border-bottom: 1px solid #dbe3ec;
	display: flex;
	height: 42px;
	padding: 0 14px;
	position: relative;
}

.window-dots { display: flex; gap: 5px; }
.window-dots i { background: #fb7185; border-radius: 50%; display: block; height: 7px; width: 7px; }
.window-dots i:nth-child(2) { background: #fbbf24; }
.window-dots i:nth-child(3) { background: #4ade80; }
.dashboard-address {
	background: rgba(255, 255, 255, .78);
	border: 1px solid rgba(203, 213, 225, .7);
	border-radius: 6px;
	color: #94a3b8;
	font-size: .52rem;
	left: 50%;
	line-height: 1;
	padding: 6px 24px;
	position: absolute;
	transform: translateX(-50%);
}

.dashboard-shell {
	display: grid;
	grid-template-columns: 50px minmax(0, 1fr);
	min-height: 310px;
}

.dashboard-sidebar {
	align-items: center;
	background: linear-gradient(180deg, #09172a, #0d223c);
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding-top: 17px;
}

.dashboard-sidebar b {
	align-items: center;
	background: var(--rf-gradient);
	border-radius: 8px;
	color: #fff;
	display: flex;
	font-size: .68rem;
	height: 27px;
	justify-content: center;
	margin-bottom: 5px;
	width: 27px;
}

.dashboard-sidebar i {
	background: #3b4b61;
	border-radius: 4px;
	display: block;
	height: 5px;
	width: 20px;
}

.dashboard-sidebar i.is-active {
	background: #38bdf8;
	box-shadow: 0 0 12px rgba(56, 189, 248, .58);
}

.dashboard-content {
	background: #f4f7fb;
	color: var(--rf-ink);
	padding: 16px;
}

.dashboard-toolbar {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-bottom: 14px;
}

.dashboard-toolbar div { display: flex; flex-direction: column; }
.dashboard-toolbar small {
	color: #2563eb;
	font-size: .43rem;
	font-weight: 850;
	letter-spacing: .12em;
}
.dashboard-toolbar strong { font-size: .9rem; line-height: 1.35; }
.dashboard-toolbar > span {
	background: #dcfce7;
	border: 1px solid #bbf7d0;
	border-radius: 999px;
	color: #15803d;
	font-size: .48rem;
	font-weight: 800;
	padding: 4px 9px;
}

.dashboard-stats {
	display: grid;
	gap: 8px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dashboard-stats > div {
	background: #fff;
	border: 1px solid #e5ebf2;
	border-radius: 10px;
	box-shadow: 0 5px 16px rgba(15, 23, 42, .035);
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: 9px;
	position: relative;
}

.dashboard-stats small { color: #64748b; font-size: .48rem; }
.dashboard-stats strong { font-size: .86rem; line-height: 1.4; }
.dashboard-stats strong em { color: #94a3b8; font-size: .48rem; font-style: normal; }
.dashboard-stats span { color: #16a34a; font-size: .46rem; font-weight: 800; }

.dashboard-panels {
	display: grid;
	gap: 8px;
	grid-template-columns: minmax(0, 1.3fr) minmax(0, .7fr);
	margin-top: 9px;
}

.dashboard-chart,
.dashboard-products {
	background: #fff;
	border: 1px solid #e5ebf2;
	border-radius: 11px;
	min-height: 125px;
	padding: 11px;
}

.dashboard-chart > div:first-child {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.dashboard-chart small,
.dashboard-products > small { color: #64748b; font-size: .5rem; font-weight: 700; }
.dashboard-chart strong { color: #16a34a; font-size: .6rem; }
.chart-bars {
	align-items: end;
	display: flex;
	gap: 5px;
	height: 77px;
	margin-top: 7px;
}

.chart-bars i {
	background: linear-gradient(180deg, #2563eb, #06b6d4);
	border-radius: 4px 4px 2px 2px;
	display: block;
	flex: 1;
	height: 38%;
	opacity: .88;
}
.chart-bars i:nth-child(2) { height: 55%; }
.chart-bars i:nth-child(3) { height: 46%; }
.chart-bars i:nth-child(4) { height: 72%; }
.chart-bars i:nth-child(5) { height: 62%; }
.chart-bars i:nth-child(6) { height: 84%; }
.chart-bars i:nth-child(7) { height: 76%; }
.chart-bars i:nth-child(8) { height: 96%; }

.dashboard-products { display: flex; flex-direction: column; gap: 8px; }
.dashboard-products > span {
	align-items: center;
	border-top: 1px solid #eef2f7;
	display: grid;
	gap: 6px;
	grid-template-columns: 25px minmax(0, 1fr) auto;
	padding-top: 8px;
}
.dashboard-products b { font-size: .5rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dashboard-products em { color: #f59e0b; font-size: .48rem; font-style: normal; font-weight: 800; }
.product-icon {
	align-items: center;
	border-radius: 7px;
	color: #fff;
	display: flex;
	font-size: .48rem;
	font-style: normal;
	font-weight: 850;
	height: 25px;
	justify-content: center;
	width: 25px;
}
.product-icon-blue { background: linear-gradient(135deg, #2563eb, #7c3aed); }
.product-icon-cyan { background: linear-gradient(135deg, #0891b2, #22c55e); }

.phone-device {
	background: #09111f;
	border: 3px solid #334155;
	border-radius: 27px;
	bottom: -38px;
	box-shadow: 0 24px 45px rgba(2, 8, 23, .42);
	height: 226px;
	padding: 9px 7px 8px;
	position: absolute;
	right: -12px;
	transform: rotate(4deg);
	width: 116px;
	z-index: 3;
}

.phone-speaker {
	background: #475569;
	border-radius: 999px;
	height: 4px;
	left: 50%;
	position: absolute;
	top: 7px;
	transform: translateX(-50%);
	width: 30px;
	z-index: 1;
}

.phone-screen {
	align-items: center;
	background:
		radial-gradient(circle at 70% 10%, rgba(6, 182, 212, .2), transparent 38%),
		linear-gradient(160deg, #f8fbff, #eaf2ff);
	border-radius: 20px;
	color: var(--rf-ink);
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 21px 10px 10px;
}

.phone-app-icon {
	align-items: center;
	background: var(--rf-gradient);
	border-radius: 10px;
	box-shadow: 0 8px 18px rgba(37, 99, 235, .24);
	color: #fff;
	display: flex;
	height: 32px;
	justify-content: center;
	margin-bottom: 10px;
	width: 32px;
}
.phone-app-icon svg { height: 17px; width: 17px; }
.phone-screen small { color: #64748b; font-size: .42rem; font-weight: 700; }
.phone-screen > strong { color: #0f172a; font-size: 2rem; line-height: 1.2; }
.phone-score {
	background: #dcfce7;
	border-radius: 999px;
	color: #15803d;
	font-size: .44rem;
	font-weight: 800;
	margin-bottom: 13px;
	padding: 3px 8px;
}
.phone-screen > i {
	background: #cbd5e1;
	border-radius: 999px;
	display: block;
	height: 4px;
	margin-top: 6px;
	width: 82%;
}
.phone-screen > i:nth-of-type(2) { width: 64%; }
.phone-screen > i:nth-of-type(3) { background: #60a5fa; height: 17px; margin-top: 13px; width: 78%; }

.hero-badge {
	align-items: center;
	background: rgba(255, 255, 255, .97);
	border: 1px solid rgba(219, 234, 254, .95);
	border-radius: 999px;
	box-shadow: 0 15px 34px rgba(2, 8, 23, .22);
	color: var(--rf-ink);
	display: flex;
	font-size: .68rem;
	font-weight: 800;
	gap: 6px;
	line-height: 1;
	padding: 9px 11px;
	position: absolute;
	white-space: nowrap;
	z-index: 5;
}

.hero-badge svg { color: #2563eb; height: 14px; width: 14px; }
.badge-seo { left: -3px; top: 17px; }
.badge-download { right: 0; top: 64px; }
.badge-woo { bottom: 58px; left: -4px; }
.badge-rankmath { bottom: 7px; right: 76px; }

.trust-strip {
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, .1);
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(2, 1fr);
	margin-top: 45px;
	padding-block: 22px;
	position: relative;
	text-align: center;
	z-index: 1;
}

.trust-strip span { color: #94a3b8; font-size: .7rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }

/* Sections and cards */
.section-heading {
	align-items: end;
	display: flex;
	gap: 28px;
	justify-content: space-between;
	margin-bottom: 34px;
}

.section-heading > div { max-width: 720px; }
.section-heading h2 { margin-bottom: .75rem; }
.section-heading p:last-child { color: var(--rf-muted); margin-bottom: 0; }
.centered-heading { justify-content: center; text-align: center; }
.centered-heading > div { max-width: 760px; }

.products-section { background: var(--rf-white); }
.product-card-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }

.market-product-card {
	background: #fff;
	border: 1px solid var(--rf-line);
	border-radius: var(--rf-radius);
	box-shadow: var(--rf-shadow-sm);
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.market-product-card:hover {
	border-color: #bfdbfe;
	box-shadow: var(--rf-shadow);
	transform: translateY(-6px);
}

.product-card-image {
	align-items: center;
	aspect-ratio: 3 / 2;
	background: #f4f7fb;
	display: flex;
	justify-content: center;
	overflow: hidden;
	padding: 14px;
	position: relative;
}

.product-card-image > img {
	display: block;
	height: 100%;
	max-width: 100%;
	object-fit: contain;
	object-position: center;
	transition: transform .4s ease;
	width: 100%;
}

.market-product-card:hover .product-card-image > img { transform: scale(1.035); }

.product-badge {
	background: rgba(255, 255, 255, .92);
	border: 1px solid rgba(226, 232, 240, .8);
	border-radius: 999px;
	bottom: 12px;
	color: var(--rf-ink);
	font-size: .68rem;
	font-weight: 800;
	left: 12px;
	padding: .35rem .65rem;
	position: absolute;
}

.product-card-body { display: flex; flex: 1; flex-direction: column; padding: 20px; }
.product-card-meta { align-items: center; color: var(--rf-muted); display: flex; font-size: .7rem; font-weight: 700; justify-content: space-between; margin-bottom: 8px; text-transform: uppercase; }
.rating-star { color: #f59e0b; letter-spacing: 0; }
.product-card-body h3 { font-size: 1.23rem; margin-bottom: .65rem; }
.product-card-body h3 a { color: var(--rf-ink); }
.product-card-body h3 a:hover { color: var(--rf-primary); }
.product-card-body > p { color: var(--rf-muted); font-size: .84rem; line-height: 1.65; }
.product-card-footer { border-top: 1px solid var(--rf-line); margin-top: auto; padding-top: 16px; }
.product-price { color: var(--rf-ink); font-size: 1.15rem; font-weight: 850; margin-bottom: 12px; }
.product-price del { color: #94a3b8; font-size: .8rem; }
.product-price ins { text-decoration: none; }
.product-card-actions { display: flex; flex-wrap: wrap; gap: 8px; }

.demo-product-image { background: linear-gradient(140deg, #e0e7ff, #dbeafe); }
.demo-cyan { background: linear-gradient(140deg, #cffafe, #dbeafe); }
.demo-violet { background: linear-gradient(140deg, #ede9fe, #fae8ff); }
.demo-browser { background: #fff; border-radius: 9px; box-shadow: 0 15px 40px rgba(15, 23, 42, .16); height: 72%; left: 9%; overflow: hidden; position: absolute; top: 12%; transform: rotate(-1deg); width: 82%; }
.demo-browser > div { align-items: center; background: #e2e8f0; display: flex; gap: 3px; height: 15%; padding-left: 6px; }
.demo-browser > div i { background: #94a3b8; border-radius: 50%; height: 3px; width: 3px; }
.demo-browser section { align-items: center; background: linear-gradient(135deg, #eff6ff, #ecfeff); display: flex; flex-direction: column; height: 85%; justify-content: center; }
.demo-browser section span { background: var(--rf-primary); border-radius: 3px; height: 5px; margin-bottom: 7px; width: 25%; }
.demo-browser section strong { background: #172554; border-radius: 3px; height: 8px; margin-bottom: 6px; width: 52%; }
.demo-browser section small { background: #94a3b8; border-radius: 2px; height: 3px; margin-bottom: 10px; width: 45%; }
.demo-browser section em { background: var(--rf-gradient); border-radius: 4px; height: 11px; width: 22%; }

.categories-section { background: var(--rf-surface); }
.category-grid { display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); }
.category-card {
	align-items: center;
	background: #fff;
	border: 1px solid var(--rf-line);
	border-radius: 14px;
	box-shadow: 0 8px 25px rgba(15, 23, 42, .045);
	color: var(--rf-ink);
	display: flex;
	font-size: .78rem;
	font-weight: 800;
	gap: 10px;
	min-height: 86px;
	padding: 13px;
}

.category-card > svg { color: #94a3b8; margin-left: auto; }
.category-card:hover { border-color: #93c5fd; box-shadow: var(--rf-shadow-sm); color: var(--rf-primary); transform: translateY(-3px); }
.category-card:hover > svg { transform: translateX(3px); }
.category-icon { align-items: center; background: linear-gradient(135deg, #eff6ff, #ecfeff); border-radius: 10px; color: var(--rf-primary); display: flex; flex: 0 0 42px; font-size: .9rem; height: 42px; justify-content: center; }

.why-section {
	background:
		radial-gradient(circle at 10% 15%, rgba(37, 99, 235, .22), transparent 25%),
		radial-gradient(circle at 90% 80%, rgba(6, 182, 212, .14), transparent 30%),
		var(--rf-navy);
}

.light-heading h2 { color: #fff; }
.light-heading p:last-child { color: #94a3b8; }
.light-heading .eyebrow { color: #67e8f9; }
.feature-grid { display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); }
.feature-card {
	background: rgba(255, 255, 255, .055);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 16px;
	padding: 20px 16px;
	transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.feature-card:hover { background: rgba(255, 255, 255, .085); border-color: rgba(103, 232, 249, .25); transform: translateY(-4px); }
.feature-icon { align-items: center; background: rgba(6, 182, 212, .12); border: 1px solid rgba(103, 232, 249, .15); border-radius: 11px; color: #67e8f9; display: flex; height: 42px; justify-content: center; margin-bottom: 14px; width: 42px; }
.feature-card h3 { color: #fff; font-size: 1rem; margin-bottom: .45rem; }
.feature-card p { color: #94a3b8; font-size: .76rem; line-height: 1.55; margin: 0; }

.showcase-grid { align-items: center; display: grid; gap: 50px; }
.showcase-copy { max-width: 560px; }
.check-list { list-style: none; margin: 1.6rem 0 2rem; padding: 0; }
.check-list li { align-items: flex-start; color: #334155; display: flex; gap: 10px; margin-bottom: .8rem; }
.check-list svg { background: #dcfce7; border-radius: 50%; color: #16a34a; flex: 0 0 auto; padding: 3px; }
.showcase-product-list { display: grid; gap: 8px; margin: -6px 0 24px; }
.showcase-product-list a { align-items: center; background: #f8fafc; border: 1px solid var(--rf-line); border-radius: 10px; color: var(--rf-ink); display: flex; font-size: .78rem; font-weight: 750; justify-content: space-between; padding: 10px 12px; }
.showcase-product-list a:hover { background: #eff6ff; border-color: #bfdbfe; color: var(--rf-primary); }
.showcase-product-list strong { color: var(--rf-primary); }
.showcase-visual { padding: 20px 0 45px; position: relative; }
.showcase-window { background: #fff; border: 1px solid var(--rf-line); border-radius: 20px; box-shadow: var(--rf-shadow); overflow: hidden; transform: rotate(1deg); }
.showcase-window-top { align-items: center; background: #e2e8f0; display: flex; gap: 5px; height: 34px; padding-left: 14px; }
.showcase-window-top span { background: #94a3b8; border-radius: 50%; height: 7px; width: 7px; }
.showcase-dashboard { display: flex; height: 300px; }
.showcase-menu { background: #0f172a; flex: 0 0 17%; }
.showcase-main { background: #f8fafc; flex: 1; padding: 24px; }
.showcase-heading { background: #cbd5e1; border-radius: 5px; height: 12px; margin-bottom: 20px; width: 36%; }
.showcase-stats { display: grid; gap: 10px; grid-template-columns: repeat(3, 1fr); }
.showcase-stats span { background: #fff; border: 1px solid #e2e8f0; border-radius: 9px; height: 65px; }
.showcase-chart { align-items: end; background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; display: flex; gap: 8px; height: 130px; justify-content: space-around; margin-top: 14px; padding: 20px; }
.showcase-chart i { background: linear-gradient(#06b6d4, #2563eb); border-radius: 4px 4px 1px 1px; height: 40%; width: 9%; }
.showcase-chart i:nth-child(2) { height: 65%; }
.showcase-chart i:nth-child(3) { height: 50%; }
.showcase-chart i:nth-child(4) { height: 80%; }
.showcase-chart i:nth-child(5) { height: 70%; }
.showcase-chart i:nth-child(6) { height: 95%; }
.showcase-badge { align-items: center; background: #fff; border: 1px solid var(--rf-line); border-radius: 14px; bottom: 12px; box-shadow: var(--rf-shadow-sm); display: flex; gap: 10px; padding: 12px 16px; position: absolute; right: -4px; }
.showcase-badge > svg { color: #16a34a; height: 28px; width: 28px; }
.showcase-badge strong,
.showcase-badge small { display: block; line-height: 1.3; }
.showcase-badge strong { color: var(--rf-ink); font-size: .8rem; }
.showcase-badge small { color: var(--rf-muted); font-size: .66rem; }

.testimonials-section { background: var(--rf-surface); }
.testimonial-grid { display: grid; gap: 18px; }
.testimonial-card { background: #fff; border: 1px solid var(--rf-line); border-radius: var(--rf-radius); box-shadow: var(--rf-shadow-sm); padding: 24px; }
.testimonial-stars { color: #f59e0b; font-size: .8rem; letter-spacing: .12em; margin-bottom: 14px; }
.testimonial-card blockquote { color: #334155; font-size: .92rem; font-style: normal; margin: 0 0 20px; }
.testimonial-author { align-items: center; display: flex; gap: 11px; }
.testimonial-author > span { align-items: center; background: var(--rf-gradient); border-radius: 50%; color: #fff; display: flex; font-size: .72rem; font-weight: 800; height: 42px; justify-content: center; width: 42px; }
.testimonial-author strong,
.testimonial-author small { display: block; line-height: 1.35; }
.testimonial-author strong { color: var(--rf-ink); font-size: .82rem; }
.testimonial-author small { color: var(--rf-muted); font-size: .7rem; }

.faq-layout { display: grid; gap: 40px; }
.faq-copy { max-width: 500px; }
.faq-list { display: grid; gap: 10px; }
.faq-item { background: #fff; border: 1px solid var(--rf-line); border-radius: 13px; overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease; }
.faq-item.is-open { border-color: #93c5fd; box-shadow: 0 10px 30px rgba(37, 99, 235, .08); }
.faq-item h3 { font-size: 1rem; margin: 0; }
.faq-question { align-items: center; background: transparent; border: 0; color: var(--rf-ink); display: flex; font-weight: 800; justify-content: space-between; padding: 18px; text-align: left; width: 100%; }
.faq-symbol { align-items: center; background: #eff6ff; border-radius: 50%; color: var(--rf-primary); display: flex; flex: 0 0 28px; font-size: 1.1rem; height: 28px; justify-content: center; margin-left: 12px; transition: transform .2s ease; }
.faq-question[aria-expanded="true"] .faq-symbol { transform: rotate(45deg); }
.faq-answer { border-top: 1px solid var(--rf-line); padding: 16px 18px 4px; }
.faq-answer p { color: var(--rf-muted); font-size: .88rem; }

.final-cta-section { padding-top: 20px; }
.final-cta {
	align-items: center;
	background:
		radial-gradient(circle at right top, rgba(34, 211, 238, .28), transparent 32%),
		linear-gradient(135deg, #1d4ed8, #0891b2);
	border-radius: var(--rf-radius-lg);
	color: #dbeafe;
	display: flex;
	flex-direction: column;
	gap: 24px;
	justify-content: space-between;
	overflow: hidden;
	padding: 36px 24px;
	position: relative;
}

.final-cta > * { position: relative; z-index: 1; }
.final-cta > div:first-of-type { max-width: 720px; }
.final-cta .eyebrow { color: #cffafe; }
.final-cta h2 { color: #fff; }
.final-cta p { margin-bottom: 0; }

/* Page, blog, and content */
.page-hero {
	background:
		radial-gradient(circle at 85% 10%, rgba(6, 182, 212, .15), transparent 30%),
		linear-gradient(135deg, #07111f, #10243d);
	color: #cbd5e1;
	padding: 64px 0;
}

.page-hero h1 { color: #fff; font-size: clamp(2.3rem, 6vw, 4rem); }
.page-hero p { max-width: 760px; }
.compact-hero { padding: 55px 0; }
.content-section { padding-block: 64px; }
.page-featured-image { border-radius: var(--rf-radius); margin-bottom: 30px; overflow: hidden; }

.prose-card {
	background: #fff;
	border: 1px solid var(--rf-line);
	border-radius: var(--rf-radius);
	box-shadow: var(--rf-shadow-sm);
	padding: clamp(22px, 5vw, 48px);
}

.entry-content {
	color: #334155;
	font-size: 1.03rem;
}

.entry-content > *:first-child { margin-top: 0; }
.entry-content > *:last-child { margin-bottom: 0; }
.entry-content h2 { font-size: clamp(1.65rem, 4vw, 2.25rem); margin-top: 2.4rem; }
.entry-content h3 { font-size: 1.4rem; margin-top: 2rem; }
.entry-content blockquote { border-left: 4px solid var(--rf-primary); color: var(--rf-ink); font-size: 1.15rem; font-weight: 650; margin: 2rem 0; padding: .5rem 0 .5rem 1.4rem; }
.entry-content pre { background: #0f172a; border-radius: 10px; color: #e2e8f0; max-width: 100%; overflow: auto; padding: 1rem; }
.entry-content table { border-collapse: collapse; width: 100%; }
.entry-content th,
.entry-content td { border: 1px solid var(--rf-line); padding: .65rem; text-align: left; }
.entry-content th { background: #f8fafc; color: var(--rf-ink); }

.rankflow-breadcrumbs {
	color: #94a3b8;
	font-size: .75rem;
	margin-bottom: 1.1rem;
}

.rankflow-breadcrumbs nav,
.rank-math-breadcrumb p { align-items: center; display: flex; flex-wrap: wrap; gap: .55rem; margin: 0; }
.rankflow-breadcrumbs a { color: inherit; }
.rankflow-breadcrumbs a:hover { color: #60a5fa; }
.woocommerce-main .rankflow-breadcrumbs { color: var(--rf-muted); padding-top: 28px; }

.post-grid { display: grid; gap: 24px; }
.post-card { background: #fff; border: 1px solid var(--rf-line); border-radius: var(--rf-radius); box-shadow: var(--rf-shadow-sm); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.post-card:hover { box-shadow: var(--rf-shadow); transform: translateY(-5px); }
.post-card-image { background: #dbeafe; display: block; overflow: hidden; padding-top: 58%; position: relative; }
.post-card-image img { height: 100%; inset: 0; object-fit: cover; position: absolute; transition: transform .4s ease; width: 100%; }
.post-card:hover .post-card-image img { transform: scale(1.04); }
.post-image-placeholder { align-items: center; background: linear-gradient(135deg, #dbeafe, #cffafe); color: var(--rf-primary); display: flex; font-size: 4rem; font-weight: 850; inset: 0; justify-content: center; position: absolute; }
.post-card-content { padding: 22px; }
.post-category { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 10px; }
.post-category a,
.content-type { background: #eff6ff; border-radius: 999px; color: var(--rf-primary); display: inline-block; font-size: .66rem; font-weight: 800; letter-spacing: .06em; padding: .3rem .6rem; text-transform: uppercase; }
.post-card h2 { font-size: 1.3rem; }
.post-card h2 a,
.search-result-card h2 a { color: var(--rf-ink); }
.entry-meta { color: var(--rf-muted); display: flex; flex-wrap: wrap; font-size: .72rem; gap: 8px 16px; margin-bottom: 1rem; }
.entry-meta a { color: inherit; }
.post-card-content > p { color: var(--rf-muted); font-size: .86rem; }

.navigation.pagination { margin-top: 38px; }
.nav-links { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.nav-links .page-numbers { align-items: center; background: #fff; border: 1px solid var(--rf-line); border-radius: 9px; color: var(--rf-ink); display: flex; font-size: .82rem; font-weight: 750; height: 40px; justify-content: center; min-width: 40px; padding: 0 12px; }
.nav-links .current,
.nav-links a:hover { background: var(--rf-primary); border-color: var(--rf-primary); color: #fff; }

.search-grid { gap: 16px; }
.search-result-card { align-items: center; background: #fff; border: 1px solid var(--rf-line); border-radius: var(--rf-radius); display: grid; gap: 20px; padding: 20px; }
.search-result-image { border-radius: 12px; display: block; overflow: hidden; }
.search-result-image img { display: block; width: 100%; }
.search-result-card h2 { font-size: 1.35rem; margin: .6rem 0; }
.search-result-card p { color: var(--rf-muted); font-size: .88rem; }

.empty-state { background: #f8fafc; border: 1px dashed #cbd5e1; border-radius: var(--rf-radius); margin: 20px auto; max-width: 720px; padding: 50px 20px; text-align: center; }
.empty-icon { align-items: center; background: #dbeafe; border-radius: 50%; color: var(--rf-primary); display: flex; height: 60px; justify-content: center; margin: 0 auto 16px; width: 60px; }
.empty-state .search-form { margin: 24px auto 16px; max-width: 560px; }

.not-found-section { align-items: center; background: var(--rf-surface); display: flex; min-height: 72vh; padding: 60px 0; }
.not-found-card { text-align: center; }
.error-code { background: var(--rf-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; font-size: clamp(6rem, 25vw, 12rem); font-weight: 900; letter-spacing: -.08em; line-height: .9; }
.not-found-card h1 { font-size: clamp(2rem, 6vw, 3.5rem); }
.not-found-card > p { margin-inline: auto; max-width: 600px; }
.not-found-card .search-form { margin: 25px auto 18px; max-width: 600px; }

.single-post-header { background: linear-gradient(180deg, #f8fafc, #fff); padding: 55px 0 40px; text-align: center; }
.single-post-header .rankflow-breadcrumbs nav,
.single-post-header .rank-math-breadcrumb p { justify-content: center; }
.single-post-header .post-category { justify-content: center; }
.single-post-header h1 { font-size: clamp(2.4rem, 7vw, 4.5rem); margin-inline: auto; max-width: 980px; }
.post-lead { color: var(--rf-muted); font-size: 1.1rem; margin-inline: auto; max-width: 760px; }
.single-post-header .entry-meta { justify-content: center; }
.single-featured-image { border-radius: var(--rf-radius-lg); margin-bottom: 55px; max-width: 1080px; overflow: hidden; }
.single-featured-image img { display: block; width: 100%; }
.single-post-layout { display: grid; gap: 28px; grid-template-columns: 1fr; max-width: 940px; }
.share-rail { align-items: center; display: flex; gap: 8px; }
.share-rail > span { color: var(--rf-muted); font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.share-rail a { align-items: center; background: #f1f5f9; border-radius: 50%; color: var(--rf-ink); display: flex; font-size: .75rem; font-weight: 800; height: 34px; justify-content: center; width: 34px; }
.share-rail a:hover { background: var(--rf-primary); color: #fff; }
.single-post-content { min-width: 0; }
.single-post-content .entry-content { font-size: 1.08rem; }
.table-of-contents { background: #f8fafc; border: 1px solid var(--rf-line); border-radius: 14px; margin-bottom: 34px; padding: 20px; }
.table-of-contents > strong { color: var(--rf-ink); display: block; margin-bottom: 10px; }
.table-of-contents ol { margin: 0; padding-left: 1.3rem; }
.table-of-contents li { font-size: .86rem; margin-bottom: .35rem; }
.table-of-contents a { color: #334155; }
.tag-list { border-top: 1px solid var(--rf-line); display: flex; flex-wrap: wrap; gap: 7px; margin-top: 35px; padding-top: 22px; }
.tag-list a { background: #f1f5f9; border-radius: 999px; color: #475569; font-size: .72rem; font-weight: 700; padding: .35rem .7rem; }
.author-box { align-items: center; background: linear-gradient(135deg, #eff6ff, #ecfeff); border: 1px solid #bfdbfe; border-radius: var(--rf-radius); display: flex; gap: 18px; margin-top: 36px; padding: 24px; }
.author-avatar img { border-radius: 50%; display: block; }
.author-box span { color: var(--rf-muted); font-size: .72rem; font-weight: 700; }
.author-box h2 { font-size: 1.25rem; margin: .2rem 0 .4rem; }
.author-box p { font-size: .82rem; margin: 0; }
.related-posts-section { background: var(--rf-surface); margin-top: 70px; }

.comments-area { margin-block: 50px; }
.comment-list { list-style: none; padding: 0; }
.comment-body { border-bottom: 1px solid var(--rf-line); padding: 20px 0; }
.comment-author img { border-radius: 50%; margin-right: 8px; vertical-align: middle; }
.comment-metadata { font-size: .72rem; }

.content-with-sidebar { display: grid; gap: 28px; }
.widget-area { display: grid; gap: 18px; }
.rankflow-widget { background: #fff; border: 1px solid var(--rf-line); border-radius: var(--rf-radius); padding: 22px; }
.widget-title { font-size: 1.1rem; }
.rankflow-widget ul { list-style: none; margin: 0; padding: 0; }
.rankflow-widget li { border-bottom: 1px solid var(--rf-line); padding: .5rem 0; }
.rankflow-widget li:last-child { border: 0; }
.rankflow-widget a { color: #475569; font-size: .86rem; }

.landing-hero { background: linear-gradient(135deg, #07111f, #173a5e); color: #cbd5e1; padding: 90px 0; text-align: center; }
.landing-hero h1 { color: #fff; }
.landing-hero p { font-size: 1.1rem; }

/* Forms and contact */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="url"],
input[type="number"],
input[type="search"],
textarea,
select {
	background: #fff;
	border: 1px solid #cbd5e1;
	border-radius: 10px;
	color: var(--rf-ink);
	max-width: 100%;
	min-height: 46px;
	padding: .7rem .8rem;
	transition: border-color .2s ease, box-shadow .2s ease;
}

textarea { min-height: 130px; resize: vertical; width: 100%; }

input:focus,
textarea:focus,
select:focus {
	border-color: #60a5fa;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
	outline: none;
}

label { color: #334155; font-size: .82rem; font-weight: 750; }

.contact-hero { text-align: center; }
.contact-hero .rankflow-breadcrumbs nav,
.contact-hero .rank-math-breadcrumb p { justify-content: center; }
.contact-hero p { margin-inline: auto; }
.contact-section { background: var(--rf-surface); }
.contact-grid { display: grid; gap: 24px; }
.contact-form-card { background: #fff; border: 1px solid var(--rf-line); border-radius: var(--rf-radius-lg); box-shadow: var(--rf-shadow-sm); padding: clamp(22px, 5vw, 42px); }
.contact-form-card h2 { font-size: 1.8rem; }
.contact-form-card > p { color: var(--rf-muted); font-size: .85rem; }
.form-row { display: grid; gap: 0 16px; }
.contact-form p { margin-bottom: 1rem; }
.contact-form label { display: block; margin-bottom: .35rem; }
.contact-form input { width: 100%; }
.contact-honeypot { left: -9999px; position: absolute; }
.form-notice { border-radius: 10px; font-size: .84rem; font-weight: 700; margin: 18px 0; padding: 12px 14px; }
.notice-success { background: #dcfce7; color: #166534; }
.notice-error { background: #fee2e2; color: #991b1b; }
.contact-details { display: grid; gap: 14px; }
.contact-info-card { align-items: flex-start; background: #fff; border: 1px solid var(--rf-line); border-radius: 16px; display: flex; gap: 14px; padding: 20px; }
.contact-info-card > span { align-items: center; background: #eff6ff; border-radius: 10px; color: var(--rf-primary); display: flex; flex: 0 0 42px; font-size: 1rem; height: 42px; justify-content: center; }
.contact-info-card h2 { font-size: .92rem; margin: .1rem 0 .3rem; }
.contact-info-card p,
.contact-info-card a { color: var(--rf-muted); font-size: .82rem; margin: 0; word-break: break-word; }

/* Footer */
.site-footer {
	background: var(--rf-footer-bg, #07111f);
	color: var(--rf-footer-text, #cbd5e1);
	overflow: hidden;
	padding-top: 64px;
	position: relative;
}

.footer-glow { background: #0e7490; border-radius: 50%; filter: blur(100px); height: 250px; opacity: .15; position: absolute; right: -100px; top: -100px; width: 250px; }
.footer-grid { display: grid; gap: 38px 26px; position: relative; }
.footer-brand { max-width: 350px; }
.footer-brand-link { color: #fff; margin-bottom: 18px; }
.footer-logo { display: block; max-height: 50px; max-width: 220px; width: auto; }
.site-footer .text-logo { color: #fff; font-size: 1.1rem; }
.footer-brand p { color: var(--rf-footer-text, #cbd5e1); font-size: .84rem; }
.footer-title { color: #fff; font-size: .95rem; letter-spacing: -.01em; margin-bottom: 16px; }
.footer-menu { list-style: none; margin: 0; padding: 0; }
.footer-menu li { margin-bottom: .55rem; }
.footer-menu a { color: var(--rf-footer-text, #cbd5e1); font-size: .8rem; opacity: .82; }
.footer-menu a:hover { color: #67e8f9; opacity: 1; }
.footer-socials { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-socials:empty { display: none; }
.footer-socials a { align-items: center; border: 1px solid rgba(255, 255, 255, .13); border-radius: 50%; color: #cbd5e1; display: flex; height: 38px; justify-content: center; transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease; width: 38px; }
.footer-socials a:hover { background: var(--rf-primary); border-color: var(--rf-primary); color: #fff; transform: translateY(-2px); }
.footer-socials svg { height: 17px; width: 17px; }
.footer-contact { display: flex; flex-direction: column; margin-top: 16px; }
.footer-contact a,
.footer-contact span { color: var(--rf-footer-text, #cbd5e1); font-size: .74rem; opacity: .75; }
.footer-widget-area { border-top: 1px solid rgba(255, 255, 255, .1); margin-top: 36px; padding-top: 24px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); display: flex; flex-direction: column; gap: 5px; margin-top: 45px; padding-block: 20px; }
.footer-bottom p { color: var(--rf-footer-text, #cbd5e1); font-size: .68rem; margin: 0; opacity: .65; }

/* Accessibility */
:focus-visible {
	outline: 3px solid #38bdf8;
	outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}
}

@media (min-width: 580px) {
	.container { padding-inline: 28px; }
	.hero-visual { max-width: 720px; min-height: 490px; padding: 62px 24px 82px; }
	.dashboard-shell { grid-template-columns: 58px minmax(0, 1fr); min-height: 355px; }
	.dashboard-content { padding: 20px; }
	.dashboard-chart,
	.dashboard-products { min-height: 145px; }
	.phone-device { height: 252px; right: 2px; width: 130px; }
	.badge-seo { left: 3px; top: 25px; }
	.badge-download { right: 8px; top: 78px; }
	.badge-woo { bottom: 65px; left: 2px; }
	.badge-rankmath { bottom: 12px; right: 96px; }
	.product-card-grid,
	.post-grid,
	.testimonial-grid { grid-template-columns: repeat(2, 1fr); }
	.category-grid { grid-template-columns: repeat(3, 1fr); }
	.trust-strip { grid-template-columns: repeat(4, 1fr); }
	.form-row { grid-template-columns: repeat(2, 1fr); }
	.search-result-card { grid-template-columns: 190px 1fr; }
	.footer-grid { grid-template-columns: 1.35fr 1fr; }
}

@media (min-width: 780px) {
	.section { padding: 105px 0; }
	.hero-section { padding-top: 90px; }
	.hero-content { max-width: 760px; }
	.hero-content h1,
	.hero-subtitle { max-width: 720px; }
	.hero-visual { min-height: 535px; }
	.trust-strip { margin-top: 60px; }
	.category-grid { grid-template-columns: repeat(4, 1fr); }
	.category-card { font-size: .82rem; min-height: 100px; padding: 16px; }
	.feature-grid { grid-template-columns: repeat(4, 1fr); }
	.feature-card { padding: 23px 20px; }
	.showcase-grid { grid-template-columns: .9fr 1.1fr; }
	.testimonial-grid { grid-template-columns: repeat(3, 1fr); }
	.faq-layout { grid-template-columns: .75fr 1.25fr; }
	.final-cta { flex-direction: row; padding: 48px; }
	.post-grid { grid-template-columns: repeat(3, 1fr); }
	.single-post-layout { grid-template-columns: 56px minmax(0, 760px); }
	.share-rail { align-self: start; flex-direction: column; position: sticky; top: 120px; }
	.content-with-sidebar { grid-template-columns: minmax(0, 1fr) 310px; }
	.contact-grid { grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); }
	.footer-grid { grid-template-columns: 1.5fr repeat(3, .75fr); }
	.footer-bottom { align-items: center; flex-direction: row; justify-content: space-between; }
}

@media (min-width: 980px) {
	.product-card-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1040px) {
	.hero-grid {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 42px;
	}
	.hero-content { max-width: 640px; }
	.hero-content h1,
	.hero-subtitle { max-width: 640px; }
	.hero-visual {
		margin-left: -10px;
		margin-right: -80px;
		max-width: none;
		min-height: 520px;
		padding: 68px 70px 86px 0;
		width: calc(100% + 90px);
	}
	.dashboard-shell { grid-template-columns: 64px minmax(0, 1fr); min-height: 390px; }
	.dashboard-content { padding: 22px; }
	.dashboard-toolbar { margin-bottom: 17px; }
	.dashboard-toolbar small { font-size: .48rem; }
	.dashboard-toolbar strong { font-size: 1.02rem; }
	.dashboard-stats { gap: 10px; }
	.dashboard-stats > div { padding: 11px; }
	.dashboard-stats small { font-size: .53rem; }
	.dashboard-stats strong { font-size: 1rem; }
	.dashboard-panels { gap: 10px; margin-top: 11px; }
	.dashboard-chart,
	.dashboard-products { min-height: 168px; padding: 13px; }
	.chart-bars { height: 112px; }
	.phone-device {
		bottom: -47px;
		height: 280px;
		right: -10px;
		width: 144px;
	}
	.badge-seo { left: -12px; top: 31px; }
	.badge-download { right: 38px; top: 87px; }
	.badge-woo { bottom: 71px; left: -17px; }
	.badge-rankmath { bottom: 13px; right: 124px; }
}

@media (min-width: 1120px) {
	.header-inner { height: 86px; }
	.menu-toggle { display: none; }
	.main-navigation {
		background: transparent;
		border: 0;
		display: block;
		margin-left: auto;
		padding: 0;
		position: static;
	}
	.primary-menu { align-items: center; flex-direction: row; gap: 0; }
	.primary-menu a { padding: .65rem .58rem; }
	.primary-menu .menu-item-has-children > a { padding-right: 1.5rem; position: relative; }
	.primary-menu .menu-item-has-children > a::after { border-bottom: 1.5px solid; border-right: 1.5px solid; content: ""; height: 5px; position: absolute; right: .65rem; top: 45%; transform: rotate(45deg); width: 5px; }
	.primary-menu .sub-menu {
		background: #fff;
		border: 1px solid var(--rf-line);
		border-radius: 13px;
		box-shadow: var(--rf-shadow);
		display: block;
		left: 0;
		margin: 0;
		min-width: 220px;
		opacity: 0;
		padding: 8px;
		pointer-events: none;
		position: absolute;
		top: calc(100% + 12px);
		transform: translateY(8px);
		transition: opacity .2s ease, transform .2s ease;
		visibility: hidden;
	}
	.primary-menu .sub-menu::before { content: ""; height: 14px; left: 0; position: absolute; right: 0; top: -14px; }
	.primary-menu li:hover > .sub-menu,
	.primary-menu li:focus-within > .sub-menu { opacity: 1; pointer-events: auto; transform: translateY(0); visibility: visible; }
	.primary-menu .sub-menu .sub-menu { left: calc(100% + 8px); top: 0; }
	.header-cta { display: inline-flex; }
}

@media (max-width: 782px) {
	.admin-bar.has-sticky-header .site-header { top: 46px; }
}

@media (max-width: 579px) {
	.header-inner { padding-inline: 15px; }
	.header-logo,
	.custom-logo { max-height: 44px; max-width: 150px; }
	.text-logo { font-size: .94rem; gap: .5rem; }
	.logo-mark { border-radius: 9px; height: 36px; width: 36px; }
	.text-logo > span:last-child { max-width: 105px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
	.header-actions { gap: 5px; }
	.search-submit span { display: none; }
	.search-submit { padding: 0 15px; }
	.hero-actions .button { width: 100%; }
	.hero-visual { min-height: 360px; padding: 52px 0 78px; }
	.dashboard-address { display: none; }
	.dashboard-shell { grid-template-columns: 42px minmax(0, 1fr); min-height: 290px; }
	.dashboard-sidebar { gap: 15px; padding-top: 14px; }
	.dashboard-sidebar b { height: 24px; width: 24px; }
	.dashboard-sidebar i { width: 16px; }
	.dashboard-content { padding: 12px; }
	.dashboard-stats > div { padding: 7px; }
	.dashboard-stats small { font-size: .41rem; }
	.dashboard-stats strong { font-size: .72rem; }
	.dashboard-products { display: none; }
	.dashboard-panels { grid-template-columns: 1fr; }
	.dashboard-chart { min-height: 117px; padding: 9px; }
	.chart-bars { height: 70px; }
	.phone-device { bottom: -35px; height: 195px; right: 1px; width: 100px; }
	.phone-screen { padding-inline: 7px; }
	.phone-screen > strong { font-size: 1.55rem; }
	.hero-badge { font-size: .58rem; gap: 4px; padding: 8px 9px; }
	.hero-badge svg { height: 12px; width: 12px; }
	.badge-seo { left: -2px; top: 18px; }
	.badge-download { right: -1px; top: 67px; }
	.badge-woo { bottom: 63px; left: -2px; }
	.badge-rankmath { bottom: 12px; right: 70px; }
	.section-heading { align-items: flex-start; flex-direction: column; }
	.category-card > svg { display: none; }
	.feature-grid { grid-template-columns: 1fr; }
	.author-box { align-items: flex-start; flex-direction: column; }
}
