/* ================================================================
   Vizion — Home page (isolated layout layer)
   Brand colors: global --brand-primary* in custom.css
   ================================================================ */

html {
	scroll-behavior: smooth;
}

.page-home #features,
.page-home #pricing,
.page-home #testimonials,
.page-home #faq,
.page-home #contact {
	scroll-margin-top: 100px;
}

.page-home .hp-home {
	--hp-bg: var(--bg-color);
	--hp-bg-muted: var(--secondary-color);
	--hp-elevated: var(--white-color);
	--hp-heading: var(--primary-color);
	--hp-body: var(--text-color);
	--hp-body-muted: #8a9499;
	--hp-badge-bg: var(--white-color);
	--hp-border: rgba(3, 23, 29, 0.08);
	--hp-border-soft: rgba(3, 23, 29, 0.06);
	--hp-shadow-soft: rgba(3, 23, 29, 0.06);
	--hp-shadow-strong: rgba(3, 23, 29, 0.08);
	--hp-chat-bg: #ffffff;
	--hp-chat-header: #f3f3f3;
	--hp-chat-bubble: #f5f5f5;
	--hp-chat-text: #1a1a1a;
	--hp-chat-muted: #888;
	--hp-chat-control-bg: rgba(255, 255, 255, 0.65);
	--hp-chat-control-color: #222;
	--hp-trust-logo: #b0bac5;
	--hp-hero-glow-opacity: 1;
}

html[data-bs-theme="dark"] .page-home .hp-home {
	--hp-elevated: var(--surface-color);
	--hp-heading: var(--black-color);
	--hp-body: var(--text-color);
	--hp-body-muted: #9aa8ad;
	--hp-badge-bg: var(--surface-color);
	--hp-border: rgba(255, 255, 255, 0.08);
	--hp-border-soft: rgba(255, 255, 255, 0.08);
	--hp-shadow-soft: rgba(0, 0, 0, 0.3);
	--hp-shadow-strong: rgba(0, 0, 0, 0.35);
	--hp-chat-bg: var(--surface-color);
	--hp-chat-header: #0f181b;
	--hp-chat-bubble: var(--surface-elevated);
	--hp-chat-text: var(--black-color);
	--hp-chat-muted: var(--text-color);
	--hp-chat-control-bg: rgba(255, 255, 255, 0.08);
	--hp-chat-control-color: var(--black-color);
	--hp-trust-logo: var(--text-color);
	--hp-hero-glow-opacity: 0.45;
}

/* --- Header on light hero + sticky scroll ----------------------- */
.page-home header.main-header {
	top: 24px;
}

.page-home header.main-header .header-sticky {
	background: transparent;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	border-radius: 0;
	max-width: 100%;
	transition:
		background 0.3s ease,
		box-shadow 0.3s ease,
		backdrop-filter 0.3s ease,
		border-color 0.3s ease;
}

.page-home header.main-header .header-sticky.active {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.96) !important;
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(3, 23, 29, 0.08) !important;
	border-radius: 0 !important;
	box-shadow: 0 8px 32px rgba(3, 23, 29, 0.06);
}

.page-home header.main-header .main-menu ul li a {
	color: var(--black-color);
}

.page-home header.main-header .main-menu ul li a:hover,
.page-home header.main-header .main-menu ul li a:focus {
	color: var(--accent-color) !important;
}

.page-home header.main-header .main-menu ul ul {
	background: var(--hp-elevated);
	box-shadow: 0 8px 32px rgba(3, 23, 29, 0.08);
}

.page-home header.main-header .main-menu ul ul li a {
	color: var(--primary-color);
}

/* --- Shared accent text ----------------------------------------- */
.hp-home .hp-text-accent {
	color: var(--accent-color);
}

/* --- Hero — full viewport --------------------------------------- */
.hp-home .hp-hero {
	position: relative;
	min-height: 100vh;
	min-height: 100svh;
	display: flex;
	align-items: center;
	padding: 140px 0 48px;
	background: linear-gradient(155deg, var(--hp-bg) 0%, var(--brand-primary-soft) 50%, var(--hp-bg) 100%);
	overflow: hidden;
	box-sizing: border-box;
}

.hp-home .hp-hero .container {
	position: relative;
	z-index: 1;
	width: 100%;
}

.hp-home .hp-hero .row {
	align-items: center;
}
.hp-home .hp-hero::before {
	content: '';
	position: absolute;
	top: -80px;
	right: -120px;
	width: 480px;
	height: 480px;
	background: radial-gradient(circle, rgba(var(--brand-primary-rgb), 0.12) 0%, transparent 68%);
	border-radius: 50%;
	pointer-events: none;
}

.hp-home .hp-hero::after {
	content: '';
	position: absolute;
	bottom: -60px;
	left: -80px;
	width: 360px;
	height: 360px;
	background: radial-gradient(circle, rgba(var(--brand-primary-rgb), 0.08) 0%, transparent 68%);
	border-radius: 50%;
	pointer-events: none;
}

/* Section title — left-aligned hero variant */
.hp-home .hp-hero__title-block {
	text-align: left;
	margin-bottom: 0;
}

.hp-home .hp-hero__title-block h3 {
	background-color: var(--hp-badge-bg);
}

.hp-home .hp-hero__title-block h1 {
	font-size: clamp(38px, 4.2vw, 64px);
	font-weight: 500;
	line-height: 1.12em;
	color: var(--hp-heading);
	margin-bottom: 0;
}

