:root {
	--ecom-primary: #0f172a;
	--ecom-primary-light: #1e293b;
	--ecom-secondary: #e17a10;
	--ecom-secondary-light: #f69e25;
	--ecom-orange-soft: #f59b36;
	--ecom-success: #22c55e;
	--ecom-border: #e2e8f0;
	--ecom-muted: #64748b;
	--ecom-card: #ffffff;
	--ecom-radius: 12px;
	--ecom-gradient-primary: linear-gradient(135deg, var(--ecom-secondary), var(--ecom-secondary-light));
	--ecom-gradient-dark: linear-gradient(135deg, var(--ecom-primary), var(--ecom-primary-light));
}

.ecom-section-soft,
.ecom-section-dark {
	width: 100%;
	max-width: none;
}

.text-gradient-hero,
.ecom-gradient-text {
	background-image: linear-gradient(90deg, #6f4f3b 0%, #d78a2f 54%, #0b1020 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.bg-gradient-primary,
.ecom-gradient-primary {
	background-image: var(--ecom-gradient-primary);
}

.ecom-section-soft {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 16% 18%, rgb(245 155 54 / 0.045), transparent 28%),
		radial-gradient(circle at 86% 16%, rgb(15 23 42 / 0.035), transparent 30%),
		#ffffff;
}

.ecom-section-soft::before {
	position: absolute;
	inset: 0;
	content: "";
	background-image: radial-gradient(circle, rgb(148 163 184 / 0.58) 1.1px, transparent 1.1px);
	background-size: 22px 22px;
	opacity: 0.62;
	pointer-events: none;
}

.ecom-section-grid::before {
	background-image:
		linear-gradient(rgb(226 232 240 / 0.58) 1px, transparent 1px),
		linear-gradient(90deg, rgb(226 232 240 / 0.58) 1px, transparent 1px);
	background-size: 22px 22px;
	opacity: 0.42;
}

.ecom-section-soft > .section-content {
	position: relative;
	z-index: 1;
}

.ecom-section-dark {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle, rgb(100 116 139 / 0.25) 1px, transparent 1px) 0 0 / 22px 22px,
		linear-gradient(135deg, #0f172a 0%, #1d2b46 100%);
	color: #ffffff;
}

.bg-dots,
.ecom-dots {
	background-image: radial-gradient(circle, rgb(148 163 184 / 0.58) 1.1px, transparent 1.1px);
	background-size: 22px 22px;
}

.bg-dots-black,
.ecom-dots-black {
	background-image: radial-gradient(circle, rgb(0 0 0 / 0.2) 1px, transparent 1px);
	background-size: 20px 20px;
}

.bg-grid,
.ecom-grid {
	background-image:
		linear-gradient(rgb(226 232 240 / 0.75) 1px, transparent 1px),
		linear-gradient(90deg, rgb(226 232 240 / 0.75) 1px, transparent 1px);
	background-size: 20px 20px;
}

.underline-animate {
	position: relative;
	display: inline-block;
}

.underline-animate::after {
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	content: "";
	background: var(--ecom-secondary);
	transition: width 0.3s ease;
}

.underline-animate:hover::after {
	width: 100%;
}

.card-hover,
.ecom-card-hover {
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card-hover:hover,
.ecom-card-hover:hover {
	transform: translateY(-5px);
	box-shadow: 0 18px 40px rgb(15 23 42 / 0.1);
}

.float-badge {
	animation: ecom-float-up-down 3s ease-in-out infinite;
	will-change: transform;
}

@keyframes ecom-float-up-down {
	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}
}

.btn-sparkle-animated {
	position: relative;
	z-index: 1;
	overflow: visible !important;
	animation: ecom-button-pulse 3s ease-in-out infinite;
	transform-origin: center;
}

.btn-sparkle-animated .btn-bg {
	position: absolute;
	inset: 0;
	z-index: -1;
	overflow: hidden;
	background: inherit;
	border-radius: inherit;
}

.btn-sparkle-animated .btn-bg::before {
	position: absolute;
	top: -200%;
	bottom: -200%;
	left: -200%;
	width: 50%;
	content: "";
	background: linear-gradient(to right, transparent, rgb(255 255 255 / 0.42), transparent);
	animation: ecom-shine 4s infinite ease-in-out;
	transform: rotate(25deg);
	pointer-events: none;
}

.btn-sparkle-animated::before,
.btn-sparkle-animated::after,
.btn-sparkle-animated .sparkle-inner::before,
.btn-sparkle-animated .sparkle-inner::after,
.btn-sparkle-animated .sparkle-5::before {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 20;
	width: 16px;
	height: 16px;
	content: "";
	background-color: #ffd700;
	clip-path: polygon(50% 0%, 61% 35%, 100% 50%, 61% 65%, 50% 100%, 39% 65%, 0% 50%, 39% 35%);
	opacity: 0;
	transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
	transform: translate(-50%, -50%) scale(0) rotate(0deg);
	pointer-events: none;
}

.btn-sparkle-animated:hover::before,
.btn-sparkle-animated:hover::after,
.btn-sparkle-animated:hover .sparkle-inner::before,
.btn-sparkle-animated:hover .sparkle-inner::after,
.btn-sparkle-animated:hover .sparkle-5::before {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1) rotate(90deg);
}