.hp-home .hp-hero__title-block p {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.75em;
	color: var(--hp-body);
	margin-top: 20px;
	margin-bottom: 0;
	max-width: 100%;
}

/* Hero buttons — left-aligned, theme btn-default */
.hp-home .hp-hero__btn {
	justify-content: flex-start;
	margin-top: 40px;
	gap: 15px 32px;
}

/* --- Hero chat mockup (self-contained, no plugin CSS) ----------- */
.hp-home .hp-dc-wrap {
	position: relative;
	display: flex;
	justify-content: stretch;
	align-items: stretch;
	width: 100%;
	padding: 0;
	height: 100%;
}

.hp-home .hp-dc-wrap::before {
	content: '';
	position: absolute;
	width: min(100%, 560px);
	height: min(100%, 560px);
	background: radial-gradient(circle, rgba(var(--brand-primary-rgb), 0.12) 0%, transparent 68%);
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 0;
}

.hp-home .hp-dc-chat {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 100%;
	min-height: clamp(580px, 72vh, 720px);
	height: clamp(580px, 72vh, 720px);
	background: var(--hp-chat-bg);
	border-radius: 16px;
	overflow: hidden;
	position: relative;
	z-index: 2;
	box-shadow:
		0 22px 60px rgba(0, 0, 0, 0.12),
		0 8px 22px rgba(0, 0, 0, 0.08);
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Header */
.hp-home .hp-dc-header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 14px;
	background: var(--hp-chat-header);
	border-bottom: 1px solid var(--hp-border);
	flex-shrink: 0;
}

.hp-home .hp-dc-header-avatar img {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
	display: block;
}

.hp-home .hp-dc-header-text {
	min-width: 0;
	flex: 1;
}

.hp-home .hp-dc-header-title {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.25;
	color: var(--hp-chat-text);
	margin-bottom: 2px;
}

.hp-home .hp-dc-header-subtitle {
	font-size: 12px;
	font-weight: 500;
	line-height: 1.3;
	color: var(--hp-chat-text);
	opacity: 0.72;
}

.hp-home .hp-dc-header-controls {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	gap: 8px;
}

.hp-home .hp-dc-header-btn {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 1px solid var(--hp-border);
	background: var(--hp-chat-control-bg);
	color: var(--hp-chat-control-color);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	cursor: default;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.hp-home .hp-dc-header-btn svg {
	width: 16px;
	height: 16px;
	display: block;
}

/* Messages area */
.hp-home .hp-dc-messages {
	flex: 1;
	padding: 20px 16px 12px;
	background: var(--hp-chat-bg);
	min-height: 380px;
	overflow: hidden;
}

.hp-home .hp-dc-message {
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.hp-home .hp-dc-message-avatar {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
	margin-top: 2px;
}

.hp-home .hp-dc-message-content {
	min-width: 0;
	flex: 1;
}

.hp-home .hp-dc-bubble {
	display: inline-block;
	max-width: calc(100% - 8px);
	padding: 10px 14px;
	background: var(--hp-chat-bubble);
	border-radius: 18px 18px 18px 4px;
	font-size: 14px;
	line-height: 1.45;
	color: var(--hp-chat-text);
	box-shadow:
		0 0.3px 0.9px rgba(0, 0, 0, 0.12),
		0 1.6px 3.6px rgba(0, 0, 0, 0.16);
}

.hp-home .hp-dc-meta {
	display: block;
	font-size: 11px;
	color: var(--hp-chat-muted);
	margin-top: 4px;
	margin-left: 2px;
}

/* Composer */
.hp-home .hp-dc-composer {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px 14px;
	background: var(--hp-chat-bg);
	flex-shrink: 0;
}

.hp-home .hp-dc-input-wrap {
	position: relative;
	flex: 1;
	min-width: 0;
}

.hp-home .hp-dc-input {
	width: 100%;
	border: none;
	border-radius: 20px;
	padding: 10px 40px 10px 15px;
	font-size: 14px;
	font-family: inherit;
	color: var(--hp-chat-text);
	background: var(--hp-chat-bg);
	box-shadow:
		0 0.3px 0.9px rgba(0, 0, 0, 0.12),
		0 1.6px 3.6px rgba(0, 0, 0, 0.16);
	outline: none;
	cursor: default;
}

.hp-home .hp-dc-send {
	position: absolute;
	top: 50%;
	right: 6px;
	transform: translateY(-50%);
	width: 28px;
	height: 28px;
	border: none;
	background: transparent;
	color: var(--brand-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	cursor: default;
}

.hp-home .hp-dc-send svg {
	width: 18px;
	height: 18px;
	display: block;
}

.hp-home .hp-dc-mic {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	border: none;
	background: transparent;
	color: var(--brand-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	cursor: default;
}

.hp-home .hp-dc-mic svg {
	width: 22px;
	height: 22px;
	display: block;
}

/* Footer */
.hp-home .hp-dc-footer {
	flex-shrink: 0;
	padding: 5px 10px 8px;
	background: var(--hp-chat-header);
	border-top: 1px solid rgba(0, 0, 0, 0.05);
	display: flex;
	justify-content: center;
	align-items: center;
}

.hp-home .hp-dc-footer-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 6px 10px;
}

.hp-home .hp-dc-footer-label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.2px;
	color: var(--hp-chat-muted);
	text-transform: uppercase;
}

.hp-home .hp-dc-footer-brand {
	font-size: 13px;
	font-weight: 800;
	color: var(--hp-chat-text);
}

/* --- Numbered steps (split 1) ----------------------------------- */
.hp-home .hp-steps {
	display: flex;
	flex-direction: column;
	gap: 18px;
	width: 100%;
	max-width: 480px;
	margin: 0 auto;
}

.hp-home .hp-steps__item {
	padding: 15px 12px;
	border-radius: 16px;
	background: var(--hp-elevated);
	border: 1px solid var(--hp-border);
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.hp-home .hp-steps__item:hover {
	border-color: rgba(var(--brand-primary-rgb), 0.35);
	box-shadow: 0 12px 32px var(--hp-shadow-soft);
}

.hp-home .hp-steps__head {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 14px;
}

.hp-home .hp-steps__num {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 13px;
	font-weight: 700;
	color: var(--accent-color);
	background: rgba(var(--brand-primary-rgb), 0.14);
	font-variant-numeric: tabular-nums;
	letter-spacing: 0.02em;
}

.hp-home .hp-steps__title {
	margin: 0;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.35;
	color: var(--hp-heading);
	font-family: var(--default-font);
}

.hp-home .hp-steps__text {
	margin: 0;
	padding-left: 54px;
	font-size: 15px;
	line-height: 1.7;
	color: var(--hp-body);
}

/* --- Market dashboard (split 2) --------------------------------- */
.hp-home .hp-market-dash {
	width: 100%;
	max-width: 420px;
	margin: 0 auto;
	padding: 22px 22px 18px;
	border-radius: 16px;
	background: var(--hp-elevated);
	border: 1px solid var(--hp-border);
	box-shadow:
		0 22px 60px rgba(0, 0, 0, 0.12),
		0 8px 22px var(--hp-shadow-soft);
	font-family: "Inter Tight", system-ui, sans-serif;
}

.hp-home .hp-market-dash__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 20px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--hp-border);
}

.hp-home .hp-market-dash__label {
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--hp-body-muted);
	margin-bottom: 4px;
}