.btn-sparkle-animated:hover::before {
	top: -8px;
	left: 15%;
}

.btn-sparkle-animated::after {
	width: 12px;
	height: 12px;
}

.btn-sparkle-animated:hover::after {
	top: calc(100% + 8px);
	left: 80%;
}

.btn-sparkle-animated .sparkle-inner::before {
	width: 20px;
	height: 20px;
}

.btn-sparkle-animated:hover .sparkle-inner::before {
	top: 5%;
	left: calc(100% + 10px);
}

.btn-sparkle-animated .sparkle-inner::after {
	width: 14px;
	height: 14px;
}

.btn-sparkle-animated:hover .sparkle-inner::after {
	top: 85%;
	left: -8px;
}

.btn-sparkle-animated .sparkle-5::before {
	width: 10px;
	height: 10px;
}

.btn-sparkle-animated:hover .sparkle-5::before {
	top: -12px;
	left: 60%;
}

@keyframes ecom-button-pulse {
	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.03);
	}
}

@keyframes ecom-shine {
	0% {
		left: -200%;
	}

	30%,
	100% {
		left: 200%;
	}
}

.ecom-stat-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.ecom-process-icon {
	width: 90px;
	height: 90px;
	object-fit: contain;
}

.ecom-funnel-image {
	width: min(100%, 430px);
	max-height: 620px;
	object-fit: contain;
}

.ecom-hero-section {
	min-height: 850px;
	padding-top: 46px !important;
	padding-bottom: 120px !important;
}

.ecom-hero-section .ecom-hero-copy {
	width: 100%;
	max-width: 620px;
	margin-right: auto;
	margin-left: 0;
	padding-top: 78px;
}

.ecom-hero-section .ecom-hero-media {
	max-width: 610px;
	margin-left: auto;
	margin-top: -8px;
}

.ecom-hero-section h1 {
	letter-spacing: 0;
	font-size: clamp(48px, 4.8vw, 64px) !important;
	line-height: 1.04 !important;
	font-weight: 800 !important;
	color: #060b1a;
	margin-bottom: 20px !important;
}

.ecom-hero-section h1 br {
	display: block;
}

.ecom-hero-section p {
	color: #718096;
}

.ecom-hero-badge,
.ecom-pill {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 10px 16px;
	border-radius: 999px;
	background: #f3f6fa;
	color: #101828;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	box-shadow: 0 1px 0 rgb(15 23 42 / 0.04);
}

.ecom-hero-badge::before,
.ecom-pill::before {
	width: 14px;
	height: 14px;
	content: "";
	background: var(--ecom-secondary);
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='22 7 13.5 15.5 8.5 10.5 2 17'/%3E%3Cpolyline points='16 7 22 7 22 13'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='22 7 13.5 15.5 8.5 10.5 2 17'/%3E%3Cpolyline points='16 7 22 7 22 13'/%3E%3C/svg%3E") center / contain no-repeat;
}

.ecom-hero-desc {
	max-width: 610px;
	font-size: 21px;
	line-height: 1.48;
	color: #718096;
}