.hp-home .hp-market-dash__title {
	font-size: 17px;
	font-weight: 600;
	color: var(--hp-heading);
}

.hp-home .hp-market-dash__live {
	font-size: 12px;
	font-weight: 600;
	color: #2e9b5e;
	background: rgba(46, 155, 94, 0.1);
	padding: 4px 10px;
	border-radius: 20px;
	white-space: nowrap;
}

.hp-home .hp-market-dash__kpis {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-bottom: 20px;
}

.hp-home .hp-market-dash__kpi {
	padding: 12px 10px;
	border-radius: 10px;
	background: var(--hp-bg-muted);
	text-align: center;
}

.hp-home .hp-market-dash__kpi-label {
	display: block;
	font-size: 10px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--hp-body-muted);
	margin-bottom: 4px;
}

.hp-home .hp-market-dash__kpi-value {
	display: block;
	font-size: 20px;
	font-weight: 700;
	color: var(--hp-heading);
	font-variant-numeric: tabular-nums;
}

.hp-home .hp-market-dash__kpi-value--up {
	color: #2e9b5e;
}

.hp-home .hp-market-dash__chart {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 8px;
	height: 72px;
	margin-bottom: 18px;
	padding: 0 4px;
}

.hp-home .hp-market-dash__chart-bar {
	flex: 1;
	height: var(--h, 50%);
	min-height: 12px;
	border-radius: 4px 4px 0 0;
	background: rgba(var(--brand-primary-rgb), 0.18);
	transition: height 0.4s ease;
}

.hp-home .hp-market-dash__chart-bar--active {
	background: linear-gradient(180deg, var(--brand-primary) 0%, var(--brand-primary-hover) 100%);
}

.hp-home .hp-market-dash__list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.hp-home .hp-market-dash__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 12px;
	border-radius: 10px;
	background: var(--hp-bg-muted);
}

.hp-home .hp-market-dash__row-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.hp-home .hp-market-dash__row-title {
	font-size: 13px;
	font-weight: 600;
	color: var(--hp-heading);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.hp-home .hp-market-dash__row-sub {
	font-size: 11px;
	color: var(--hp-body-muted);
}

.hp-home .hp-market-dash__score {
	flex-shrink: 0;
	font-size: 13px;
	font-weight: 700;
	color: var(--brand-primary);
	background: rgba(var(--brand-primary-rgb), 0.12);
	padding: 4px 8px;
	border-radius: 6px;
	font-variant-numeric: tabular-nums;
}

/* --- Trust bar + marquee ---------------------------------------- */
.hp-home .hp-trust {
	background: var(--hp-bg-muted);
	max-width: 1880px;
	width: 100%;
	margin: 0 auto;
	padding: 56px 0 40px;
	border-top: none;
}

.hp-home .hp-trust .container {
	margin-bottom: 32px;
}

.hp-home .hp-trust__label {
	text-align: center;
	font-size: 13px;
	font-weight: 600;
	color: var(--hp-body);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 0;
	font-family: "Inter Tight", system-ui, sans-serif;
}

.hp-home .hp-trust__marquee {
	overflow: hidden;
	width: 100%;
	position: relative;
	mask-image: linear-gradient(
		90deg,
		transparent 0%,
		#000 8%,
		#000 92%,
		transparent 100%
	);
	-webkit-mask-image: linear-gradient(
		90deg,
		transparent 0%,
		#000 8%,
		#000 92%,
		transparent 100%
	);
}

.hp-home .hp-trust__marquee-track {
	display: flex;
	flex-wrap: nowrap;
	width: max-content;
	animation: hp-trust-marquee 55s linear infinite;
	will-change: transform;
}

.hp-home .hp-trust__marquee-track:hover {
	animation-play-state: paused;
}

.hp-home .hp-trust__marquee-strip,
.hp-home .hp-trust__marquee-group {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	flex-wrap: nowrap;
	gap: 80px;
	padding-right: 80px;
}

.hp-home .hp-trust__logo {
	font-size: 22px;
	font-weight: 700;
	color: var(--hp-trust-logo);
	letter-spacing: -0.02em;
	user-select: none;
	font-family: "Inter Tight", system-ui, sans-serif;
	white-space: nowrap;
	flex-shrink: 0;
}

@keyframes hp-trust-marquee {
	from { transform: translate3d(0, 0, 0); }
	to   { transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
	.hp-home .hp-trust__marquee-track {
		animation: hp-trust-marquee 80s linear infinite;
	}
}

/* --- Features grid (key-features overrides) --------------------- */
.hp-home .hp-features {
	padding: 48px 0 130px;
	margin-top: 0;
	width: 100%;
}

.hp-home .hp-features .section-row {
	margin-bottom: 56px;
}

.hp-home .hp-features__grid {
	--bs-gutter-y: 24px;
}

.hp-home .hp-features .feature-item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background-color: var(--hp-elevated);
	border: 1px solid var(--hp-border-soft);
	border-radius: 16px;
	padding: 28px 26px 26px;
	margin-bottom: 0;
	height: 100%;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.hp-home .hp-features .feature-item:hover {
	border-color: rgba(var(--brand-primary-rgb), 0.3);
	box-shadow: 0 12px 32px var(--hp-shadow-soft);
}

.hp-home .hp-features .feature-item-content h3 {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.35;
	margin-bottom: 0;
}

.hp-home .hp-features .feature-item-content p {
	font-size: 14px;
	line-height: 1.65;
	margin-top: 10px;
	color: var(--hp-body);
}

.hp-home .hp-features .feature-item-body {
	margin-top: 28px;
	padding-top: 22px;
	border-top-color: var(--hp-border);
}

.hp-home .hp-features .feature-item-body .icon-box i {
	position: relative;
	font-size: 20px;
	color: var(--white-color);
	z-index: 1;
}

.hp-home .hp-features .feature-item:hover .feature-item-body .icon-box i {
	color: var(--white-color);
}

/* --- Split sections (about-us overrides) ------------------------ */
.hp-home .hp-split {
	padding: 100px 0;
}

.hp-home .hp-split--alt {
	background: var(--hp-bg-muted);
	padding: 140px 0;
}

.hp-home .hp-split .section-title {
	margin-bottom: 0;
}

.hp-home .hp-split .section-title h3 {
	background-color: var(--hp-badge-bg);
}

.hp-home .hp-split--alt .section-title h3 {
	background-color: var(--hp-badge-bg);
}

.hp-home .hp-split .section-title h2 {
	font-size: clamp(32px, 3vw, 48px);
	font-weight: 500;
	line-height: 1.15em;
}

.hp-home .hp-split .section-title p {
	font-size: 16px;
	line-height: 1.75em;
	color: var(--hp-body);
	max-width: 520px;
}

.hp-home .hp-split .section-content-btn .section-btn {
	margin-top: 30px;
}

/* --- Pricing ----------------------------------------------------- */
.hp-home .hp-pricing {
	padding: 120px 0 100px;
	background: var(--hp-bg-muted);
}

.hp-home .hp-pricing .section-title {
	margin-bottom: 0;
}

.hp-home .hp-pricing__lead {
	max-width: 520px;
	margin: 16px auto 0;
	font-family: var(--default-font);
	font-size: 16px;
	line-height: 1.75em;
	color: var(--hp-body);
}

.hp-home .hp-pricing__toolbar {
	display: flex;
	justify-content: center;
	margin: 40px 0 48px;
}

.hp-home .hp-pricing__billing {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 4px;
	border-radius: 999px;
	background: var(--hp-elevated);
	border: 1px solid var(--hp-border);
	box-shadow: 0 4px 20px var(--hp-shadow-soft);
}

.hp-home .hp-pricing__billing-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	border: 0;
	border-radius: 999px;
	background: transparent;
	font-family: var(--default-font);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2em;
	color: var(--hp-heading);
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.hp-home .hp-pricing__billing-btn.is-active {
	background: var(--accent-color);
	color: var(--white-color);
}

.hp-home .hp-pricing__billing-save {
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	padding: 4px 8px;
	border-radius: 999px;
	background: rgba(var(--brand-primary-rgb), 0.12);
	color: var(--accent-color);
}

.hp-home .hp-pricing__billing-btn.is-active .hp-pricing__billing-save {
	background: rgba(255, 255, 255, 0.22);
	color: var(--white-color);
}

.hp-home .hp-pricing__grid {
	--bs-gutter-y: 24px;
	align-items: stretch;
}

.hp-home .hp-pricing__card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 32px 28px 28px;
	border-radius: 16px;
	background: var(--hp-elevated);
	border: 1px solid var(--hp-border);
	box-shadow: 0 8px 28px var(--hp-shadow-soft);
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.hp-home .hp-pricing__card:hover {
	border-color: rgba(var(--brand-primary-rgb), 0.25);
	box-shadow: 0 16px 40px var(--hp-shadow-strong);
}

.hp-home .hp-pricing__card--featured {
	background: var(--accent-color);
	border-color: var(--accent-color);
	color: var(--white-color);
	transform: translateY(-6px);
	box-shadow: 0 20px 48px rgba(var(--brand-primary-rgb), 0.28);
}

.hp-home .hp-pricing__card--featured:hover {
	border-color: var(--accent-color);
	box-shadow: 0 24px 52px rgba(var(--brand-primary-rgb), 0.32);
}

.hp-home .hp-pricing__badge {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 6px 14px;
	border-radius: 999px;
	background: #f5a623;
	color: var(--white-color);
	font-family: var(--default-font);
	font-size: 11px;
	font-weight: 700;
	line-height: 1.2em;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	white-space: nowrap;
}

.hp-home .hp-pricing__card-head {
	margin-bottom: 24px;
}

.hp-home .hp-pricing__plan {
	margin: 0 0 10px;
	font-family: var(--default-font);
	font-size: 22px;
	font-weight: 600;
	line-height: 1.25em;
	color: var(--hp-heading);
}

.hp-home .hp-pricing__card--featured .hp-pricing__plan,
.hp-home .hp-pricing__card--featured .hp-pricing__desc {
	color: var(--white-color);
}

.hp-home .hp-pricing__desc {
	margin: 0;
	font-family: var(--default-font);
	font-size: 15px;
	line-height: 1.6em;
	color: var(--hp-body);
}

.hp-home .hp-pricing__price-wrap {
	margin-bottom: 24px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--hp-border);
}

.hp-home .hp-pricing__card--featured .hp-pricing__price-wrap {
	border-bottom-color: rgba(255, 255, 255, 0.2);
}

.hp-home .hp-pricing__price {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 2px 4px;
	margin: 0;
	font-family: var(--default-font);
	color: var(--hp-heading);
}

.hp-home .hp-pricing__card--featured .hp-pricing__price {
	color: var(--white-color);
}

.hp-home .hp-pricing__amount {
	font-size: clamp(40px, 4vw, 52px);
	font-weight: 600;
	line-height: 1;
	letter-spacing: -0.02em;
}

.hp-home .hp-pricing__currency {
	font-size: 28px;
	font-weight: 600;
	line-height: 1;
}

.hp-home .hp-pricing__period {
	font-size: 15px;
	font-weight: 500;
	color: var(--hp-body);
}

.hp-home .hp-pricing__card--featured .hp-pricing__period {
	color: rgba(255, 255, 255, 0.82);
}

.hp-home .hp-pricing__features {
	flex: 1;
	margin: 0 0 28px;
	padding: 0;
	list-style: none;
}

.hp-home .hp-pricing__features li {
	position: relative;
	padding-left: 28px;
	margin-bottom: 12px;
	font-family: var(--default-font);
	font-size: 15px;
	line-height: 1.5em;
	color: var(--hp-heading);
}

.hp-home .hp-pricing__features li:last-child {
	margin-bottom: 0;
}

.hp-home .hp-pricing__card--featured .hp-pricing__features li {
	color: rgba(255, 255, 255, 0.95);
}

.hp-home .hp-pricing__features li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 3px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: rgba(var(--brand-primary-rgb), 0.12);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8.5L6.5 11.5L12.5 4.5' stroke='%236C01B1' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 12px 12px;
}