.ecom-hero-section .ecom-stat-grid {
	margin: 52px 0 54px;
	gap: 34px;
}

.ecom-hero-section .ecom-stat-grid strong {
	display: block;
	font-size: 31px;
	line-height: 1.1;
	color: #091021;
}

.ecom-hero-section .ecom-stat-grid span {
	display: block;
	margin-top: 6px;
	font-size: 14px;
	color: #111827;
}

.ecom-hero-actions {
	display: flex;
	flex-wrap: nowrap;
	gap: 14px;
	align-items: center;
	width: 100%;
}

.ecom-hero-actions .button {
	min-height: 62px;
	margin: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	font-size: 18px;
	font-weight: 800;
	text-transform: none;
	letter-spacing: 0;
}

.ecom-hero-actions .button.primary {
	flex: 0 1 340px;
}

.ecom-hero-actions .button.is-outline {
	flex: 0 1 240px;
}

.ecom-hero-actions .button.primary {
	background: linear-gradient(135deg, #f08a00, #ed9a22);
	box-shadow: 0 18px 35px rgb(225 122 16 / 0.25);
}

.ecom-hero-actions .button.is-outline {
	border-color: #d9e2ee;
	background: rgb(255 255 255 / 0.72);
	color: #0b1020;
}

.ecom-hero-image-wrap {
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 18px 60px rgb(15 23 42 / 0.12);
}

.ecom-hero-image-wrap img {
	display: block;
	width: 100%;
	height: 780px !important;
	min-height: 780px;
	object-fit: cover;
	object-position: 50% 0%;
}

.ecom-live-badge {
	position: absolute;
	top: -22px;
	right: -26px;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 18px 20px;
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 12px 34px rgb(15 23 42 / 0.16);
	color: #111827;
	font-size: 15px;
	font-weight: 800;
}

.ecom-live-badge::before {
	width: 12px;
	height: 12px;
	content: "";
	border-radius: 999px;
	background: #f59b36;
}

.ecom-conversion-badge {
	position: absolute;
	bottom: -18px;
	left: -42px;
	min-width: 112px;
	padding: 20px 18px;
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 12px 34px rgb(15 23 42 / 0.16);
	text-align: center;
	color: #101828;
}

.ecom-conversion-badge strong {
	display: block;
	font-size: 24px;
	line-height: 1.1;
}

.ecom-conversion-badge span {
	display: block;
	margin-top: 8px;
	font-size: 13px;
}

.ecom-hero-trust {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
	margin-top: 30px;
	padding-top: 28px;
	border-top: 1px solid rgb(226 232 240 / 0.95);
	color: #7a879b;
	font-size: 16px;
}

.ecom-hero-trust span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.ecom-hero-trust span::before {
	width: 15px;
	height: 15px;
	content: "";
	border-radius: 999px;
	border: 2px solid #e6eef7;
}

.ecom-hero-trust span + span::before {
	border-color: #f59b36;
}

.ecom-process-section {
	padding-top: 138px !important;
}

.ecom-section-heading {
	max-width: 860px;
	margin: 0 auto 76px;
	text-align: center;
}

.ecom-section-heading h2 {
	margin: 26px 0 24px;
	font-size: clamp(42px, 4.7vw, 58px);
	line-height: 1.04;
	font-weight: 800;
	color: #081020;
	letter-spacing: 0;
}

.ecom-section-heading p {
	max-width: 780px;
	margin: 0 auto;
	font-size: 24px;
	line-height: 1.48;
	color: #718096;
}

.ecom-process-timeline {
	position: relative;
}

.ecom-process-timeline::before {
	position: absolute;
	top: 40px;
	bottom: 40px;
	left: 50%;
	width: 1px;
	content: "";
	background: linear-gradient(to bottom, #e5eaf0 0%, #6f7c8d 45%, #e58d2a 100%);
}

.ecom-process-card {
	position: relative;
	min-height: 330px;
	padding: 45px 38px 38px 38px !important;
	border: 1px solid #dfe7f0 !important;
	border-radius: 12px !important;
	background: rgb(255 255 255 / 0.84) !important;
	box-shadow: 0 1px 1px rgb(15 23 42 / 0.02);
}

.ecom-process-card--offset {
	margin-top: 86px;
}

.ecom-step-number {
	position: absolute;
	top: -18px;
	left: 38px;
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: #e6952d;
	box-shadow: 0 10px 24px rgb(230 149 45 / 0.32);
	color: #fff;
	font-size: 15px;
	font-weight: 800;
}

.ecom-process-card p:first-of-type {
	margin: 0 0 16px;
}

.ecom-process-card h3 {
	margin-top: 0;
	margin-bottom: 88px;
	color: #0b1020;
	font-size: 24px;
	font-weight: 800;
	letter-spacing: 0;
}

.ecom-process-card p:last-child {
	margin-bottom: 0;
	color: #718096;
	font-size: 20px;
	line-height: 1.48;
}

.ecom-process-card .ecom-process-icon {
	float: left;
	width: 92px;
	height: 92px;
	margin-right: 34px;
	object-fit: contain;
}

.ecom-process-cta {
	width: min(100% - 64px, 1060px);
	margin: 118px auto 0;
	padding: 58px 48px;
	border: 1px solid #e2e8f0;
	border-radius: 18px;
	background: rgb(255 255 255 / 0.78);
	box-shadow: 0 16px 60px rgb(15 23 42 / 0.04);
	text-align: center;
}

.ecom-process-cta h3 {
	font-size: 35px;
	line-height: 1.2;
	font-weight: 800;
}

.ecom-process-cta p {
	max-width: 760px;
	margin-right: auto;
	margin-left: auto;
	font-size: 22px;
	color: #718096;
}

.ecom-process-actions {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 24px;
	margin-top: 32px;
}

.ecom-process-cta .button {
	flex: 0 1 360px;
	min-width: 0;
	min-height: 74px;
	margin: 0;
	border-radius: 8px;
	font-size: 22px;
	font-weight: 800;
	text-transform: none;
	letter-spacing: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	vertical-align: middle;
}

.ecom-process-cta .button.primary {
	background: linear-gradient(135deg, #df8727, #eca43c);
	color: #ffffff;
	box-shadow: 0 18px 34px rgb(225 122 16 / 0.24);
	border-color: transparent;
}

.ecom-process-cta .button.white {
	background: #f3f6fa;
	color: #071021;
	box-shadow: 0 14px 30px rgb(15 23 42 / 0.1);
	border-color: transparent;
}

.ecom-funnel-panel {
	width: min(100% - 64px, 1180px);
	margin: 0 auto;
	padding: 74px 66px;
	border: 1px solid #e4eaf2;
	border-radius: 18px;
	background: rgb(255 255 255 / 0.72);
}

.ecom-funnel-panel h2 {
	margin-bottom: 40px;
	font-size: clamp(34px, 3.2vw, 48px);
	line-height: 1.15;
	font-weight: 800;
	text-align: center;
}

.ecom-funnel-copy {
	max-width: 650px;
}

.ecom-funnel-point {
	position: relative;
	margin-top: 28px;
	padding-left: 30px;
}

.ecom-funnel-point::before {
	position: absolute;
	top: 10px;
	left: 0;
	width: 9px;
	height: 9px;
	content: "";
	border-radius: 2px;
	background: #9ca3af;
	transform: rotate(45deg);
}

.ecom-funnel-point h3 {
	margin-bottom: 12px;
	font-size: 23px;
	line-height: 1.25;
	font-weight: 800;
	color: #171717;
}

.ecom-funnel-point h3 span {
	color: #737373;
	font-weight: 700;
}

.ecom-funnel-point p {
	font-size: 20px;
	line-height: 1.48;
	color: #525252;
}

.ecom-funnel-button-wrap {
	margin-top: 38px;
	text-align: center;
}

.ecom-funnel-panel .button.primary {
	min-width: 170px;
	min-height: 62px;
	border-radius: 999px;
	background: #fb923c;
	border-color: transparent;
	box-shadow: none;
	font-size: 20px;
	font-weight: 800;
	text-transform: none;
	letter-spacing: 0;
}

@media (max-width: 1100px) {
	.ecom-funnel-panel {
		width: min(100% - 40px, 820px);
		padding: 58px 42px;
	}

	.ecom-funnel-image {
		width: min(100%, 360px);
		margin-bottom: 34px;
	}

	.ecom-funnel-copy {
		max-width: 620px;
		margin-right: auto;
		margin-left: auto;
	}

	.ecom-funnel-panel h2 {
		font-size: clamp(34px, 5vw, 46px);
	}
}

.ecom-case-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 38px 34px 34px !important;
	border: 1px solid rgb(225 122 16 / 0.28) !important;
	border-radius: 14px !important;
	background:
		linear-gradient(180deg, rgb(255 247 237 / 0.78), rgb(255 255 255 / 0.72)),
		rgb(255 255 255 / 0.64) !important;
}

.ecom-case-card .ecom-case-badge {
	position: absolute;
	top: -15px;
	left: 30px;
	display: inline-flex;
	padding: 7px 18px;
	border-radius: 999px;
	background: #eb9638;
	color: #fff;
	font-size: 15px;
	font-weight: 800;
}

.ecom-case-card h3 {
	margin-bottom: 12px;
	color: #071021;
	font-size: 24px;
	line-height: 1.18;
	font-weight: 800;
}

.ecom-case-card p {
	color: #718096;
	font-size: 17px;
	line-height: 1.45;
}

.ecom-case-link,
.ecom-case-status {
	display: inline-block;
	margin: 14px 0 22px;
	color: #111827;
	font-size: 16px;
	font-weight: 800;
}

.ecom-case-status {
	color: #f1993b;
	text-transform: uppercase;
}

.ecom-case-divider {
	height: 1px;
	margin: 22px 0;
	background: #eef2f7;
}

.ecom-case-card .ecom-stat-grid {
	gap: 14px;
	text-align: center;
}

.ecom-case-card .ecom-stat-grid strong {
	color: #f1993b;
	font-size: 24px;
	line-height: 1.1;
	font-weight: 800;
}

.ecom-case-card .ecom-stat-grid span {
	display: block;
	margin-top: 8px;
	color: #718096;
	font-size: 14px;
	line-height: 1.25;
}

.ecom-case-card > p:last-child {
	margin-top: auto;
	margin-bottom: 0;
}

.ecom-case-card .button {
	width: 100%;
	min-height: 56px;
	margin: 0;
	border-radius: 7px;
	font-size: 17px;
	font-weight: 800;
	text-transform: none;
	letter-spacing: 0;
}

.ecom-case-card .button.primary {
	background: linear-gradient(135deg, #df8727, #eca43c);
	border-color: transparent;
	color: #fff;
}

.ecom-case-card .button.white {
	background: #f3f6fa;
	border-color: transparent;
	color: #111827;
}

.button,
button,
input[type="submit"] {
	border-radius: 8px;
}

@media (max-width: 549px) {
	.ecom-stat-grid {
		gap: 0.75rem;
	}

	.ecom-process-icon {
		width: 72px;
		height: 72px;
	}
}

@media (max-width: 849px) {
	.ecom-hero-section {
		min-height: auto;
	}

	.ecom-hero-section .ecom-hero-copy {
		padding-top: 0;
	}

	.ecom-hero-section .ecom-hero-media {
		max-width: 520px;
		margin-right: auto;
		margin-left: auto;
		margin-top: 0;
	}

	.ecom-hero-image-wrap img {
		height: auto !important;
		min-height: 0;
	}

	.ecom-hero-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.ecom-hero-actions .button.primary,
	.ecom-hero-actions .button.is-outline {
		width: 100%;
		flex-basis: auto;
	}

	.ecom-process-timeline::before {
		display: none;
	}

	.ecom-process-card--offset {
		margin-top: 0;
	}

	.ecom-process-card {
		min-height: auto;
	}

	.ecom-process-cta .button {
		width: 100%;
		min-width: 0;
		margin-right: 0;
		margin-left: 0;
	}

	.ecom-process-actions {
		flex-direction: column;
		align-items: stretch;
		gap: 16px;
	}

	.ecom-process-actions .button {
		flex-basis: auto;
	}

	.ecom-funnel-panel {
		width: min(100% - 32px, 680px);
		padding: 42px 24px;
	}

	.ecom-funnel-point h3 {
		font-size: 21px;
	}

	.ecom-funnel-point p {
		font-size: 17px;
	}
}