.hp-home .hp-pricing__card--featured .hp-pricing__features li::before {
	background-color: rgba(255, 255, 255, 0.18);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8.5L6.5 11.5L12.5 4.5' stroke='%23ffffff' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.hp-home .hp-pricing__cta-wrap {
	margin-top: auto;
}

.hp-home .hp-pricing__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 14px 20px;
	border-radius: 10px;
	font-family: var(--default-font);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2em;
	text-decoration: none;
	text-align: center;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.hp-home .hp-pricing__cta--outline {
	border: 1px solid var(--accent-color);
	background: transparent;
	color: var(--accent-color);
}

.hp-home .hp-pricing__cta--outline:hover {
	background: var(--accent-color);
	color: var(--white-color);
}

.hp-home .hp-pricing__cta--solid {
	border: 1px solid var(--white-color);
	background: var(--white-color);
	color: var(--accent-color);
}

.hp-home .hp-pricing__cta--solid:hover {
	background: rgba(255, 255, 255, 0.92);
	border-color: rgba(255, 255, 255, 0.92);
	color: var(--accent-color);
}

.hp-home .hp-pricing__note {
	margin: 40px 0 0;
	text-align: center;
	font-family: var(--default-font);
	font-size: 14px;
	line-height: 1.5em;
	color: var(--hp-body);
}

/* --- Testimonials ------------------------------------------------ */
.hp-home .hp-testimonials {
	padding: 120px 0 100px;
	background: var(--hp-bg);
}

.hp-home .hp-testimonials .section-row {
	margin-bottom: 56px;
}

.hp-home .hp-testimonials__grid {
	--bs-gutter-y: 24px;
}

.hp-home .hp-testimonial {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 32px 30px 28px;
	border-radius: 16px;
	background: var(--hp-elevated);
	border: 1px solid var(--hp-border-soft);
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.hp-home .hp-testimonial:hover {
	border-color: rgba(var(--brand-primary-rgb), 0.3);
	box-shadow: 0 12px 32px var(--hp-shadow-soft);
}

.hp-home .hp-testimonial__rating {
	display: flex;
	gap: 4px;
	margin-bottom: 18px;
	color: var(--accent-color);
	font-size: 14px;
}

.hp-home .hp-testimonial__quote {
	flex: 1;
	margin: 0 0 28px;
	font-size: 16px;
	line-height: 1.7;
	color: var(--hp-heading);
}

.hp-home .hp-testimonial__author {
	display: flex;
	align-items: center;
	gap: 14px;
	padding-top: 22px;
	border-top: 1px solid var(--hp-border);
}

.hp-home .hp-testimonial__avatar {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--accent-color);
	color: var(--white-color);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.hp-home .hp-testimonial__name {
	margin: 0;
	font-size: 17px;
	font-weight: 600;
	color: var(--hp-heading);
}

.hp-home .hp-testimonial__role {
	margin: 4px 0 0;
	font-size: 14px;
	color: var(--hp-body);
}

.hp-home .hp-testimonials__footer {
	margin-top: 56px;
	text-align: center;
}

.hp-home .hp-testimonials__footer > p {
	margin: 0 0 16px;
	font-size: 16px;
	color: var(--hp-body);
}

.hp-home .hp-testimonials__score {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
}

.hp-home .hp-testimonials__score-value {
	font-size: 28px;
	font-weight: 700;
	color: var(--hp-heading);
}

.hp-home .hp-testimonials__score-max {
	font-size: 16px;
	color: var(--hp-body);
}

.hp-home .hp-testimonials__score-stars {
	display: inline-flex;
	gap: 3px;
	color: var(--accent-color);
	font-size: 14px;
}

/* --- FAQ --------------------------------------------------------- */
.hp-home .hp-faq {
	padding: 120px 0 80px;
	margin-top: 0;
	margin-bottom: 0;
	border-radius: 20px;
}

.hp-home .hp-faq .section-title {
	margin-bottom: 0;
}

.hp-home .hp-faq .section-title h3 {
	background-color: var(--hp-badge-bg);
}

.hp-home .hp-faq .section-title h2 {
	font-size: clamp(32px, 3vw, 44px);
	font-weight: 500;
	line-height: 1.15em;
}

.hp-home .hp-faq .section-title p {
	margin-top: 16px;
	font-size: 16px;
	line-height: 1.75em;
	color: var(--hp-body);
	max-width: 420px;
}

.hp-home .hp-faq .faq-accordion .accordion-item {
	background: var(--hp-elevated);
	border: 1px solid var(--hp-border-soft);
	margin-bottom: 16px;
}

.hp-home .hp-faq .faq-accordion .accordion-header .accordion-button {
	font-size: 16px;
	padding: 20px 60px 20px 24px;
}

.hp-home .hp-faq .faq-accordion .accordion-item .accordion-body {
	padding: 0 24px 22px;
}

.hp-home .hp-faq .faq-accordion .accordion-item .accordion-body p {
	font-size: 15px;
	line-height: 1.7;
}

/* --- Contact ----------------------------------------------------- */
.hp-home .hp-contact {
	padding: 120px 0 130px;
	background: var(--hp-bg-muted);
}

.hp-home .hp-contact__intro.section-title {
	margin-bottom: 40px;
}

.hp-home .hp-contact__intro.section-title h3 {
	background-color: var(--hp-badge-bg);
}

.hp-home .hp-contact__intro.section-title h2 {
	font-size: clamp(32px, 3vw, 44px);
	font-weight: 500;
	line-height: 1.15em;
}

.hp-home .hp-contact__intro.section-title p {
	margin-top: 16px;
	font-size: 16px;
	line-height: 1.75em;
	color: var(--hp-body);
	max-width: 420px;
}

.hp-home .hp-contact__details {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.hp-home .hp-contact__detail {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 20px 22px;
	border-radius: 14px;
	background: var(--hp-elevated);
	border: 1px solid var(--hp-border);
	box-shadow: 0 6px 24px var(--hp-shadow-soft);
}

.hp-home .hp-contact__detail-icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(var(--brand-primary-rgb), 0.1);
	color: var(--accent-color);
	font-size: 18px;
}

.hp-home .hp-contact__detail-body {
	min-width: 0;
}

.hp-home .hp-contact__detail-label {
	display: block;
	margin-bottom: 4px;
	font-family: var(--default-font);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.3em;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--hp-body-muted);
}

.hp-home .hp-contact__detail-value {
	display: inline-block;
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5em;
	color: var(--hp-heading);
	text-decoration: none;
}

a.hp-contact__detail-value:hover,
a.hp-contact__detail-value:focus-visible {
	color: var(--accent-color);
}

.hp-home .hp-contact__detail-value--text {
	margin: 0;
}

.hp-home .hp-contact__panel {
	padding: 36px 32px 32px;
	border-radius: 16px;
	background: var(--hp-elevated);
	border: 1px solid var(--hp-border);
	box-shadow: 0 12px 40px var(--hp-shadow-soft);
}

.hp-home .hp-contact__form-title {
	margin: 0 0 8px;
	font-family: var(--default-font);
	font-size: clamp(22px, 2.2vw, 28px);
	font-weight: 600;
	line-height: 1.25em;
	color: var(--hp-heading);
}

.hp-home .hp-contact__form-lead {
	margin: 0 0 28px;
	font-family: var(--default-font);
	font-size: 15px;
	line-height: 1.6em;
	color: var(--hp-body);
}

.hp-home .hp-contact__label {
	display: block;
	margin-bottom: 8px;
	font-family: var(--default-font);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35em;
	color: var(--hp-heading);
}

.hp-home .hp-contact__input {
	display: block;
	width: 100%;
	padding: 12px 16px;
	border: 1px solid var(--hp-border);
	border-radius: 10px;
	background: var(--hp-bg);
	color: var(--hp-heading);
	font-family: var(--default-font);
	font-size: 16px;
	line-height: 1.5em;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.hp-home .hp-contact__input::placeholder {
	color: var(--hp-body-muted);
	opacity: 1;
}

.hp-home .hp-contact__input:hover {
	border-color: rgba(var(--brand-primary-rgb), 0.35);
}

.hp-home .hp-contact__input:focus {
	outline: none;
	border-color: var(--accent-color);
	box-shadow: 0 0 0 3px rgba(var(--brand-primary-rgb), 0.18);
	background: var(--hp-elevated);
}

.hp-home .hp-contact__textarea {
	min-height: 140px;
	resize: vertical;
}

.hp-home .hp-contact__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-top: 8px;
	padding: 14px 24px;
	border: 0;
	border-radius: 10px;
	font-family: var(--default-font);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2em;
	cursor: pointer;
}

.hp-home .hp-contact__submit:focus-visible {
	outline: 2px solid var(--accent-color);
	outline-offset: 2px;
}

/* --- Hero 50/50 desktop ----------------------------------------- */
@media (min-width: 992px) {
	.hp-home .hp-hero .row > .col-lg-6 {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.hp-home .hp-hero .row > .col-lg-6:first-child {
		padding-right: 28px;
	}

	.hp-home .hp-hero .row > .col-lg-6:last-child {
		padding-left: 28px;
		display: flex;
		align-items: center;
	}

	.hp-home .hp-hero .row > .col-lg-6:last-child .hp-dc-wrap {
		flex: 1;
	}
}

/* --- Responsive ------------------------------------------------- */
@media (max-width: 991px) {
	.hp-home .hp-hero {
		min-height: 100vh;
		min-height: 100svh;
		padding: 120px 0 40px;
	}

	.hp-home .hp-hero__title-block h1 {
		font-size: 42px;
	}

	.hp-home .hp-hero__btn {
		margin-top: 30px;
	}

	.hp-home .hp-dc-wrap {
		margin-top: 24px;
	}

	.hp-home .hp-dc-chat {
		min-height: 480px;
		height: clamp(460px, 56vh, 580px);
		max-width: 100%;
	}

	.hp-home .hp-features,
	.hp-home .hp-split {
		padding: 70px 0;
	}

	.hp-home .hp-features {
		padding-bottom: 80px;
	}

	.hp-home .hp-features .feature-item {
		padding: 24px 22px;
	}

	.hp-home .hp-split .section-title p {
		max-width: 100%;
	}

	.hp-home .hp-split--alt {
		padding: 90px 0;
	}

	.hp-home .hp-steps {
		max-width: 100%;
		margin-top: 40px;
		gap: 14px;
	}

	.hp-home .hp-steps__item {
		padding: 22px 22px 24px;
	}

	.hp-home .hp-steps__text {
		padding-left: 0;
		margin-top: 4px;
	}

	.hp-home .hp-market-dash {
		margin-top: 32px;
	}

	.hp-home .hp-testimonials,
	.hp-home .hp-pricing,
	.hp-home .hp-faq,
	.hp-home .hp-contact {
		padding: 80px 0;
	}

	.hp-home .hp-faq .section-title {
		margin-bottom: 36px;
	}

	.hp-home .hp-contact__intro.section-title {
		margin-bottom: 32px;
	}

	.hp-home .hp-contact__panel {
		padding: 28px 22px 24px;
	}

	.hp-home .hp-testimonials__footer {
		margin-top: 40px;
	}

	.hp-home .hp-trust__logo {
		font-size: 18px;
	}

	.hp-home .hp-trust__marquee-strip {
		gap: 48px;
		padding-right: 48px;
	}
}

@media (max-width: 767px) {
	.hp-home .hp-hero {
		padding: 110px 0 36px;
	}

	.hp-home .hp-hero__title-block h1 {
		font-size: 34px;
	}

	.hp-home .hp-hero__btn {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}

	.hp-home .hp-dc-chat {
		min-height: 440px;
		height: clamp(420px, 52vh, 540px);
	}

	.hp-home .hp-dc-messages {
		min-height: 260px;
	}

	.hp-home .hp-trust__logo {
		font-size: 16px;
	}

	.hp-home .hp-dc-wrap::before {
		width: 300px;
		height: 300px;
	}
}

@media (max-width: 480px) {
	.hp-home .hp-hero {
		padding: 100px 0 32px;
	}

	.hp-home .hp-hero__title-block h1 {
		font-size: 30px;
	}

	.hp-home .hp-trust__marquee-track {
		animation-duration: 48s;
	}

	.hp-home .hp-pricing__card--featured {
		transform: none;
	}

	.hp-home .hp-pricing__billing-btn {
		padding: 10px 14px;
		font-size: 14px;
	}
}

/* --- Dark mode --------------------------------------------------- */
html[data-bs-theme="dark"] body.page-home,
html[data-bs-theme="dark"] body.page-home #wrapper,
html[data-bs-theme="dark"] body.page-home #page,
html[data-bs-theme="dark"] .hp-home {
	background-color: var(--bg-color);
	color: var(--text-color);
}

html[data-bs-theme="dark"] .page-home header.main-header .header-sticky {
	background: transparent;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}

html[data-bs-theme="dark"] .page-home header.main-header .header-sticky.active {
	background: rgba(10, 18, 21, 0.96) !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

html[data-bs-theme="dark"] .page-home header.main-header .main-menu ul ul {
	background: var(--hp-elevated);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

html[data-bs-theme="dark"] .hp-home .hp-hero::before,
html[data-bs-theme="dark"] .hp-home .hp-hero::after {
	opacity: var(--hp-hero-glow-opacity);
}

html[data-bs-theme="dark"] .hp-home .hp-dc-wrap::before {
	opacity: 0.3;
}

html[data-bs-theme="dark"] .hp-home .hp-dc-chat {
	background: var(--hp-chat-bg) !important;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

html[data-bs-theme="dark"] .hp-home .hp-dc-header,
html[data-bs-theme="dark"] .hp-home .hp-dc-footer {
	background: var(--hp-chat-header) !important;
}

html[data-bs-theme="dark"] .hp-home .hp-dc-messages,
html[data-bs-theme="dark"] .hp-home .hp-dc-composer {
	background: var(--hp-chat-bg) !important;
}

html[data-bs-theme="dark"] .hp-home .hp-dc-bubble {
	background: var(--hp-chat-bubble);
	color: var(--hp-chat-text);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

html[data-bs-theme="dark"] .hp-home .hp-dc-composer {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

html[data-bs-theme="dark"] .hp-home .hp-dc-input {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.1);
	color: var(--hp-chat-text);
}

html[data-bs-theme="dark"] .hp-home .hp-features .feature-item:hover {
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

html[data-bs-theme="dark"] .hp-home .hp-features__card,
html[data-bs-theme="dark"] .hp-home .hp-feature-chat__panel,
html[data-bs-theme="dark"] .hp-home .hp-elevate__card {
	background: var(--surface-color);
	border-color: rgba(255, 255, 255, 0.08);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

html[data-bs-theme="dark"] .hp-home .hp-pricing {
	background: var(--hp-bg-muted);
}

html[data-bs-theme="dark"] .hp-home .hp-pricing__card:hover {
	border-color: rgba(var(--brand-primary-rgb), 0.4);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

html[data-bs-theme="dark"] .hp-home .hp-pricing__price-wrap {
	border-bottom-color: rgba(255, 255, 255, 0.08);
}

html[data-bs-theme="dark"] .hp-home .hp-pricing__cta--outline {
	border-color: var(--accent-color);
	color: var(--accent-color);
}

html[data-bs-theme="dark"] .hp-home .hp-pricing__cta--solid {
	background: var(--black-color);
	color: var(--accent-color);
}

html[data-bs-theme="dark"] .hp-home .hp-testimonial:hover {
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

html[data-bs-theme="dark"] .hp-home .hp-testimonial__author {
	border-top-color: rgba(255, 255, 255, 0.08);
}

html[data-bs-theme="dark"] .hp-home .hp-faq .faq-accordion .accordion-header .accordion-button {
	background: var(--hp-elevated);
	color: var(--hp-heading);
}

html[data-bs-theme="dark"] .hp-home .hp-faq .faq-accordion .accordion-item .accordion-body p {
	color: var(--hp-body);
}

html[data-bs-theme="dark"] .hp-home .hp-contact {
	background: var(--hp-bg-muted);
}

html[data-bs-theme="dark"] .hp-home .hp-contact__detail {
	background: var(--hp-elevated);
	border-color: var(--hp-border);
	box-shadow: 0 8px 28px var(--hp-shadow-soft);
}

html[data-bs-theme="dark"] .hp-home .hp-contact__detail-icon {
	background: rgba(var(--brand-primary-rgb), 0.18);
	color: #c89ef0;
}

html[data-bs-theme="dark"] .hp-home .hp-contact__panel {
	background: var(--hp-elevated);
	border-color: var(--hp-border);
	box-shadow: 0 12px 40px var(--hp-shadow-strong);
}

html[data-bs-theme="dark"] .hp-home .hp-contact__input {
	background: var(--surface-color);
	border-color: var(--hp-border);
	color: var(--hp-heading);
}

html[data-bs-theme="dark"] .hp-home .hp-contact__input:hover {
	border-color: rgba(var(--brand-primary-rgb), 0.45);
}

html[data-bs-theme="dark"] .hp-home .hp-contact__input:focus {
	background: var(--surface-elevated);
	border-color: var(--accent-color);
	box-shadow: 0 0 0 3px rgba(var(--brand-primary-rgb), 0.28);
}

html[data-bs-theme="dark"] .hp-home .hp-contact__input::placeholder {
	color: var(--hp-body-muted);
}

html[data-bs-theme="dark"] .hp-home .bg-section {
	background-color: var(--hp-bg-muted);
}

html[data-bs-theme="dark"] .hp-home .hp-steps__item:hover {
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

html[data-bs-theme="dark"] .hp-home .hp-market-dash__header {
	border-bottom-color: rgba(255, 255, 255, 0.08);
}

html[data-bs-theme="dark"] .hp-home .hp-market-dash__kpi {
	background: rgba(255, 255, 255, 0.04);
}

html[data-bs-theme="dark"] .page-home .hp-home :is(
	.section-title h1,
	.section-title h2,
	.hp-hero__title-block h1,
	.hp-features .feature-item-content h3,
	.hp-testimonial__quote,
	.hp-pricing__plan,
	.hp-steps__title,
	.hp-market-dash__title,
	.hp-contact__form-title,
	.hp-contact__detail-value
) {
	color: var(--hp-heading);
}

html[data-bs-theme="dark"] .page-home .hp-home .section-title h3,
html[data-bs-theme="dark"] .page-home .bg-section .section-title h3 {
	background-color: var(--hp-badge-bg);
	color: var(--hp-heading);
}

