:root {
	--isend-emerald-50: #ecfdf5;
	--isend-emerald-100: #d1fae5;
	--isend-emerald-200: #a7f3d0;
	--isend-emerald-500: #10b981;
	--isend-emerald-600: #059669;
	--isend-emerald-700: #047857;
	--isend-slate-50: #f8fafc;
	--isend-slate-100: #f1f5f9;
	--isend-slate-200: #e2e8f0;
	--isend-slate-300: #cbd5e1;
	--isend-slate-400: #94a3b8;
	--isend-slate-500: #64748b;
	--isend-slate-600: #475569;
	--isend-slate-700: #334155;
	--isend-slate-800: #1e293b;
	--isend-slate-900: #0f172a;
}

html, body {
	min-height: 100%;
	font-family: "Inter", sans-serif;
}

.isend-header {
	z-index: 1030;
	background: rgba(255, 255, 255, .98);
	border-bottom: 1px solid var(--isend-slate-100);
	transition: border-color .2s ease, box-shadow .2s ease;
}

.isend-header.is-scrolled {
	border-bottom-color: var(--isend-slate-200);
	box-shadow: 0 1px 8px rgba(0, 0, 0, .06);
}

.isend-navbar-container {
	width: 100%;
	max-width: 1320px;
	height: 72px;
	margin: 0 auto;
	padding-right: 32px;
	padding-left: 32px;
}

.isend-brand-group {
	display: flex;
	flex-shrink: 0;
	align-items: center;
}

.isend-logo-link {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	margin-right: 20px;
	text-decoration: none;
}

.isend-logo {
	display: block;
	width: auto;
	/* height: 34px; */
	height: 45px;
	object-fit: contain;
}

.isend-brand-divider {
	width: 1px;
	height: 22px;
	margin-right: 16px;
	background: var(--isend-slate-200);
}

.isend-meta-badge {
	align-items: center;
	flex-shrink: 0;
	/* padding: 6px 10px; */
	padding: 0;
	white-space: nowrap;
	/* background: var(--isend-slate-50); */
	/* border: 1px solid var(--isend-slate-200); */
	/* border-radius: 8px; */
}

.isend-meta-badge-img {
	display: block;
	width: auto;
	height: 35px;
	object-fit: contain;
}

.isend-meta-text {
	display: flex;
	flex-direction: column;
	gap: 3px;
	line-height: 1;
}

.isend-meta-text strong {
	color: var(--isend-slate-700);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: -.02em;
}

.isend-meta-text small {
	color: var(--isend-slate-400);
	font-size: 9px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.isend-main-nav {
	align-items: center;
	gap: 2px;
	margin-left: 40px;
}

.isend-nav-link {
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 8px 12px !important;
	color: var(--isend-slate-600);
	font-size: 15px;
	font-weight: 600;
	line-height: 20px;
	white-space: nowrap;
	background: transparent;
	border: 0;
	border-radius: 8px;
	transition: color .15s ease, background-color .15s ease;
}

.isend-nav-link:hover, .isend-nav-link:focus, .isend-nav-link.show {
	color: var(--isend-slate-900);
	background: var(--isend-slate-50);
}

.isend-nav-link.show {
	color: var(--isend-emerald-600);
	background: var(--isend-emerald-50);
}

.isend-nav-link.dropdown-toggle::after, .isend-language-btn.dropdown-toggle::after {
	display: none;
}

.isend-nav-chevron {
	margin-top: 1px;
	font-size: 11px;
	transition: transform .2s ease;
}

.isend-nav-link.show .isend-nav-chevron, .isend-language-btn.show .fa-chevron-down {
	transform: rotate(180deg);
}

.isend-platform-menu {
	top: calc(100% + 8px) !important;
	left: 0 !important;
	width: 700px;
	padding: 20px;
	background: #fff;
	border: 1px solid var(--isend-slate-100);
	border-radius: 16px;
	box-shadow: 0 24px 55px rgba(15, 23, 42, .13);
}

.isend-mega-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	min-height: 65px;
	padding: 12px;
	text-decoration: none;
	border-radius: 12px;
	transition: background-color .15s ease;
}

.isend-mega-item:hover {
	background: var(--isend-slate-50);
}

.isend-mega-icon, .isend-resource-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 32px;
	height: 32px;
	margin-top: 2px;
	color: var(--isend-emerald-600);
	font-size: 14px;
	background: var(--isend-emerald-50);
	border: 1px solid var(--isend-emerald-100);
	border-radius: 8px;
	transition: background-color .15s ease;
}

.isend-mega-item:hover .isend-mega-icon, .isend-resource-item:hover .isend-resource-icon {
	background: var(--isend-emerald-100);
}

.isend-mega-content {
	display: block;
	min-width: 0;
}

.isend-mega-content strong, .isend-resource-item strong {
	display: block;
	color: var(--isend-slate-800);
	font-size: 13px;
	font-weight: 600;
	line-height: 18px;
	transition: color .15s ease;
}

.isend-mega-content small, .isend-resource-item small {
	display: block;
	margin-top: 2px;
	color: var(--isend-slate-400);
	font-size: 11.5px;
	font-weight: 400;
	line-height: 16px;
}

.isend-mega-item:hover strong, .isend-resource-item:hover strong {
	color: var(--isend-emerald-700);
}

.isend-mega-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid var(--isend-slate-100);
}

.isend-trial-note {
	display: flex;
	align-items: center;
	gap: 6px;
	color: var(--isend-slate-400);
	font-size: 12px;
}

.isend-trial-note i {
	color: var(--isend-emerald-500);
}

.isend-platform-try {
	display: flex;
	align-items: center;
	gap: 6px;
	color: var(--isend-emerald-600);
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
}

.isend-platform-try:hover {
	color: var(--isend-emerald-700);
}

.isend-platform-try i {
	font-size: 12px;
}

.isend-resources-menu {
	top: calc(100% + 8px) !important;
	width: 288px;
	padding: 8px;
	background: #fff;
	border: 1px solid var(--isend-slate-100);
	border-radius: 16px;
	box-shadow: 0 20px 45px rgba(15, 23, 42, .12);
}

.isend-resource-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px;
	text-decoration: none;
	border-radius: 12px;
	transition: background-color .15s ease;
}

.isend-resource-item:hover {
	background: var(--isend-slate-50);
}

.isend-resource-icon {
	margin-top: 0;
}

.isend-header-actions {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	gap: 8px;
	margin-left: auto;
}

.isend-language-btn {
	display: flex;
	align-items: center;
	gap: 6px;
	height: 36px;
	padding: 0 10px;
	color: var(--isend-slate-600);
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
	background: #fff;
	border: 1px solid var(--isend-slate-200);
	border-radius: 8px;
}

.isend-language-btn:hover, .isend-language-btn:focus {
	color: var(--isend-slate-900);
	background: #fff;
	border-color: var(--isend-slate-300);
}

.isend-language-btn.show {
	color: var(--isend-emerald-700);
	background: var(--isend-emerald-50);
	border-color: var(--isend-emerald-200);
}

.isend-language-btn i {
	font-size: 10px;
	transition: transform .2s ease;
}

.isend-language-flag-wrap {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 24px;
	height: 18px;
	overflow: hidden;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 4px;
}

.isend-language-flag-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.isend-language-code {
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}

.isend-language-info {
	display: flex;
	min-width: 0;
	flex: 1;
	align-items: flex-start;
	flex-direction: column;
	gap: 2px;
}

.isend-language-info strong {
	color: #334155;
	font-size: 12px;
	font-weight: 700;
	line-height: 15px;
}

.isend-language-info small {
	color: #94a3b8;
	font-size: 10px;
	line-height: 13px;
}

.isend-language-menu .dropdown-item {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 48px;
	padding: 7px 12px;
}

.isend-language-btn {
	gap: 7px;
	height: 36px;
	padding: 0 10px;
}

.isend-language-btn .isend-language-flag-wrap {
	width: 22px;
	height: 16px;
}

.isend-language-btn .fa-chevron-down {
	margin-left: 1px;
}

.isend-language-menu {
	top: calc(100% + 6px) !important;
	width: 176px;
	padding: 4px 0;
	border: 1px solid var(--isend-slate-100);
	border-radius: 12px;
	box-shadow: 0 16px 35px rgba(15, 23, 42, .12);
	overflow: hidden;
}

.isend-language-menu .dropdown-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	color: var(--isend-slate-600);
	font-size: 13px;
}

.isend-language-menu .dropdown-item:hover {
	color: var(--isend-slate-900);
	background: var(--isend-slate-50);
}

.isend-language-menu .dropdown-item.active {
	color: var(--isend-emerald-700);
	background: var(--isend-emerald-50);
}

.isend-language-menu .dropdown-item strong {
	font-size: 13px;
	font-weight: 600;
}

.isend-language-menu .dropdown-item small {
	margin-left: 2px;
	color: var(--isend-slate-400);
	font-size: 11px;
}

.isend-language-active {
	width: 6px;
	height: 6px;
	margin-left: auto;
	background: var(--isend-emerald-500);
	border-radius: 50%;
}

.isend-login-link {
	display: flex;
	align-items: center;
	height: 36px;
	padding: 0 12px;
	color: var(--isend-slate-600);
	font-size: 15px;
	font-weight: 600;
	white-space: nowrap;
	text-decoration: none;
	border-radius: 8px;
	transition: color .15s ease, background-color .15s ease;
}

.isend-login-link:hover {
	color: var(--isend-slate-900);
	background: var(--isend-slate-50);
}

.isend-start-btn {
	display: flex;
	align-items: center;
	gap: 6px;
	height: 36px;
	padding: 0 20px;
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	white-space: nowrap;
	background: var(--isend-emerald-500);
	border: 0;
	border-radius: 12px;
	box-shadow: 0 2px 5px rgba(16, 185, 129, .22);
}

.isend-start-btn:hover, .isend-start-btn:focus {
	color: #fff;
	background: var(--isend-emerald-600);
}

.isend-mobile-actions {
	align-items: center;
	gap: 8px;
}

.isend-mobile-login-btn, .isend-mobile-start-btn {
	display: flex;
	align-items: center;
	height: 32px;
	padding: 0 14px;
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
	border-radius: 12px;
}

.isend-mobile-login-btn {
	color: var(--isend-slate-600);
	background: #fff;
	border: 1px solid var(--isend-slate-200);
}

.isend-mobile-login-btn:hover {
	color: var(--isend-slate-900);
	background: var(--isend-slate-50);
	border-color: var(--isend-slate-300);
}

.isend-mobile-start-btn {
	color: #fff;
	background: var(--isend-emerald-500);
	border: 1px solid var(--isend-emerald-500);
}

.isend-mobile-start-btn:hover {
	color: #fff;
	background: var(--isend-emerald-600);
	border-color: var(--isend-emerald-600);
}

.isend-navbar-toggler {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	color: var(--isend-slate-700);
	font-size: 20px;
	background: transparent;
	border: 0;
	border-radius: 8px;
	box-shadow: none !important;
}

.isend-navbar-toggler:hover {
	background: var(--isend-slate-100);
}

@media (min-width: 992px) {
	.position-lg-relative {
		position: relative !important;
	}
}

@media (max-width: 1199.98px) and (min-width: 992px) {
	.isend-navbar-container {
		padding-right: 20px;
		padding-left: 20px;
	}

	.isend-main-nav {
		margin-left: 20px;
	}

	.isend-nav-link {
		padding-right: 9px !important;
		padding-left: 9px !important;
		font-size: 14px;
	}

	.isend-start-btn {
		padding-right: 14px;
		padding-left: 14px;
		font-size: 14px;
	}
}

@media (max-width: 991.98px) {
	.isend-navbar-container {
		display: flex;
		flex-wrap: wrap;
		height: auto;
		min-height: 60px;
		padding-right: 16px;
		padding-left: 16px;
	}

	.isend-logo-link {
		margin-right: 0;
	}

	.isend-logo {
		height: 28px;
	}

	.isend-brand-divider {
		display: none;
	}

	.isend-navbar-collapse {
		flex-basis: calc(100% + 32px);
		width: calc(100% + 32px);
		max-height: calc(100dvh - 60px);
		margin-right: -16px;
		margin-left: -16px;
		padding: 12px 16px 16px;
		overflow-y: auto;
		background: #fff;
		border-top: 1px solid var(--isend-slate-100);
	}

	.isend-main-nav {
		align-items: stretch;
		gap: 2px;
		margin-left: 0;
	}

	.isend-nav-link {
		justify-content: space-between;
		width: 100%;
		padding: 12px 14px !important;
		color: var(--isend-slate-700);
		font-size: 15px;
		border-radius: 12px;
	}

	.isend-platform-menu, .isend-resources-menu {
		position: static !important;
		width: 100%;
		margin-top: 4px !important;
		padding: 6px;
		transform: none !important;
		border-radius: 12px;
		box-shadow: none;
	}

	.isend-platform-menu .row > div {
		width: 100%;
	}

	.isend-mega-item {
		min-height: auto;
		padding: 9px;
	}

	.isend-mega-icon, .isend-resource-icon {
		width: 28px;
		height: 28px;
		font-size: 12px;
	}

	.isend-mega-content strong, .isend-resource-item strong {
		font-size: 13px;
	}

	.isend-mega-content small, .isend-resource-item small {
		font-size: 11px;
	}

	.isend-mega-footer {
		margin-top: 8px;
		padding: 12px 8px 6px;
	}

	.isend-header-actions {
		align-items: stretch;
		flex-direction: column;
		width: 100%;
		margin-top: 14px;
		margin-left: 0;
		padding-top: 14px;
		border-top: 1px solid var(--isend-slate-100);
	}

	.isend-header-actions .dropdown {
		width: 100%;
	}

	.isend-language-btn {
		justify-content: flex-start;
		width: 100%;
	}

	.isend-language-btn .fa-chevron-down {
		margin-left: auto;
	}

	.isend-language-menu {
		position: static !important;
		width: 100%;
		margin-top: 5px !important;
		transform: none !important;
		box-shadow: none;
	}

	.isend-login-link, .isend-start-btn {
		display: none;
	}
}

@media (max-width: 575.98px) {
	.isend-meta-badge {
		display: none !important;
	}

	.isend-mobile-actions {
		gap: 5px;
	}

	.isend-mobile-login-btn, .isend-mobile-start-btn {
		padding-right: 10px;
		padding-left: 10px;
	}

	.isend-navbar-toggler {
		width: 34px;
	}
}

/* AUTH */

.isend-auth-section {
	position: relative;
	min-height: calc(100vh - 72px);
	padding: 48px 0 64px;
	overflow: hidden;
	background: linear-gradient(135deg, #f8fafc 0%, #ffffff 48%, #ecfdf5 100%);
}

.isend-auth-bg-pattern {
	position: absolute;
	inset: 0;
	opacity: .35;
	pointer-events: none;
	background-image: radial-gradient(circle, rgba(148, 163, 184, .28) 1.2px, transparent 1.2px);
	background-size: 30px 30px;
	mask-image: linear-gradient(to right, #000 0%, rgba(0, 0, 0, .6) 45%, transparent 85%);
}

.isend-auth-glow {
	position: absolute;
	pointer-events: none;
	border-radius: 50%;
	filter: blur(100px);
}

.isend-auth-glow-left {
	bottom: -220px;
	left: -140px;
	width: 520px;
	height: 520px;
	background: rgba(16, 185, 129, .12);
}

.isend-auth-glow-right {
	top: -200px;
	right: -100px;
	width: 540px;
	height: 540px;
	background: rgba(34, 211, 238, .11);
}

.isend-auth-container {
	position: relative;
	z-index: 2;
	max-width: 1240px;
	margin: 0 auto;
	padding-right: 24px;
	padding-left: 24px;
}

.isend-auth-layout {
	display: grid;
	grid-template-columns: minmax(0, 44%) minmax(0, 56%);
	min-height: 690px;
	overflow: hidden;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 28px;
	box-shadow: 0 32px 75px rgba(15, 23, 42, .13);
}

.isend-auth-showcase {
	position: relative;
	flex-direction: column;
	overflow: hidden;
	background: linear-gradient(145deg, #0d1e3c 0%, #0a2d22 60%, #061a14 100%);
}

.isend-auth-showcase-pattern {
	position: absolute;
	inset: 0;
	opacity: .05;
	background-image: radial-gradient(circle, #fff 1.5px, transparent 1.5px);
	background-size: 28px 28px;
}

.isend-auth-showcase-glow {
	position: absolute;
	top: 15%;
	right: -120px;
	width: 400px;
	height: 400px;
	background: rgba(16, 185, 129, .17);
	border-radius: 50%;
	filter: blur(90px);
}

.isend-auth-showcase-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 48px 42px 38px;
}

.isend-auth-showcase-heading {
	margin-bottom: 30px;
}

.isend-auth-showcase-heading h2 {
	margin: 0 0 15px;
	color: #fff;
	font-size: clamp(30px, 3vw, 42px);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -.04em;
}

.isend-auth-showcase-heading h2 span {
	display: inline;
	color: transparent;
	background: linear-gradient(90deg, #34d399 0%, #22d3ee 100%);
	-webkit-background-clip: text;
	background-clip: text;
}

.isend-auth-showcase-heading p {
	max-width: 390px;
	margin: 0;
	color: #94a3b8;
	font-size: 15px;
	line-height: 1.7;
}

.isend-auth-benefits {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 34px;
}

.isend-auth-benefit {
	display: flex;
	align-items: center;
	gap: 12px;
}

.isend-auth-benefit > span {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 30px;
	height: 30px;
	color: #34d399;
	font-size: 13px;
	background: rgba(16, 185, 129, .18);
	border: 1px solid rgba(52, 211, 153, .25);
	border-radius: 9px;
}

.isend-auth-benefit strong {
	color: #cbd5e1;
	font-size: 14px;
	font-weight: 600;
}

.isend-auth-inbox {
	position: relative;
	margin-top: auto;
	overflow: visible;
	background: #fff;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 18px;
	box-shadow: 0 24px 55px rgba(0, 0, 0, .28);
}

.isend-auth-inbox-head {
	display: flex;
	align-items: center;
	height: 38px;
	padding: 0 13px;
	color: #94a3b8;
	background: #0f172a;
	border-radius: 18px 18px 0 0;
}

.isend-auth-inbox-head > div {
	display: flex;
	gap: 5px;
}

.isend-auth-inbox-head > div span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
}

.isend-auth-inbox-head > div span:nth-child(1) {
	background: #fb7185;
}

.isend-auth-inbox-head > div span:nth-child(2) {
	background: #fbbf24;
}

.isend-auth-inbox-head > div span:nth-child(3) {
	background: #34d399;
}

.isend-auth-inbox-head small {
	margin-left: 11px;
	font-size: 8px;
}

.isend-auth-inbox-head em {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-left: auto;
	color: #34d399;
	font-size: 8px;
	font-style: normal;
}

.isend-auth-inbox-head em i {
	width: 5px;
	height: 5px;
	background: #10b981;
	border-radius: 50%;
}

.isend-auth-inbox-body {
	display: grid;
	grid-template-columns: 44% 56%;
	height: 190px;
	overflow: hidden;
	border-radius: 0 0 18px 18px;
}

.isend-auth-inbox-list {
	background: #fff;
	border-right: 1px solid #eef2f7;
}

.isend-auth-conversation {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 7px;
	min-height: 58px;
	padding: 10px 8px;
	border-bottom: 1px solid #f1f5f9;
}

.isend-auth-conversation.active {
	background: #ecfdf5;
}

.isend-auth-avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 25px;
	height: 25px;
	font-size: 8px;
	font-weight: 800;
	border-radius: 50%;
}

.isend-auth-avatar-green {
	color: #047857;
	background: #d1fae5;
}

.isend-auth-avatar-blue {
	color: #0e7490;
	background: #cffafe;
}

.isend-auth-avatar-purple {
	color: #7e22ce;
	background: #f3e8ff;
}

.isend-auth-conversation > div {
	min-width: 0;
	flex: 1;
}

.isend-auth-conversation strong {
	display: block;
	color: #1e293b;
	font-size: 8px;
	font-weight: 800;
}

.isend-auth-conversation p {
	margin: 2px 0 0;
	overflow: hidden;
	color: #64748b;
	font-size: 7px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.isend-auth-conversation small {
	color: #94a3b8;
	font-size: 6px;
}

.isend-auth-conversation > i {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	right: 7px;
	bottom: 7px;
	width: 14px;
	height: 14px;
	color: #fff;
	font-size: 6px;
	font-style: normal;
	font-weight: 800;
	background: #10b981;
	border-radius: 50%;
}

.isend-auth-chat-preview {
	display: flex;
	flex-direction: column;
	gap: 9px;
	padding: 12px;
	background: #f8fafc;
}

.isend-auth-chat-user {
	display: flex;
	align-items: center;
	gap: 7px;
	margin-bottom: 3px;
}

.isend-auth-chat-user strong {
	display: block;
	color: #1e293b;
	font-size: 8px;
	font-weight: 800;
}

.isend-auth-chat-user small {
	display: block;
	color: #10b981;
	font-size: 6px;
}

.isend-auth-chat-message {
	max-width: 85%;
	padding: 7px 9px;
	font-size: 7px;
	line-height: 11px;
	border-radius: 10px;
}

.isend-auth-chat-message-in {
	align-self: flex-start;
	color: #334155;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-bottom-left-radius: 3px;
}

.isend-auth-chat-message-out {
	align-self: flex-end;
	color: #fff;
	background: #10b981;
	border-bottom-right-radius: 3px;
}

.isend-auth-chat-input {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 26px;
	margin-top: auto;
	padding: 0 8px;
	color: #94a3b8;
	font-size: 6px;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 9px;
}

.isend-auth-chat-input i {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	color: #fff;
	font-size: 6px;
	background: #10b981;
	border-radius: 50%;
}

.isend-auth-floating-stat {
	position: absolute;
	top: -23px;
	right: 20px;
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 9px 12px;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 13px;
	box-shadow: 0 13px 28px rgba(0, 0, 0, .18);
}

.isend-auth-floating-stat > span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 29px;
	height: 29px;
	color: #059669;
	font-size: 11px;
	background: #ecfdf5;
	border-radius: 9px;
}

.isend-auth-floating-stat small {
	display: block;
	color: #94a3b8;
	font-size: 8px;
}

.isend-auth-floating-stat strong {
	display: block;
	color: #0f172a;
	font-size: 12px;
	font-weight: 800;
}

.isend-auth-showcase-footer {
	display: flex;
	align-items: center;
	gap: 11px;
	margin-top: 26px;
}

.isend-auth-showcase-avatars {
	display: flex;
	align-items: center;
}

.isend-auth-showcase-avatars span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	margin-left: -7px;
	color: #047857;
	font-size: 7px;
	font-weight: 800;
	background: #d1fae5;
	border: 2px solid #0a271f;
	border-radius: 50%;
}

.isend-auth-showcase-avatars span:first-child {
	margin-left: 0;
}

.isend-auth-showcase-avatars span:nth-child(2) {
	color: #0e7490;
	background: #cffafe;
}

.isend-auth-showcase-avatars span:nth-child(3) {
	color: #7e22ce;
	background: #f3e8ff;
}

.isend-auth-showcase-avatars span:last-child {
	color: #fff;
	background: #10b981;
}

.isend-auth-showcase-footer p {
	margin: 0;
	color: #94a3b8;
	font-size: 11px;
}

.isend-auth-form-column {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 54px 70px;
	background: #fff;
}

.isend-auth-form-wrap {
	width: 100%;
	max-width: 460px;
}

.isend-auth-form-heading {
	margin-bottom: 32px;
}

.isend-auth-form-heading h1 {
	margin: 0 0 8px;
	color: #0f172a;
	font-size: 28px;
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: -.035em;
}

.isend-auth-form-heading p {
	margin: 0;
	color: #64748b;
	font-size: 15px;
	line-height: 22px;
}

.isend-auth-error:empty {
	display: none;
}

.isend-auth-error:not(:empty) {
	margin-bottom: 20px;
	padding: 13px 15px;
	color: #b91c1c;
	font-size: 13px;
	font-weight: 600;
	background: #fef2f2;
	border: 1px solid #fecaca;
	border-radius: 12px;
}

.isend-auth-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.isend-auth-field label {
	display: block;
	margin-bottom: 7px;
	color: #334155;
	font-size: 14px;
	font-weight: 700;
	line-height: 20px;
}

.isend-auth-label-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
}

.isend-auth-label-row a {
	margin-bottom: 7px;
	color: #059669;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
}

.isend-auth-label-row a:hover {
	color: #047857;
}

.isend-auth-control {
	position: relative;
	display: flex;
	align-items: center;
	height: 54px;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	transition: border-color .15s ease, box-shadow .15s ease;
}

.isend-auth-control:hover {
	border-color: #cbd5e1;
}

.isend-auth-control:focus-within {
	border-color: #10b981;
	box-shadow: 0 0 0 3px rgba(16, 185, 129, .12);
}

.isend-auth-control > i {
	position: absolute;
	left: 16px;
	color: #94a3b8;
	font-size: 15px;
	pointer-events: none;
}

.isend-auth-control input {
	width: 100%;
	height: 52px;
	padding: 0 48px 0 44px;
	color: #0f172a;
	font-size: 15px;
	background: transparent;
	border: 0;
	outline: 0;
}

.isend-auth-control input::placeholder {
	color: #94a3b8;
}

.isend-auth-password-toggle {
	position: absolute;
	right: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	padding: 0;
	color: #94a3b8;
	font-size: 15px;
	background: transparent;
	border: 0;
	border-radius: 9px;
}

.isend-auth-password-toggle:hover {
	color: #475569;
	background: #f8fafc;
}

.isend-auth-recaptcha {
	min-height: 78px;
	overflow-x: auto;
}

.isend-auth-submit {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	height: 54px;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	background: #10b981;
	border: 1px solid #10b981;
	border-radius: 12px;
	box-shadow: 0 9px 20px rgba(16, 185, 129, .23);
}

.isend-auth-submit:hover, .isend-auth-submit:focus {
	color: #fff;
	background: #059669;
	border-color: #059669;
}

.isend-auth-submit i {
	font-size: 13px;
}

.isend-auth-switch {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 5px;
	margin-top: 24px;
	color: #64748b;
	font-size: 14px;
}

.isend-auth-switch a {
	color: #059669;
	font-weight: 700;
	text-decoration: none;
}

.isend-auth-switch a:hover {
	color: #047857;
}

.isend-auth-security {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	margin-top: 28px;
	padding-top: 22px;
	color: #94a3b8;
	font-size: 11px;
	border-top: 1px solid #f1f5f9;
}

.isend-auth-security i {
	color: #10b981;
}

@media (max-width: 1199.98px) {
	.isend-auth-showcase-content {
		padding-right: 32px;
		padding-left: 32px;
	}

	.isend-auth-form-column {
		padding-right: 48px;
		padding-left: 48px;
	}
}

@media (max-width: 991.98px) {
	.isend-auth-section {
		min-height: auto;
		padding: 42px 0 56px;
	}

	.isend-auth-layout {
		display: block;
		min-height: auto;
		max-width: 620px;
		margin: 0 auto;
	}

	.isend-auth-form-column {
		padding: 52px 54px;
	}
}

@media (max-width: 767.98px) {
	.isend-auth-container {
		padding-right: 18px;
		padding-left: 18px;
	}

	.isend-auth-form-column {
		padding: 44px 30px;
	}
}

@media (max-width: 575.98px) {
	.isend-auth-section {
		padding: 24px 0 40px;
	}

	.isend-auth-container {
		padding-right: 12px;
		padding-left: 12px;
	}

	.isend-auth-layout {
		border-radius: 20px;
	}

	.isend-auth-form-column {
		padding: 36px 20px;
	}

	.isend-auth-form-heading {
		margin-bottom: 26px;
	}

	.isend-auth-form-heading h1 {
		font-size: 25px;
	}

	.isend-auth-recaptcha {
		margin-right: -10px;
		transform: scale(.92);
		transform-origin: left top;
	}
}

.isend-auth-page {
	display: grid;
	grid-template-columns: 44% 56%;
	width: 100%;
	min-height: 100vh;
	background: #fff;
}

.isend-auth-showcase {
	position: relative;
	min-height: 100vh;
	overflow: hidden;
	background:
		radial-gradient(circle at 85% 45%, rgba(16, 185, 129, .19), transparent 38%),
		linear-gradient(145deg, #102540 0%, #063c2d 100%);
}

.isend-auth-showcase-pattern {
	position: absolute;
	inset: 0;
	opacity: .055;
	background-image: radial-gradient(circle, #fff 1.4px, transparent 1.4px);
	background-size: 28px 28px;
}

.isend-auth-showcase-glow {
	position: absolute;
	right: -180px;
	bottom: 8%;
	width: 500px;
	height: 500px;
	background: rgba(16, 185, 129, .15);
	border-radius: 50%;
	filter: blur(100px);
}

.isend-auth-showcase-inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	height: 100vh;
	padding: 40px;
}

.isend-auth-logo img {
	display: block;
	width: auto;
	height: 34px;
}

.isend-auth-showcase-copy {
	margin-top: 46px;
}

.isend-auth-showcase-copy h2 {
	margin: 0;
	color: #fff;
	font-size: clamp(32px, 3vw, 43px);
	font-weight: 800;
	line-height: 1.18;
	letter-spacing: -.045em;
}

.isend-auth-showcase-copy h2 span {
	color: transparent;
	background: linear-gradient(90deg, #10d59a 0%, #17c9e8 100%);
	-webkit-background-clip: text;
	background-clip: text;
}

.isend-auth-showcase-copy p {
	max-width: 400px;
	margin: 20px 0 0;
	color: #a2b4cd;
	font-size: 16px;
	line-height: 1.6;
}

.isend-auth-benefits {
	display: flex;
	flex-direction: column;
	gap: 13px;
	margin-top: 38px;
}

.isend-auth-benefit {
	display: flex;
	align-items: center;
	gap: 12px;
}

.isend-auth-benefit > span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	color: #10d59a;
	font-size: 13px;
	background: rgba(16, 213, 154, .12);
	border: 1px solid rgba(16, 213, 154, .28);
	border-radius: 9px;
}

.isend-auth-benefit strong {
	color: #d6e1ef;
	font-size: 14px;
	font-weight: 600;
}

.isend-auth-preview {
	position: relative;
	margin-top: auto;
}

.isend-auth-preview-top {
	position: relative;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: -22px;
}

.isend-auth-sent-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 14px;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	background: #10b981;
	border-radius: 999px;
	box-shadow: 0 8px 18px rgba(16, 185, 129, .22);
}

.isend-auth-delivery-badge {
	display: flex;
	align-items: center;
	gap: 9px;
	margin-right: 14px;
	padding: 10px 14px;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 12px 24px rgba(0, 0, 0, .22);
}

.isend-auth-delivery-badge > span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	color: #059669;
	background: #ecfdf5;
	border-radius: 9px;
}

.isend-auth-delivery-badge small {
	display: block;
	color: #94a3b8;
	font-size: 8px;
}

.isend-auth-delivery-badge strong {
	display: block;
	color: #0f172a;
	font-size: 13px;
}

.isend-auth-preview-window {
	overflow: hidden;
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 16px;
}

.isend-auth-preview-bar {
	height: 36px;
	padding-top: 12px;
	color: #8ba0b8;
	font-size: 8px;
	text-align: center;
	background: rgba(3, 17, 27, .34);
}

.isend-auth-preview-body {
	display: grid;
	grid-template-columns: 35px 1fr;
	height: 200px;
}

.isend-auth-preview-sidebar {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 18px;
	padding-top: 12px;
	color: #54707a;
	background: rgba(3, 17, 27, .28);
}

.isend-auth-preview-sidebar i {
	font-size: 10px;
}

.isend-auth-preview-sidebar i.active {
	color: #10d59a;
}

.isend-auth-preview-contact {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
	min-height: 55px;
	padding: 10px 14px;
	border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.isend-auth-preview-contact.active {
	background: rgba(16, 185, 129, .12);
}

.isend-auth-preview-contact > div {
	min-width: 0;
	flex: 1;
}

.isend-auth-preview-contact strong {
	display: block;
	color: #dbe7ef;
	font-size: 9px;
}

.isend-auth-preview-contact small {
	display: block;
	margin-top: 2px;
	color: #82979f;
	font-size: 7px;
}

.isend-auth-preview-contact em {
	color: #73868d;
	font-size: 7px;
	font-style: normal;
}

.isend-auth-preview-contact > i {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 15px;
	height: 15px;
	color: #fff;
	font-size: 6px;
	font-style: normal;
	background: #10b981;
	border-radius: 50%;
}

.isend-auth-ai-badge {
	position: absolute;
	right: 24px;
	bottom: -17px;
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 9px 14px;
	color: #34d399;
	font-size: 10px;
	font-weight: 700;
	background: rgba(15, 23, 42, .92);
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 999px;
}

.isend-auth-ai-badge span {
	width: 6px;
	height: 6px;
	background: #10b981;
	border-radius: 50%;
}

.isend-auth-showcase-footer {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 55px;
	color: #617d8b;
	font-size: 11px;
}

.isend-auth-showcase-footer i {
	color: #10d59a;
}

.isend-auth-panel {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	background: #fff;
}

.isend-auth-panel-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 40px;
}

.isend-auth-back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #64748b;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
}

.isend-auth-back:hover {
	color: #0f172a;
}

.isend-auth-languages {
	display: flex;
	overflow: hidden;
	border: 1px solid #e2e8f0;
	border-radius: 999px;
}

.isend-auth-languages a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 29px;
	color: #64748b;
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
}

.isend-auth-languages a.active {
	color: #fff;
	background: #10b981;
}

.isend-auth-languages a.selected {
	color: #fff;
	background: #10b981;
}

.isend-auth-form-area {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	padding: 30px 70px 48px;
}

.isend-auth-form-wrap {
	width: 100%;
	max-width: 460px;
}

.isend-auth-form-heading {
	margin-bottom: 34px;
}

.isend-auth-form-heading h1 {
	margin: 0 0 8px;
	color: #071329;
	font-size: 30px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -.035em;
}

.isend-auth-form-heading p {
	margin: 0;
	color: #64748b;
	font-size: 15px;
}

.isend-auth-options {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.isend-auth-options > a {
	color: #059669;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
}

.isend-auth-remember {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	cursor: pointer;
}

.isend-auth-remember input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.isend-auth-remember > span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	background: #fff;
	border: 2px solid #cbd5e1;
	border-radius: 7px;
}

.isend-auth-remember input:checked + span {
	background: #10b981;
	border-color: #10b981;
}

.isend-auth-remember input:checked + span::after {
	content: "\f00c";
	color: #fff;
	font-family: "Font Awesome 6 Free";
	font-size: 10px;
	font-weight: 900;
}

.isend-auth-remember em {
	color: #334155;
	font-size: 13px;
	font-style: normal;
}

.isend-auth-divider {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 25px 0;
}

.isend-auth-divider span {
	height: 1px;
	flex: 1;
	background: #e2e8f0;
}

.isend-auth-divider em {
	color: #94a3b8;
	font-size: 12px;
	font-style: normal;
}

.isend-auth-google {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	width: 100%;
	height: 54px;
	color: #334155;
	font-size: 14px;
	font-weight: 700;
	background: #fff;
	border: 1px solid #dbe3ee;
	border-radius: 13px;
}

.isend-auth-google:hover {
	background: #f8fafc;
}

.isend-auth-google-icon {
	color: #4285f4;
	font-size: 20px;
	font-weight: 800;
}

.isend-auth-panel-footer {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 58px;
	color: #94a3b8;
	font-size: 11px;
	border-top: 1px solid #f1f5f9;
}

.isend-auth-panel-footer i {
	color: #94a3b8;
}

@media (max-width: 991.98px) {
	.isend-auth-page {
		display: block;
	}

	.isend-auth-showcase {
		display: none;
	}

	.isend-auth-panel, .isend-auth-page {
		min-height: 100vh;
	}

	.isend-auth-form-area {
		padding: 40px 24px;
	}
}

@media (max-width: 575.98px) {
	.isend-auth-panel-top {
		padding: 16px 18px;
	}

	.isend-auth-back span {
		display: none;
	}

	.isend-auth-form-area {
		padding: 30px 18px 38px;
	}

	.isend-auth-form-heading h1 {
		font-size: 26px;
	}
}

/* HERO AREA */

.isend-hero {
	position: relative;
	min-height: 730px;
	padding: 52px 0 40px;
	overflow: hidden;
	background:
		radial-gradient(circle at 78% 18%, rgba(34, 211, 238, .16), transparent 34%),
		radial-gradient(circle at 15% 82%, rgba(16, 185, 129, .10), transparent 30%),
		linear-gradient(135deg, #ffffff 0%, #fbfffe 48%, #f4ffff 100%);
}

.isend-hero-pattern {
	position: absolute;
	inset: 0;
	opacity: .42;
	pointer-events: none;
	background-image: radial-gradient(circle, rgba(148, 163, 184, .25) 1.3px, transparent 1.3px);
	background-size: 32px 32px;
	mask-image: linear-gradient(to right, #000 0%, rgba(0, 0, 0, .7) 42%, transparent 78%);
}

.isend-hero-glow {
	position: absolute;
	pointer-events: none;
	border-radius: 50%;
	filter: blur(100px);
}

.isend-hero-glow-top {
	top: -180px;
	right: 4%;
	width: 560px;
	height: 560px;
	background: rgba(45, 212, 191, .12);
}

.isend-hero-glow-bottom {
	right: 14%;
	bottom: -240px;
	width: 500px;
	height: 500px;
	background: rgba(34, 211, 238, .10);
}

.isend-hero-container {
	position: relative;
	z-index: 2;
	max-width: 1360px;
	margin: 0 auto;
	padding-right: 48px;
	padding-left: 48px;
}

.isend-hero-content {
	max-width: 600px;
	padding-top: 2px;
}

.isend-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 30px;
	padding: 8px 17px;
	color: #047857;
	font-size: 13px;
	font-weight: 700;
	background: rgba(236, 253, 245, .92);
	border: 1px solid #86efac;
	border-radius: 999px;
	box-shadow: 0 2px 8px rgba(16, 185, 129, .08);
}

.isend-hero-badge-dots {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.isend-hero-badge-dots i {
	display: block;
	width: 6px;
	height: 6px;
	background: #34d399;
	border-radius: 50%;
}

.isend-hero-title {
	margin: 0;
	color: #0c1428;
	font-size: clamp(48px, 4.25vw, 66px);
	font-weight: 800;
	line-height: .96;
	letter-spacing: -.055em;
}

.isend-gradient-text {
	display: inline-block;
	color: transparent;
	background: linear-gradient(90deg, #00c98d 0%, #00cf9e 42%, #00b8d9 100%);
	-webkit-background-clip: text;
	background-clip: text;
	border-bottom: 1px solid rgba(0, 201, 141, .38);
}

.isend-hero-description {
	max-width: 570px;
	margin: 32px 0 0;
	color: #5e7295;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.65;
}

.isend-hero-actions {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 35px;
}

.isend-hero-primary, .isend-hero-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 58px;
	padding: 0 30px;
	font-size: 16px;
	font-weight: 700;
	border-radius: 13px;
	transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.isend-hero-primary {
	gap: 14px;
	color: #fff;
	background: linear-gradient(135deg, #02c98f 0%, #00bd85 100%);
	border: 0;
	box-shadow: 0 10px 24px rgba(0, 190, 133, .20);
}

.isend-hero-primary:hover {
	color: #fff;
	background: linear-gradient(135deg, #00bb84 0%, #00aa78 100%);
	box-shadow: 0 13px 28px rgba(0, 190, 133, .28);
	transform: translateY(-2px);
}

.isend-hero-primary i {
	font-size: 15px;
}

.isend-hero-secondary {
	gap: 11px;
	color: #14203a;
	background: rgba(255, 255, 255, .88);
	border: 1px solid #d9e1ec;
	box-shadow: 0 2px 5px rgba(15, 23, 42, .08);
	backdrop-filter: blur(8px);
}

.isend-hero-secondary:hover {
	color: #14203a;
	background: #fff;
	border-color: #cbd5e1;
	box-shadow: 0 7px 18px rgba(15, 23, 42, .10);
	transform: translateY(-2px);
}

.isend-play-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	color: #fff;
	font-size: 10px;
	background: #10b981;
	border-radius: 50%;
}

.isend-play-icon i {
	margin-left: 1px;
}

.isend-hero-note {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 27px;
	color: #8ca0c3;
	font-size: 14px;
}

.isend-hero-note i {
	color: #10c993;
	font-size: 15px;
}

.isend-hero-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	max-width: 610px;
	margin-top: 42px;
	padding-top: 32px;
	border-top: 1px solid rgba(203, 213, 225, .58);
}

.isend-hero-stat {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.isend-hero-stat strong {
	color: #07132b;
	font-size: 32px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -.035em;
}

.isend-hero-stat span {
	color: #60769a;
	font-size: 14px;
	font-weight: 500;
}

.isend-dashboard-stage {
	position: relative;
	min-height: 560px;
	margin-left: 20px;
}

.isend-dashboard-window {
	position: absolute;
	top: 106px;
	right: 0;
	width: min(100%, 665px);
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(226, 232, 240, .68);
	border-radius: 27px;
	box-shadow: 0 35px 80px rgba(15, 23, 42, .16);
}

.isend-dashboard-topbar {
	display: flex;
	align-items: center;
	height: 44px;
	padding: 0 20px;
	color: #9ec0df;
	background: #101a33;
}

.isend-window-dots {
	display: flex;
	gap: 8px;
}

.isend-window-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
}

.isend-window-dot-red {
	background: #ff635f;
}

.isend-window-dot-yellow {
	background: #ffbd2e;
}

.isend-window-dot-green {
	background: #27c93f;
}

.isend-window-title {
	margin-left: 17px;
	font-size: 11px;
}

.isend-window-live {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-left: auto;
	color: #21d69a;
	font-size: 11px;
}

.isend-window-live span {
	width: 8px;
	height: 8px;
	background: #10b981;
	border-radius: 50%;
}

.isend-dashboard-body {
	display: grid;
	grid-template-columns: 48px 207px minmax(0, 1fr);
	height: 360px;
	background: #f8fafc;
}

.isend-dashboard-sidebar {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 20px;
	padding-top: 16px;
	background: #101a33;
}

.isend-sidebar-brand {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	margin-bottom: 6px;
	color: #fff;
	font-size: 16px;
	font-weight: 800;
	background: #10b981;
	border-radius: 8px;
}

.isend-dashboard-sidebar a {
	color: #586884;
	font-size: 12px;
	text-decoration: none;
}

.isend-dashboard-sidebar a.active {
	color: #10b981;
}

.isend-conversation-list {
	background: #fff;
	border-right: 1px solid #edf1f5;
}

.isend-conversation-search {
	display: flex;
	align-items: center;
	gap: 7px;
	height: 30px;
	margin: 9px 10px 5px;
	padding: 0 10px;
	color: #a8b5c8;
	font-size: 9px;
	background: #f8fafc;
	border: 1px solid #e0e8f1;
	border-radius: 9px;
}

.isend-conversation-tabs {
	display: flex;
	gap: 20px;
	height: 28px;
	padding: 0 12px;
	color: #8394ae;
	font-size: 8px;
	border-bottom: 1px solid #edf1f5;
}

.isend-conversation-tabs span {
	display: flex;
	align-items: center;
	height: 28px;
}

.isend-conversation-tabs span.active {
	color: #10b981;
	border-bottom: 2px solid #10b981;
}

.isend-conversation {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 8px;
	min-height: 53px;
	padding: 8px 9px;
	border-bottom: 1px solid #f2f5f8;
}

.isend-conversation.active {
	background: #eefcf7;
}

.isend-avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 24px;
	height: 24px;
	font-size: 9px;
	font-weight: 700;
	border-radius: 50%;
}

.isend-avatar-green {
	color: #059669;
	background: #d1fae5;
}

.isend-avatar-blue {
	color: #0891b2;
	background: #cffafe;
}

.isend-avatar-purple {
	color: #9333ea;
	background: #f3e8ff;
}

.isend-avatar-orange {
	color: #d97706;
	background: #fef3c7;
}

.isend-conversation-info {
	min-width: 0;
	flex: 1;
}

.isend-conversation-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.isend-conversation-head strong {
	color: #15223a;
	font-size: 9px;
	font-weight: 700;
}

.isend-conversation-head small {
	color: #8ca0bd;
	font-size: 7px;
}

.isend-conversation-info p {
	margin: 2px 0 0;
	overflow: hidden;
	color: #637897;
	font-size: 7.5px;
	line-height: 12px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.isend-conversation-info p span {
	display: inline-block;
	width: 4px;
	height: 4px;
	margin-right: 3px;
	background: #10b981;
	border-radius: 50%;
	vertical-align: middle;
}

.isend-unread-count {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 15px;
	height: 15px;
	margin-top: 10px;
	color: #fff;
	font-size: 7px;
	font-weight: 700;
	background: #10b981;
	border-radius: 50%;
}

.isend-chat-panel {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	background: #f9fbfd;
}

.isend-chat-header {
	display: flex;
	align-items: center;
	height: 60px;
	padding: 0 14px;
	background: #fff;
	border-bottom: 1px solid #edf1f5;
}

.isend-chat-user {
	display: flex;
	align-items: center;
	gap: 8px;
}

.isend-chat-user strong {
	display: block;
	color: #101b31;
	font-size: 10px;
	font-weight: 700;
}

.isend-chat-user strong small {
	color: #10b981;
	font-size: 7px;
}

.isend-online-dot {
	display: inline-block;
	width: 5px;
	height: 5px;
	margin: 0 3px;
	background: #10b981;
	border-radius: 50%;
	vertical-align: middle;
}

.isend-user-tags {
	display: flex;
	gap: 4px;
	margin-top: 4px;
}

.isend-user-tags span {
	padding: 1px 5px;
	color: #0891b2;
	font-size: 6px;
	background: #ecfeff;
	border: 1px solid #67e8f9;
	border-radius: 999px;
}

.isend-user-tags span:first-child {
	color: #059669;
	background: #ecfdf5;
	border-color: #6ee7b7;
}

.isend-chat-messages {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 9px;
	padding: 12px 13px;
}

.isend-message {
	max-width: 74%;
	padding: 7px 10px;
	font-size: 8px;
	line-height: 12px;
	border-radius: 12px;
}

.isend-message-out {
	align-self: flex-end;
	color: #fff;
	background: #08b981;
	border-bottom-right-radius: 4px;
	box-shadow: 0 2px 4px rgba(16, 185, 129, .18);
}

.isend-message-in {
	align-self: flex-start;
	color: #26344c;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-bottom-left-radius: 4px;
	box-shadow: 0 1px 3px rgba(15, 23, 42, .08);
}

.isend-chat-alert {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-top: 0;
	padding: 7px 10px;
	color: #d97706;
	font-size: 7px;
	background: #fffbeb;
	border: 1px solid #fcd34d;
	border-radius: 9px;
}

.isend-chat-composer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 38px;
	margin: 0 13px 10px;
	padding: 0 8px 0 12px;
	color: #9aa9bd;
	font-size: 7px;
	background: #f8fafc;
	border: 1px solid #dde6ef;
	border-radius: 14px;
}

.isend-chat-composer div {
	display: flex;
	align-items: center;
	gap: 8px;
}

.isend-chat-composer button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 19px;
	height: 19px;
	padding: 0;
	color: #fff;
	font-size: 7px;
	background: #10b981;
	border: 0;
	border-radius: 50%;
}

.isend-floating-card {
	position: absolute;
	z-index: 4;
	display: flex;
	align-items: center;
	gap: 11px;
	padding: 13px 16px;
	background: rgba(255, 255, 255, .95);
	border: 1px solid rgba(226, 232, 240, .82);
	border-radius: 17px;
	box-shadow: 0 15px 30px rgba(15, 23, 42, .16);
	backdrop-filter: blur(14px);
}

.isend-floating-card small {
	display: block;
	margin-bottom: 2px;
	color: #6980a3;
	font-size: 11px;
}

.isend-floating-card strong {
	display: block;
	color: #06132b;
	font-size: 16px;
	font-weight: 800;
}

.isend-floating-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	font-size: 13px;
	border-radius: 13px;
}

.isend-floating-icon-green {
	color: #059669;
	background: #ecfdf5;
}

.isend-floating-icon-purple {
	color: #9333ea;
	background: #faf5ff;
}

.isend-floating-icon-blue {
	color: #0891b2;
	background: #ecfeff;
}

.isend-floating-rate {
	top: 166px;
	left: -22px;
}

.isend-floating-ai {
	bottom: 63px;
	left: -8px;
}

.isend-floating-messages {
	right: -40px;
	bottom: 104px;
}

.isend-campaign-toast {
	position: absolute;
	z-index: 5;
	top: 144px;
	right: -34px;
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 13px 19px;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	background: linear-gradient(135deg, #02c98f 0%, #00b981 100%);
	border-radius: 15px;
	box-shadow: 0 13px 25px rgba(16, 185, 129, .28);
}

@media (max-width: 1199.98px) {
	.isend-hero {
		min-height: auto;
	}

	.isend-hero-container {
		padding-right: 28px;
		padding-left: 28px;
	}

	.isend-hero-title {
		font-size: 52px;
	}

	.isend-hero-description {
		font-size: 18px;
	}

	.isend-dashboard-stage {
		margin-left: 0;
		transform: scale(.9);
		transform-origin: center right;
	}
}

@media (max-width: 991.98px) {
	.isend-hero {
		padding-top: 50px;
	}

	.isend-hero-container {
		padding-right: 20px;
		padding-left: 20px;
	}

	.isend-hero-content {
		max-width: 720px;
		margin: 0 auto;
		text-align: center;
	}

	.isend-hero-badge {
		margin-bottom: 24px;
	}

	.isend-hero-title {
		font-size: clamp(44px, 8vw, 62px);
	}

	.isend-hero-description {
		margin-right: auto;
		margin-left: auto;
	}

	.isend-hero-actions, .isend-hero-note {
		justify-content: center;
	}

	.isend-hero-stats {
		margin-right: auto;
		margin-left: auto;
	}

	.isend-dashboard-stage {
		min-height: 530px;
		margin-top: 5px;
		transform: none;
	}

	.isend-dashboard-window {
		top: 70px;
		right: 50%;
		width: min(100%, 665px);
		transform: translateX(50%);
	}

	.isend-floating-rate {
		left: 2%;
	}

	.isend-floating-ai {
		left: 4%;
	}

	.isend-floating-messages {
		right: 2%;
	}

	.isend-campaign-toast {
		right: 3%;
	}
}

@media (max-width: 767.98px) {
	.isend-hero {
		padding-top: 38px;
	}

	.isend-hero-pattern {
		background-size: 26px 26px;
	}

	.isend-hero-title {
		font-size: 46px;
		line-height: 1;
	}

	.isend-hero-description {
		font-size: 17px;
		line-height: 1.55;
	}

	.isend-hero-actions {
		flex-direction: column;
	}

	.isend-hero-primary, .isend-hero-secondary {
		width: 100%;
		max-width: 360px;
	}

	.isend-hero-stats {
		gap: 10px;
	}

	.isend-hero-stat strong {
		font-size: 27px;
	}

	.isend-dashboard-stage {
		min-height: 410px;
		margin-right: -15px;
		margin-left: -15px;
		overflow: visible;
		transform: scale(.72);
		transform-origin: top center;
	}

	.isend-dashboard-window {
		top: 55px;
		width: 665px;
	}

	.isend-floating-rate {
		left: calc(50% - 350px);
	}

	.isend-floating-ai {
		left: calc(50% - 340px);
	}

	.isend-floating-messages {
		right: calc(50% - 350px);
	}

	.isend-campaign-toast {
		right: calc(50% - 350px);
	}
}

@media (max-width: 575.98px) {
	.isend-hero-container {
		padding-right: 16px;
		padding-left: 16px;
	}

	.isend-hero-badge {
		padding: 7px 12px;
		font-size: 11px;
	}

	.isend-hero-title {
		font-size: 39px;
		letter-spacing: -.045em;
	}

	.isend-hero-description {
		margin-top: 24px;
		font-size: 16px;
	}

	.isend-hero-actions {
		margin-top: 28px;
	}

	.isend-hero-note {
		font-size: 12px;
	}

	.isend-hero-stats {
		margin-top: 34px;
		padding-top: 25px;
	}

	.isend-hero-stat strong {
		font-size: 23px;
	}

	.isend-hero-stat span {
		font-size: 11px;
	}

	.isend-dashboard-stage {
		min-height: 300px;
		transform: scale(.53);
	}

	.isend-floating-card {
		padding: 11px 13px;
	}

	.isend-floating-card strong {
		font-size: 14px;
	}
}

.isend-hero-title {
	line-height: 1.077;
}

.isend-message {
	font-size: 9px;
	line-height: 14px;
}

.isend-conversation-head strong {
	font-size: 10px;
}

.isend-conversation-head small {
	font-size: 8px;
}

.isend-conversation-info p {
	font-size: 8.5px;
	line-height: 13px;
}

.isend-chat-user strong {
	font-size: 11px;
}

.isend-chat-user strong small {
	font-size: 8px;
}

.isend-user-tags span {
	font-size: 7px;
}

.isend-chat-alert {
	font-size: 8px;
	line-height: 12px;
}

.isend-chat-composer {
	font-size: 8px;
}

.isend-window-title, .isend-window-live {
	font-size: 12px;
}

/* CUSTOMERS AREA */

.isend-trusted-section {
	padding: 80px 0;
	background: #fff;
	border-top: 1px solid #f1f5f9;
	border-bottom: 1px solid #f1f5f9;
}

.isend-trusted-container {
	max-width: 1200px;
	margin: 0 auto;
	padding-right: 24px;
	padding-left: 24px;
}

.isend-trusted-header {
	margin-bottom: 56px;
}

.isend-section-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 20px;
	padding: 6px 14px;
	color: #047857;
	font-size: 11px;
	font-weight: 700;
	line-height: 16px;
	letter-spacing: .1em;
	text-transform: uppercase;
	background: #ecfdf5;
	border: 1px solid #d1fae5;
	border-radius: 999px;
}

.isend-section-badge-dot {
	display: block;
	width: 6px;
	height: 6px;
	background: #10b981;
	border-radius: 50%;
	animation: isend-badge-pulse 1.8s ease-in-out infinite;
}

@keyframes isend-badge-pulse {
	0%, 100% {
		opacity: 1;
		transform: scale(1);
	}

	50% {
		opacity: .45;
		transform: scale(.82);
	}
}

.isend-trusted-title {
	margin: 0 0 16px;
	color: #0f172a;
	font-size: 30px;
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: -.025em;
}

.isend-trusted-description {
	max-width: 576px;
	margin: 0 auto;
	color: #94a3b8;
	font-size: 15px;
	line-height: 1.65;
}

.isend-logo-grid {
	margin-bottom: 48px;
}

.isend-company-card {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 14px;
	width: 100%;
	height: 132px;
	padding: 18px;
	color: inherit;
	text-align: center;
	text-decoration: none;
	background: #fff;
	border: 1px solid var(--isend-slate-100);
	border-radius: 16px;
	box-shadow: 0 1px 2px rgba(15, 23, 42, .02);
	transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.isend-company-card:hover {
	color: inherit;
	text-decoration: none;
	border-color: var(--isend-slate-200);
	box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
	transform: translateY(-3px);
}

.isend-company-mark {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 62px;
	padding: 4px 12px;
	background: transparent;
	border-radius: 0;
	overflow: hidden;
}

.isend-company-mark img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 150px;
	max-height: 62px;
	object-fit: contain;
	object-position: center;
	transition: transform .25s ease;
}

.isend-company-card:hover .isend-company-mark {
	transform: none;
}

.isend-company-card:hover .isend-company-mark img {
	transform: scale(1.06);
}

.isend-company-content {
	width: 100%;
	text-align: center;
}

.isend-company-content strong {
	display: block;
	overflow: hidden;
	color: var(--isend-slate-600);
	font-size: 13px;
	font-weight: 700;
	line-height: 18px;
	text-overflow: ellipsis;
	white-space: nowrap;
	transition: color .2s ease;
}

.isend-company-card:hover .isend-company-content strong {
	color: var(--isend-slate-800);
}

@media (max-width: 991.98px) {
	.isend-company-card {
		height: 124px;
		padding: 16px;
	}

	.isend-company-mark {
		height: 58px;
	}

	.isend-company-mark img {
		max-width: 140px;
		max-height: 58px;
	}
}

@media (max-width: 767.98px) {
	.isend-company-card {
		height: 116px;
		gap: 10px;
		padding: 14px;
	}

	.isend-company-mark {
		height: 52px;
		padding-right: 8px;
		padding-left: 8px;
	}

	.isend-company-mark img {
		max-width: 125px;
		max-height: 52px;
	}
}

@media (max-width: 575.98px) {
	.isend-company-card {
		height: 108px;
		padding: 12px;
		border-radius: 14px;
	}

	.isend-company-mark {
		height: 46px;
	}

	.isend-company-mark img {
		max-width: 110px;
		max-height: 46px;
	}

	.isend-company-content strong {
		font-size: 12px;
		line-height: 16px;
	}
}

.isend-company-content {
	text-align: center;
}

.isend-company-content strong {
	display: block;
	color: #64748b;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
	transition: color .2s ease;
}

.isend-company-content small {
	display: block;
	margin-top: 4px;
	color: #cbd5e1;
	font-size: 10px;
	font-weight: 500;
	line-height: 14px;
	letter-spacing: .08em;
	text-transform: uppercase;
	transition: color .2s ease;
}

.isend-company-card:hover .isend-company-content strong {
	color: #334155;
}

.isend-company-card:hover .isend-company-content small {
	color: #94a3b8;
}

.isend-trust-card {
	display: flex;
	align-items: center;
	gap: 16px;
	height: 100%;
	padding: 16px 20px;
	border: 1px solid;
	border-radius: 16px;
}

.isend-trust-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 36px;
	height: 36px;
	font-size: 18px;
	border-radius: 12px;
}

.isend-trust-card strong {
	display: block;
	color: #1e293b;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.25;
}

.isend-trust-card p {
	margin: 2px 0 0;
	color: #94a3b8;
	font-size: 11.5px;
	line-height: 1.4;
}

.isend-trust-card-blue {
	background: #eff6ff;
	border-color: #dbeafe;
}

.isend-trust-card-blue .isend-trust-icon {
	color: #2563eb;
	background: #dbeafe;
}

.isend-trust-card-green {
	background: #ecfdf5;
	border-color: #d1fae5;
}

.isend-trust-card-green .isend-trust-icon {
	color: #059669;
	background: #d1fae5;
}

.isend-trust-card-violet {
	background: #f5f3ff;
	border-color: #ede9fe;
}

.isend-trust-card-violet .isend-trust-icon {
	color: #7c3aed;
	background: #ede9fe;
}

@media (max-width: 991.98px) {
	.isend-trusted-section {
		padding: 68px 0;
	}

	.isend-trusted-header {
		margin-bottom: 44px;
	}
}

@media (max-width: 767.98px) {
	.isend-trusted-container {
		padding-right: 18px;
		padding-left: 18px;
	}

	.isend-trusted-title {
		font-size: 27px;
	}

	.isend-logo-grid {
		margin-bottom: 38px;
	}

	.isend-company-card {
		height: 104px;
		padding: 16px;
	}
}

@media (max-width: 575.98px) {
	.isend-trusted-section {
		padding: 58px 0;
	}

	.isend-trusted-header {
		margin-bottom: 36px;
	}

	.isend-section-badge {
		font-size: 10px;
	}

	.isend-trusted-title {
		font-size: 25px;
	}

	.isend-trusted-description {
		font-size: 14px;
	}

	.isend-company-card {
		height: 102px;
	}

	.isend-trust-card {
		padding: 14px 16px;
	}
}

/* RESULTS AREA */

.isend-results-section {
	padding: 80px 0;
	background: #f8fafc;
}

.isend-results-container {
	max-width: 1400px;
	margin: 0 auto;
	padding-right: 24px;
	padding-left: 24px;
}

.isend-results-header {
	margin-bottom: 56px;
}

.isend-results-eyebrow {
	display: inline-block;
	color: #059669;
	font-size: 12px;
	font-weight: 700;
	line-height: 16px;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.isend-results-title {
	margin: 12px 0 16px;
	color: #0f172a;
	font-size: clamp(28px, 2.6vw, 40px);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -.03em;
}

.isend-results-description {
	max-width: 520px;
	margin: 0 auto;
	color: #64748b;
	font-size: 18px;
	line-height: 1.6;
}

.isend-result-card {
	height: 100%;
	padding: 28px;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	box-shadow: 0 1px 2px rgba(15, 23, 42, .03);
	transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
}

.isend-result-card:hover {
	border-color: #d7e0eb;
	box-shadow: 0 18px 35px rgba(15, 23, 42, .08);
	transform: translateY(-4px);
}

.isend-result-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin-bottom: 24px;
	font-size: 20px;
	border-radius: 12px;
}

.isend-result-icon-emerald {
	color: #059669;
	background: #d1fae5;
}

.isend-result-icon-cyan {
	color: #0891b2;
	background: #cffafe;
}

.isend-result-icon-purple {
	color: #7c3aed;
	background: #ede9fe;
}

.isend-result-icon-amber {
	color: #d97706;
	background: #fef3c7;
}

.isend-result-value {
	display: block;
	margin-bottom: 8px;
	color: #0f172a;
	font-size: 38px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -.04em;
}

.isend-result-label {
	margin: 0 0 4px;
	color: #1e293b;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
}

.isend-result-subtitle {
	min-height: 18px;
	margin: 0 0 20px;
	color: #94a3b8;
	font-size: 12px;
	line-height: 18px;
}

.isend-result-chart {
	height: 40px;
	overflow: hidden;
}

.isend-result-chart svg {
	display: block;
	width: 100%;
	height: 40px;
	overflow: visible;
}

.isend-result-chart polyline {
	fill: none;
	stroke: #10b981;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	opacity: .7;
	vector-effect: non-scaling-stroke;
}

.isend-result-chart-cyan polyline {
	stroke: #06b6d4;
}

.isend-result-chart-purple polyline {
	stroke: #8b5cf6;
}

.isend-result-chart-amber polyline {
	stroke: #f59e0b;
}

@media (max-width: 991.98px) {
	.isend-results-section {
		padding: 68px 0;
	}

	.isend-results-header {
		margin-bottom: 44px;
	}
}

@media (max-width: 767.98px) {
	.isend-results-container {
		padding-right: 18px;
		padding-left: 18px;
	}

	.isend-results-description {
		font-size: 16px;
	}

	.isend-result-card {
		padding: 24px;
	}
}

@media (max-width: 575.98px) {
	.isend-results-section {
		padding: 58px 0;
	}

	.isend-results-header {
		margin-bottom: 36px;
	}

	.isend-results-title {
		font-size: 27px;
	}

	.isend-result-value {
		font-size: 34px;
	}
}

/* FEATURES AREA */

.isend-features-section {
	padding: 80px 0;
	background: #fff;
}

.isend-features-container {
	max-width: 1400px;
	margin: 0 auto;
	padding-right: 24px;
	padding-left: 24px;
}

.isend-features-header {
	margin-bottom: 56px;
}

.isend-features-eyebrow {
	display: inline-block;
	color: #059669;
	font-size: 12px;
	font-weight: 700;
	line-height: 16px;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.isend-features-title {
	margin: 12px 0 16px;
	color: #0f172a;
	font-size: clamp(28px, 2.6vw, 40px);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -.03em;
}

.isend-features-description {
	max-width: 576px;
	margin: 0 auto;
	color: #64748b;
	font-size: 18px;
	line-height: 1.6;
}

.isend-feature-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 315px;
	padding: 24px;
	cursor: default;
	background: #fff;
	border: 1px solid #f1f5f9;
	border-radius: 16px;
	box-shadow: 0 1px 2px rgba(15, 23, 42, .02);
	transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.isend-feature-card:hover {
	border-color: #e2e8f0;
	box-shadow: 0 20px 40px rgba(15, 23, 42, .09);
	transform: translateY(-6px);
}

.isend-feature-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 20px;
	font-size: 21px;
	border: 1px solid;
	border-radius: 16px;
	transition: background-color .2s ease, transform .2s ease;
}

.isend-feature-card:hover .isend-feature-icon {
	transform: scale(1.04);
}

.isend-feature-icon-emerald {
	color: #059669;
	background: #ecfdf5;
	border-color: #d1fae5;
}

.isend-feature-card:hover .isend-feature-icon-emerald {
	background: #d1fae5;
}

.isend-feature-icon-cyan {
	color: #0891b2;
	background: #ecfeff;
	border-color: #cffafe;
}

.isend-feature-card:hover .isend-feature-icon-cyan {
	background: #cffafe;
}

.isend-feature-icon-purple {
	color: #9333ea;
	background: #faf5ff;
	border-color: #f3e8ff;
}

.isend-feature-card:hover .isend-feature-icon-purple {
	background: #f3e8ff;
}

.isend-feature-icon-amber {
	color: #d97706;
	background: #fffbeb;
	border-color: #fef3c7;
}

.isend-feature-card:hover .isend-feature-icon-amber {
	background: #fef3c7;
}

.isend-feature-icon-slate {
	color: #475569;
	background: #f1f5f9;
	border-color: #e2e8f0;
}

.isend-feature-card:hover .isend-feature-icon-slate {
	background: #e2e8f0;
}

.isend-feature-accent {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	margin-bottom: 12px;
	padding: 3px 8px;
	font-size: 10px;
	font-weight: 700;
	line-height: 14px;
	border-radius: 999px;
}

.isend-feature-accent-emerald {
	color: #059669;
	background: #ecfdf5;
}

.isend-feature-accent-cyan {
	color: #0891b2;
	background: #ecfeff;
}

.isend-feature-accent-purple {
	color: #9333ea;
	background: #faf5ff;
}

.isend-feature-accent-amber {
	color: #d97706;
	background: #fffbeb;
}

.isend-feature-accent-slate {
	color: #475569;
	background: #f1f5f9;
}

.isend-feature-card h3 {
	margin: 0 0 10px;
	color: #0f172a;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.4;
}

.isend-feature-card p {
	margin: 0;
	color: #64748b;
	font-size: 14px;
	line-height: 1.7;
}

.isend-feature-more {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-top: auto;
	padding-top: 16px;
	color: #059669;
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
	border-top: 1px solid #f1f5f9;
	opacity: 0;
	transform: translateY(-4px);
	transition: opacity .2s ease, color .2s ease, transform .2s ease;
}

.isend-feature-card:hover .isend-feature-more {
	opacity: 1;
	transform: translateY(0);
}

.isend-feature-more:hover {
	color: #047857;
}

.isend-feature-more i {
	font-size: 10px;
	transition: transform .2s ease;
}

.isend-feature-more:hover i {
	transform: translateX(3px);
}

@media (max-width: 991.98px) {
	.isend-features-section {
		padding: 68px 0;
	}

	.isend-features-header {
		margin-bottom: 44px;
	}

	.isend-feature-card {
		min-height: 290px;
	}
}

@media (max-width: 767.98px) {
	.isend-features-container {
		padding-right: 18px;
		padding-left: 18px;
	}

	.isend-features-description {
		font-size: 16px;
	}

	.isend-feature-card {
		min-height: 280px;
	}
}

@media (max-width: 575.98px) {
	.isend-features-section {
		padding: 58px 0;
	}

	.isend-features-header {
		margin-bottom: 36px;
	}

	.isend-features-title {
		font-size: 27px;
	}

	.isend-feature-card {
		min-height: auto;
		padding: 22px;
	}

	.isend-feature-more {
		opacity: 1;
		transform: none;
	}
}

/* MESSAGE BOX AREA */

.isend-inbox-section {
	padding: 80px 0;
	background: #f8fafc;
}

.isend-inbox-container {
	max-width: 1400px;
	margin: 0 auto;
	padding-right: 24px;
	padding-left: 24px;
}

.isend-inbox-content {
	max-width: 520px;
}

.isend-inbox-eyebrow {
	display: inline-block;
	color: #059669;
	font-size: 12px;
	font-weight: 700;
	line-height: 16px;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.isend-inbox-title {
	margin: 12px 0 20px;
	color: #0f172a;
	font-size: clamp(30px, 3vw, 42px);
	font-weight: 800;
	line-height: 1.18;
	letter-spacing: -.035em;
}

.isend-inbox-description {
	margin: 0 0 36px;
	color: #64748b;
	font-size: 18px;
	line-height: 1.7;
}

.isend-inbox-feature-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.isend-inbox-feature-list li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.isend-inbox-feature-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 32px;
	height: 32px;
	margin-top: 2px;
	color: #059669;
	font-size: 15px;
	background: #ecfdf5;
	border: 1px solid #d1fae5;
	border-radius: 12px;
}

.isend-inbox-feature-list strong {
	display: block;
	color: #1e293b;
	font-size: 14px;
	font-weight: 700;
	line-height: 20px;
}

.isend-inbox-feature-list small {
	display: block;
	margin-top: 2px;
	color: #64748b;
	font-size: 12px;
	line-height: 18px;
}

.isend-inbox-demo {
	overflow: hidden;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	box-shadow: 0 28px 60px rgba(148, 163, 184, .28);
}

.isend-inbox-browserbar {
	display: flex;
	align-items: center;
	height: 48px;
	padding: 0 16px;
	background: #0f172a;
}

.isend-inbox-browser-dots {
	display: flex;
	gap: 6px;
}

.isend-inbox-browser-dots span {
	width: 12px;
	height: 12px;
	border-radius: 50%;
}

.isend-inbox-browser-dots span:nth-child(1) {
	background: #f87171;
}

.isend-inbox-browser-dots span:nth-child(2) {
	background: #fbbf24;
}

.isend-inbox-browser-dots span:nth-child(3) {
	background: #34d399;
}

.isend-inbox-browser-address {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 0 auto;
	padding: 5px 12px;
	color: #94a3b8;
	font-size: 11px;
	background: #1e293b;
	border-radius: 8px;
}

.isend-inbox-browser-address span {
	width: 8px;
	height: 8px;
	background: #34d399;
	border-radius: 50%;
	animation: isend-inbox-pulse 1.8s ease-in-out infinite;
}

@keyframes isend-inbox-pulse {
	0%, 100% {
		opacity: 1;
	}

	50% {
		opacity: .4;
	}
}

.isend-inbox-app {
	display: grid;
	grid-template-columns: 240px minmax(0, 1fr);
	height: 360px;
}

.isend-inbox-conversations {
	display: flex;
	flex-direction: column;
	min-width: 0;
	background: #fff;
	border-right: 1px solid #f1f5f9;
}

.isend-inbox-list-head {
	padding: 12px;
	border-bottom: 1px solid #f1f5f9;
}

.isend-inbox-search {
	display: flex;
	align-items: center;
	gap: 7px;
	height: 34px;
	padding: 0 10px;
	color: #94a3b8;
	font-size: 12px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
}

.isend-inbox-search i {
	font-size: 11px;
}

.isend-inbox-tabs {
	display: flex;
	gap: 4px;
	margin-top: 8px;
}

.isend-inbox-tabs button {
	padding: 4px 8px;
	color: #64748b;
	font-size: 10px;
	font-weight: 600;
	background: transparent;
	border: 0;
	border-radius: 8px;
}

.isend-inbox-tabs button:hover {
	background: #f1f5f9;
}

.isend-inbox-tabs button.active {
	color: #fff;
	background: #10b981;
}

.isend-inbox-conversation-list {
	flex: 1;
	overflow: hidden;
}

.isend-inbox-conversation {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	width: 100%;
	min-height: 64px;
	padding: 12px;
	text-align: left;
	background: #fff;
	border: 0;
	border-bottom: 1px solid #f8fafc;
	transition: background-color .2s ease;
}

.isend-inbox-conversation:hover {
	background: #f8fafc;
}

.isend-inbox-conversation.active {
	padding-left: 9px;
	background: #ecfdf5;
	border-left: 3px solid #10b981;
}

.isend-inbox-avatar-wrap {
	position: relative;
	display: block;
	flex: 0 0 auto;
}

.isend-inbox-avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 32px;
	height: 32px;
	font-size: 10px;
	font-weight: 700;
	border-radius: 50%;
}

.isend-inbox-avatar-xs {
	width: 24px;
	height: 24px;
	font-size: 8px;
}

.isend-inbox-avatar-emerald {
	color: #047857;
	background: #d1fae5;
}

.isend-inbox-avatar-cyan {
	color: #0e7490;
	background: #cffafe;
}

.isend-inbox-avatar-purple {
	color: #7e22ce;
	background: #f3e8ff;
}

.isend-inbox-avatar-amber {
	color: #b45309;
	background: #fef3c7;
}

.isend-inbox-avatar-slate {
	color: #475569;
	background: #e2e8f0;
}

.isend-inbox-online {
	position: absolute;
	right: -2px;
	bottom: -2px;
	width: 10px;
	height: 10px;
	background: #34d399;
	border: 2px solid #fff;
	border-radius: 50%;
}

.isend-inbox-conversation-body {
	display: block;
	min-width: 0;
	flex: 1;
}

.isend-inbox-conversation-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-bottom: 2px;
}

.isend-inbox-conversation-top strong {
	overflow: hidden;
	color: #0f172a;
	font-size: 12px;
	font-weight: 700;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.isend-inbox-conversation-top small {
	flex: 0 0 auto;
	color: #94a3b8;
	font-size: 10px;
}

.isend-inbox-preview {
	display: block;
	overflow: hidden;
	color: #64748b;
	font-size: 11px;
	line-height: 17px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.isend-inbox-tag {
	display: inline-block;
	margin-top: 4px;
	padding: 2px 6px;
	color: #047857;
	font-size: 9px;
	font-weight: 600;
	line-height: 12px;
	background: #ecfdf5;
	border: 1px solid #a7f3d0;
	border-radius: 999px;
}

.isend-inbox-unread {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	margin-top: 4px;
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	background: #10b981;
	border-radius: 50%;
}

.isend-inbox-chat {
	display: flex;
	flex-direction: column;
	min-width: 0;
	background: #fff;
}

.isend-inbox-chat-header {
	display: flex;
	align-items: center;
	gap: 12px;
	height: 58px;
	padding: 0 16px;
	border-bottom: 1px solid #f1f5f9;
}

.isend-inbox-chat-user {
	min-width: 0;
	flex: 1;
}

.isend-inbox-chat-user strong {
	display: block;
	color: #0f172a;
	font-size: 12px;
	font-weight: 700;
}

.isend-inbox-chat-user div {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-top: 2px;
}

.isend-inbox-chat-user div > span {
	color: #64748b;
	font-size: 10px;
}

.isend-inbox-chat-user em {
	padding: 2px 6px;
	color: #b45309;
	font-size: 9px;
	font-style: normal;
	font-weight: 600;
	background: #fffbeb;
	border: 1px solid #fde68a;
	border-radius: 999px;
}

.isend-inbox-chat-actions {
	display: flex;
	align-items: center;
	gap: 6px;
}

.isend-inbox-chat-actions > span {
	padding: 3px 8px;
	color: #0e7490;
	font-size: 10px;
	font-weight: 600;
	background: #ecfeff;
	border: 1px solid #a5f3fc;
	border-radius: 999px;
}

.isend-inbox-chat-actions button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	padding: 0;
	color: #94a3b8;
	background: transparent;
	border: 0;
	border-radius: 8px;
}

.isend-inbox-chat-actions button:hover {
	background: #f1f5f9;
}

.isend-inbox-messages {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 10px;
	padding: 16px;
	overflow: hidden;
	background: rgba(248, 250, 252, .4);
}

.isend-inbox-message-row {
	display: flex;
	align-items: flex-end;
	gap: 8px;
}

.isend-inbox-message-row-out {
	justify-content: flex-end;
}

.isend-inbox-message {
	max-width: 220px;
	padding: 8px 12px;
	font-size: 11px;
	line-height: 16px;
	border-radius: 16px;
	box-shadow: 0 1px 3px rgba(15, 23, 42, .08);
}

.isend-inbox-message-out {
	color: #fff;
	background: #10b981;
	border-bottom-right-radius: 4px;
}

.isend-inbox-message-in {
	color: #1e293b;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-bottom-left-radius: 4px;
}

.isend-inbox-internal-note {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	color: #b45309;
	font-size: 10px;
	font-weight: 500;
	background: #fffbeb;
	border: 1px solid #fde68a;
	border-radius: 12px;
}

.isend-inbox-internal-note i {
	flex: 0 0 auto;
	color: #f59e0b;
	font-size: 11px;
}

.isend-inbox-composer {
	padding: 12px;
	background: #fff;
	border-top: 1px solid #f1f5f9;
}

.isend-inbox-composer-field {
	display: flex;
	align-items: center;
	gap: 10px;
	height: 38px;
	padding: 0 8px 0 12px;
	color: #94a3b8;
	font-size: 11px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
}

.isend-inbox-composer-field > span {
	flex: 1;
}

.isend-inbox-composer-field > div {
	display: flex;
	align-items: center;
	gap: 6px;
}

.isend-inbox-quick-reply {
	padding: 5px 8px;
	color: #64748b;
	font-size: 10px;
	font-weight: 500;
	background: #f1f5f9;
	border: 0;
	border-radius: 8px;
}

.isend-inbox-send {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	padding: 0;
	color: #fff;
	font-size: 9px;
	background: #10b981;
	border: 0;
	border-radius: 50%;
}

@media (max-width: 1199.98px) {
	.isend-inbox-app {
		grid-template-columns: 210px minmax(0, 1fr);
	}
}

@media (max-width: 991.98px) {
	.isend-inbox-section {
		padding: 68px 0;
	}

	.isend-inbox-content {
		max-width: 680px;
	}

	.isend-inbox-app {
		grid-template-columns: 240px minmax(0, 1fr);
	}
}

@media (max-width: 767.98px) {
	.isend-inbox-container {
		padding-right: 18px;
		padding-left: 18px;
	}

	.isend-inbox-description {
		font-size: 16px;
	}

	.isend-inbox-demo {
		overflow-x: auto;
	}

	.isend-inbox-browserbar, .isend-inbox-app {
		min-width: 650px;
	}

	.isend-inbox-app {
		grid-template-columns: 240px 410px;
	}
}

@media (max-width: 575.98px) {
	.isend-inbox-section {
		padding: 58px 0;
	}

	.isend-inbox-title {
		font-size: 28px;
	}

	.isend-inbox-description {
		margin-bottom: 30px;
	}
}

/* CAMPAIGN AREA */

.isend-campaign-section {
	padding: 80px 0;
	background: #fff;
}

.isend-campaign-container {
	max-width: 1400px;
	margin: 0 auto;
	padding-right: 24px;
	padding-left: 24px;
}

.isend-campaign-header {
	margin-bottom: 64px;
}

.isend-campaign-eyebrow {
	display: inline-block;
	color: #059669;
	font-size: 12px;
	font-weight: 700;
	line-height: 16px;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.isend-campaign-title {
	margin: 12px 0 16px;
	color: #0f172a;
	font-size: clamp(28px, 2.6vw, 40px);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -.03em;
}

.isend-campaign-description {
	max-width: 576px;
	margin: 0 auto;
	color: #64748b;
	font-size: 18px;
	line-height: 1.6;
}

.isend-campaign-form-card {
	padding: 28px;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	box-shadow: 0 18px 45px rgba(15, 23, 42, .09);
}

.isend-campaign-card-header, .isend-campaign-results-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 24px;
}

.isend-campaign-card-header h3 {
	margin: 0;
	color: #1e293b;
	font-size: 16px;
	font-weight: 800;
	line-height: 22px;
}

.isend-status-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 10px;
	font-size: 10px;
	font-weight: 700;
	line-height: 14px;
	border-radius: 999px;
}

.isend-status-badge > span {
	width: 6px;
	height: 6px;
	border-radius: 50%;
}

.isend-status-draft {
	color: #475569;
	background: #f1f5f9;
}

.isend-status-draft > span {
	background: #94a3b8;
}

.isend-status-completed {
	color: #047857;
	background: #ecfdf5;
}

.isend-status-completed > span {
	background: #10b981;
}

.isend-campaign-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.isend-campaign-field label {
	display: block;
	margin-bottom: 6px;
	color: #475569;
	font-size: 12px;
	font-weight: 700;
	line-height: 16px;
}

.isend-campaign-control {
	display: flex;
	align-items: center;
	min-height: 44px;
	padding: 10px 16px;
	color: #334155;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
}

.isend-campaign-select {
	justify-content: space-between;
	gap: 10px;
}

.isend-campaign-select i {
	color: #94a3b8;
	font-size: 11px;
}

.isend-campaign-preview {
	padding: 16px;
	background: linear-gradient(135deg, #ecfdf5 0%, #ecfeff 100%);
	border: 1px solid #a7f3d0;
	border-radius: 16px;
}

.isend-campaign-message {
	max-width: 320px;
	padding: 14px;
	background: #fff;
	border-radius: 4px 16px 16px 16px;
	box-shadow: 0 2px 6px rgba(15, 23, 42, .08);
}

.isend-campaign-message p {
	margin: 0;
	color: #1e293b;
	font-size: 13px;
	line-height: 1.7;
}

.isend-campaign-message span {
	display: inline-block;
	padding: 0 4px;
	color: #059669;
	font-weight: 700;
	background: #ecfdf5;
	border-radius: 4px;
}

.isend-campaign-audience {
	color: #047857;
	font-weight: 800;
	background: #ecfdf5;
	border-color: #a7f3d0;
}

.isend-campaign-actions {
	display: flex;
	gap: 12px;
	padding-top: 8px;
}

.isend-campaign-test-btn, .isend-campaign-start-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	gap: 8px;
	height: 40px;
	font-size: 13px;
	font-weight: 700;
	border-radius: 10px;
}

.isend-campaign-test-btn {
	color: #334155;
	background: #fff;
	border: 1px solid #cbd5e1;
}

.isend-campaign-test-btn:hover {
	color: #0f172a;
	background: #f8fafc;
	border-color: #94a3b8;
}

.isend-campaign-start-btn {
	color: #fff;
	background: #10b981;
	border: 1px solid #10b981;
	box-shadow: 0 5px 14px rgba(16, 185, 129, .2);
}

.isend-campaign-start-btn:hover {
	color: #fff;
	background: #059669;
	border-color: #059669;
}

.isend-campaign-results {
	padding-top: 4px;
}

.isend-campaign-results-header {
	margin-bottom: 20px;
}

.isend-campaign-results-header h3 {
	margin: 0;
	color: #1e293b;
	font-size: 18px;
	font-weight: 800;
	line-height: 26px;
}

.isend-campaign-stat {
	margin-bottom: 16px;
}

.isend-campaign-stat-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 6px;
}

.isend-campaign-stat-header > span {
	color: #334155;
	font-size: 14px;
	font-weight: 500;
}

.isend-campaign-stat-header > div {
	display: flex;
	align-items: center;
	gap: 12px;
}

.isend-campaign-stat-header small {
	color: #64748b;
	font-size: 12px;
}

.isend-campaign-stat-header strong {
	min-width: 45px;
	color: #0f172a;
	font-size: 14px;
	font-weight: 800;
	text-align: right;
}

.isend-campaign-progress {
	height: 10px;
	overflow: hidden;
	background: #f1f5f9;
	border-radius: 999px;
}

.isend-campaign-progress span {
	display: block;
	height: 100%;
	border-radius: 999px;
	transition: width .7s ease;
}

.isend-campaign-progress-slate {
	background: #cbd5e1;
}

.isend-campaign-progress-emerald {
	background: #10b981;
}

.isend-campaign-progress-cyan {
	background: #06b6d4;
}

.isend-campaign-progress-purple {
	background: #8b5cf6;
}

.isend-campaign-progress-red {
	background: #f87171;
}

.isend-campaign-effectiveness {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 24px;
	padding: 24px;
	background: linear-gradient(135deg, #ecfdf5 0%, #ecfeff 100%);
	border: 1px solid #a7f3d0;
	border-radius: 16px;
}

.isend-campaign-effectiveness-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 56px;
	height: 56px;
	color: #fff;
	font-size: 24px;
	background: #10b981;
	border-radius: 16px;
}

.isend-campaign-effectiveness h4 {
	margin: 0 0 4px;
	color: #065f46;
	font-size: 14px;
	font-weight: 700;
	line-height: 20px;
}

.isend-campaign-effectiveness-value {
	display: flex;
	align-items: flex-end;
	gap: 8px;
}

.isend-campaign-effectiveness-value strong {
	color: #047857;
	font-size: 38px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -.04em;
}

.isend-campaign-effectiveness-value span {
	margin-bottom: 3px;
	color: #059669;
	font-size: 14px;
	font-weight: 500;
}

.isend-campaign-effectiveness p {
	margin: 5px 0 0;
	color: #059669;
	font-size: 12px;
	line-height: 18px;
}

@media (max-width: 991.98px) {
	.isend-campaign-section {
		padding: 68px 0;
	}

	.isend-campaign-header {
		margin-bottom: 48px;
	}
}

@media (max-width: 767.98px) {
	.isend-campaign-container {
		padding-right: 18px;
		padding-left: 18px;
	}

	.isend-campaign-description {
		font-size: 16px;
	}

	.isend-campaign-form-card {
		padding: 22px;
	}
}

@media (max-width: 575.98px) {
	.isend-campaign-section {
		padding: 58px 0;
	}

	.isend-campaign-header {
		margin-bottom: 36px;
	}

	.isend-campaign-title {
		font-size: 27px;
	}

	.isend-campaign-card-header, .isend-campaign-results-header {
		align-items: flex-start;
		flex-direction: column;
	}

	.isend-campaign-actions {
		flex-direction: column;
	}

	.isend-campaign-effectiveness {
		align-items: flex-start;
		padding: 20px;
	}

	.isend-campaign-effectiveness-value {
		align-items: flex-start;
		flex-direction: column;
		gap: 3px;
	}

	.isend-campaign-effectiveness-value span {
		margin-bottom: 0;
	}
}

/* AUTOMATION AREA */

.isend-automation-section {
	padding: 80px 0;
	background: #f8fafc;
}

.isend-automation-container {
	max-width: 1400px;
	margin: 0 auto;
	padding-right: 24px;
	padding-left: 24px;
}

.isend-automation-content {
	max-width: 520px;
}

.isend-automation-eyebrow {
	display: inline-block;
	color: #9333ea;
	font-size: 12px;
	font-weight: 700;
	line-height: 16px;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.isend-automation-title {
	margin: 12px 0 20px;
	color: #0f172a;
	font-size: clamp(30px, 3vw, 42px);
	font-weight: 800;
	line-height: 1.18;
	letter-spacing: -.035em;
}

.isend-automation-description {
	margin: 0 0 36px;
	color: #64748b;
	font-size: 18px;
	line-height: 1.7;
}

.isend-automation-feature-grid {
	margin-bottom: 32px;
}

.isend-automation-feature {
	display: flex;
	align-items: center;
	gap: 9px;
	color: #334155;
	font-size: 14px;
	font-weight: 600;
}

.isend-automation-feature > span {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 28px;
	height: 28px;
	color: #a855f7;
	font-size: 13px;
	background: #faf5ff;
	border: 1px solid #f3e8ff;
	border-radius: 8px;
}

.isend-automation-feature strong {
	font-size: 14px;
	font-weight: 600;
}

.isend-automation-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	height: 48px;
	padding: 0 22px;
	color: #9333ea;
	font-size: 14px;
	font-weight: 700;
	background: #fff;
	border: 1px solid #a855f7;
	border-radius: 12px;
}

.isend-automation-cta:hover {
	color: #7e22ce;
	background: #faf5ff;
	border-color: #9333ea;
}

.isend-automation-card {
	padding: 24px;
	overflow: hidden;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	box-shadow: 0 22px 50px rgba(15, 23, 42, .12);
}

.isend-automation-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 20px;
}

.isend-automation-card-header h3 {
	margin: 0;
	color: #1e293b;
	font-size: 14px;
	font-weight: 800;
	line-height: 20px;
}

.isend-automation-card-header p {
	margin: 2px 0 0;
	color: #64748b;
	font-size: 12px;
	line-height: 18px;
}

.isend-automation-card-actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

.isend-automation-test-btn, .isend-automation-active-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	height: 28px;
	padding: 0 10px;
	font-size: 11px;
	font-weight: 700;
	border-radius: 8px;
}

.isend-automation-test-btn {
	color: #475569;
	background: #f1f5f9;
	border: 1px solid #f1f5f9;
}

.isend-automation-test-btn:hover {
	color: #1e293b;
	background: #e2e8f0;
	border-color: #e2e8f0;
}

.isend-automation-active-btn {
	color: #fff;
	background: #a855f7;
	border: 1px solid #a855f7;
}

.isend-automation-active-btn:hover {
	color: #fff;
	background: #9333ea;
	border-color: #9333ea;
}

.isend-automation-flow-wrap {
	padding: 24px;
	overflow-x: auto;
	background: rgba(248, 250, 252, .8);
	border: 1px solid #e2e8f0;
	border-radius: 16px;
}

.isend-automation-flow {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 925px;
}

.isend-automation-node {
	flex: 0 0 auto;
	min-width: 100px;
	padding: 14px;
	text-align: left;
	border: 2px solid;
	border-radius: 16px;
	transition: box-shadow .2s ease, transform .2s ease;
}

.isend-automation-node:hover {
	box-shadow: 0 10px 22px rgba(15, 23, 42, .12);
	transform: scale(1.05);
}

.isend-automation-node.active {
	box-shadow: 0 0 0 2px #fff, 0 0 0 4px #c084fc, 0 10px 22px rgba(15, 23, 42, .12);
	transform: scale(1.05);
}

.isend-automation-node-label {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 6px;
	font-size: 10px;
	font-weight: 700;
	line-height: 14px;
	opacity: .72;
}

.isend-automation-node-label i {
	display: block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
}

.isend-automation-node strong {
	display: block;
	margin-bottom: 2px;
	font-size: 12px;
	font-weight: 800;
	line-height: 17px;
	white-space: nowrap;
}

.isend-automation-node small {
	display: block;
	font-size: 10px;
	line-height: 14px;
	opacity: .62;
	white-space: nowrap;
}

.isend-automation-node-trigger {
	color: #065f46;
	background: #d1fae5;
	border-color: #34d399;
}

.isend-automation-node-trigger .isend-automation-node-label i {
	background: #10b981;
}

.isend-automation-node-message {
	color: #1e40af;
	background: #dbeafe;
	border-color: #60a5fa;
}

.isend-automation-node-message .isend-automation-node-label i {
	background: #3b82f6;
}

.isend-automation-node-wait {
	color: #92400e;
	background: #fef3c7;
	border-color: #fbbf24;
}

.isend-automation-node-wait .isend-automation-node-label i {
	background: #f59e0b;
}

.isend-automation-node-condition {
	color: #6b21a8;
	background: #f3e8ff;
	border-color: #c084fc;
}

.isend-automation-node-condition .isend-automation-node-label i {
	background: #a855f7;
}

.isend-automation-node-team {
	color: #155e75;
	background: #cffafe;
	border-color: #22d3ee;
}

.isend-automation-node-team .isend-automation-node-label i {
	background: #06b6d4;
}

.isend-automation-node-api {
	color: #334155;
	background: #f1f5f9;
	border-color: #cbd5e1;
}

.isend-automation-node-api .isend-automation-node-label i {
	background: #64748b;
}

.isend-automation-connector {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	gap: 2px;
}

.isend-automation-connector span {
	display: block;
	width: 16px;
	height: 1px;
	background: #cbd5e1;
}

.isend-automation-connector i {
	color: #94a3b8;
	font-size: 11px;
}

.isend-automation-add-node {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 48px;
	height: 48px;
	margin-left: 8px;
	color: #94a3b8;
	font-size: 17px;
	background: transparent;
	border: 2px dashed #cbd5e1;
	border-radius: 16px;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.isend-automation-add-node:hover {
	color: #9333ea;
	background: #faf5ff;
	border-color: #c084fc;
}

.isend-automation-selected-node {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-top: 16px;
	padding: 16px;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
}

.isend-automation-selected-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 32px;
	height: 32px;
	font-size: 13px;
	border-radius: 12px;
}

.isend-automation-selected-trigger {
	color: #065f46;
	background: #d1fae5;
	border: 1px solid #34d399;
}

.isend-automation-selected-message {
	color: #1e40af;
	background: #dbeafe;
	border: 1px solid #60a5fa;
}

.isend-automation-selected-wait {
	color: #92400e;
	background: #fef3c7;
	border: 1px solid #fbbf24;
}

.isend-automation-selected-condition {
	color: #6b21a8;
	background: #f3e8ff;
	border: 1px solid #c084fc;
}

.isend-automation-selected-team {
	color: #155e75;
	background: #cffafe;
	border: 1px solid #22d3ee;
}

.isend-automation-selected-api {
	color: #334155;
	background: #f1f5f9;
	border: 1px solid #cbd5e1;
}

.isend-automation-selected-node > div {
	min-width: 0;
	flex: 1;
}

.isend-automation-selected-node strong {
	display: block;
	color: #1e293b;
	font-size: 12px;
	font-weight: 800;
	line-height: 17px;
}

.isend-automation-selected-node small {
	display: block;
	margin-top: 2px;
	color: #64748b;
	font-size: 12px;
	line-height: 17px;
}

.isend-automation-selected-node > button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	padding: 0;
	color: #94a3b8;
	font-size: 12px;
	background: transparent;
	border: 0;
	border-radius: 8px;
}

.isend-automation-selected-node > button:hover {
	color: #475569;
	background: #f1f5f9;
}

@media (max-width: 991.98px) {
	.isend-automation-section {
		padding: 68px 0;
	}

	.isend-automation-content {
		max-width: 680px;
	}
}

@media (max-width: 767.98px) {
	.isend-automation-container {
		padding-right: 18px;
		padding-left: 18px;
	}

	.isend-automation-description {
		font-size: 16px;
	}

	.isend-automation-card {
		padding: 20px;
	}
}

@media (max-width: 575.98px) {
	.isend-automation-section {
		padding: 58px 0;
	}

	.isend-automation-title {
		font-size: 28px;
	}

	.isend-automation-card-header {
		align-items: flex-start;
		flex-direction: column;
	}

	.isend-automation-feature {
		align-items: flex-start;
		flex-direction: column;
		gap: 6px;
		font-size: 12px;
	}

	.isend-automation-feature strong {
		font-size: 12px;
	}

	.isend-automation-cta {
		width: 100%;
	}
}

/* AICHATBOT AREA */

.isend-ai-section {
	position: relative;
	padding: 80px 0;
	overflow: hidden;
	background: #0f172a;
}

.isend-ai-container {
	position: relative;
	z-index: 3;
	max-width: 1400px;
	margin: 0 auto;
	padding-right: 24px;
	padding-left: 24px;
}

.isend-ai-bg-glow {
	position: absolute;
	pointer-events: none;
	border-radius: 50%;
	filter: blur(100px);
}

.isend-ai-bg-glow-green {
	top: -100px;
	right: -80px;
	width: 600px;
	height: 600px;
	background: rgba(16, 185, 129, .08);
}

.isend-ai-bg-glow-purple {
	bottom: -120px;
	left: -80px;
	width: 500px;
	height: 500px;
	background: rgba(168, 85, 247, .08);
}

.isend-ai-pattern {
	position: absolute;
	inset: 0;
	opacity: .03;
	pointer-events: none;
	background-image: radial-gradient(circle, #fff 1.5px, transparent 1.5px);
	background-size: 32px 32px;
}

.isend-ai-content {
	max-width: 590px;
}

.isend-ai-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 28px;
	padding: 8px 16px;
	color: #25d366;
	font-size: 12px;
	font-weight: 700;
	line-height: 16px;
	background: rgba(37, 211, 102, .2);
	border: 1px solid rgba(37, 211, 102, .3);
	border-radius: 999px;
}

.isend-ai-badge i {
	font-size: 13px;
}

.isend-ai-title {
	margin: 0 0 20px;
	color: #fff;
	font-size: clamp(30px, 3vw, 42px);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -.035em;
}

.isend-ai-description {
	margin: 0 0 36px;
	color: #94a3b8;
	font-size: 18px;
	line-height: 1.7;
}

.isend-ai-feature-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.isend-ai-feature-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 16px;
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 16px;
	transition: background-color .2s ease;
}

.isend-ai-feature-item:hover {
	background: rgba(255, 255, 255, .08);
}

.isend-ai-feature-dot {
	flex: 0 0 auto;
	width: 10px;
	height: 10px;
	margin-top: 6px;
	border-radius: 50%;
}

.isend-ai-feature-dot-green {
	background: #25d366;
}

.isend-ai-feature-dot-purple {
	background: #8b5cf6;
}

.isend-ai-feature-dot-cyan {
	background: #06b6d4;
}

.isend-ai-feature-item strong {
	display: block;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 20px;
}

.isend-ai-feature-item small {
	display: block;
	margin-top: 2px;
	color: #94a3b8;
	font-size: 12px;
	line-height: 18px;
}

.isend-ai-phone-wrap {
	position: relative;
	max-width: 470px;
	margin: 0 auto;
}

.isend-ai-phone {
	max-width: 340px;
	margin: 0 auto;
	overflow: hidden;
	background: #111b21;
	border: 6px solid #334155;
	border-radius: 36px;
	box-shadow: 0 40px 80px -12px rgba(0, 0, 0, .7);
}

.isend-ai-phone-statusbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 30px;
	padding: 9px 20px 4px;
	background: #111b21;
}

.isend-ai-phone-statusbar strong {
	color: #fff;
	font-size: 11px;
	font-weight: 700;
}

.isend-ai-signal {
	display: flex;
	align-items: flex-end;
	gap: 2px;
	height: 10px;
}

.isend-ai-signal span {
	display: block;
	width: 3px;
	background: rgba(255, 255, 255, .9);
	border-radius: 1px;
}

.isend-ai-signal span:nth-child(1) {
	height: 7px;
}

.isend-ai-signal span:nth-child(2) {
	height: 8px;
}

.isend-ai-signal span:nth-child(3) {
	height: 10px;
}

.isend-ai-signal span:nth-child(4) {
	width: 2px;
	height: 10px;
	opacity: .3;
}

.isend-ai-chat-header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	background: #202c33;
}

.isend-ai-header-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 24px;
	height: 24px;
	padding: 0;
	color: #aebac1;
	font-size: 18px;
	background: transparent;
	border: 0;
}

.isend-ai-bot-avatar, .isend-ai-message-avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	color: #fff;
	background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
	border-radius: 50%;
	box-shadow: 0 3px 8px rgba(0, 0, 0, .22);
}

.isend-ai-bot-avatar {
	width: 36px;
	height: 36px;
	font-size: 17px;
}

.isend-ai-chat-user {
	min-width: 0;
	flex: 1;
}

.isend-ai-chat-user strong {
	display: block;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 18px;
}

.isend-ai-chat-user small {
	display: block;
	color: #25d366;
	font-size: 11px;
	font-weight: 500;
	line-height: 16px;
}

.isend-ai-chat-body {
	position: relative;
	min-height: 360px;
	overflow: hidden;
	background: #0b141a;
}

.isend-ai-chat-pattern {
	position: absolute;
	inset: 0;
	opacity: .06;
	background-image: radial-gradient(circle at center, #fff 1px, transparent 1px);
	background-size: 24px 24px;
}

.isend-ai-chat-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-height: 360px;
	padding: 16px;
}

.isend-ai-day {
	display: flex;
	justify-content: center;
	margin: 4px 0;
}

.isend-ai-day span {
	padding: 4px 12px;
	color: #8696a0;
	font-size: 10px;
	font-weight: 500;
	background: #182229;
	border-radius: 999px;
}

.isend-ai-message-row {
	display: flex;
	align-items: flex-end;
	gap: 8px;
	max-width: 86%;
}

.isend-ai-message-row-out {
	align-self: flex-end;
	justify-content: flex-end;
}

.isend-ai-message-avatar {
	width: 24px;
	height: 24px;
	margin-bottom: 2px;
	font-size: 12px;
}

.isend-ai-message {
	padding: 10px 14px;
	border-radius: 16px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, .18);
}

.isend-ai-message p {
	margin: 0;
	color: #e9edef;
	font-size: 13px;
	line-height: 1.5;
}

.isend-ai-message-in {
	background: #202c33;
	border-bottom-left-radius: 0;
}

.isend-ai-message-out {
	max-width: 80%;
	background: #005c4b;
	border-bottom-right-radius: 0;
}

.isend-ai-message-meta {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 5px;
	margin-top: 4px;
}

.isend-ai-message-meta span {
	color: #8696a0;
	font-size: 10px;
}

.isend-ai-message-meta i {
	color: #53bdeb;
	font-size: 11px;
}

.isend-ai-confidence-row {
	display: flex;
	align-items: flex-end;
	gap: 8px;
	max-width: 86%;
}

.isend-ai-confidence-spacer {
	flex: 0 0 auto;
	width: 24px;
	height: 24px;
}

.isend-ai-confidence-card {
	padding: 10px 14px;
	background: #182229;
	border: 1px solid rgba(37, 211, 102, .25);
	border-radius: 16px;
}

.isend-ai-confidence-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.isend-ai-confidence-head span {
	color: #8696a0;
	font-size: 10px;
	font-weight: 600;
	white-space: nowrap;
}

.isend-ai-confidence-head strong {
	color: #25d366;
	font-size: 10px;
	font-weight: 800;
}

.isend-ai-confidence-progress {
	width: 144px;
	height: 6px;
	margin-top: 8px;
	overflow: hidden;
	background: #2a3942;
	border-radius: 999px;
}

.isend-ai-confidence-progress span {
	display: block;
	height: 100%;
	background: linear-gradient(90deg, #25d366 0%, #128c7e 100%);
	border-radius: 999px;
}

.isend-ai-quick-replies {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding-top: 4px;
}

.isend-ai-quick-replies button {
	padding: 6px 12px;
	color: #25d366;
	font-size: 11px;
	font-weight: 600;
	background: #005c4b;
	border: 1px solid rgba(37, 211, 102, .3);
	border-radius: 999px;
	transition: background-color .2s ease;
}

.isend-ai-quick-replies button:hover {
	background: #017561;
}

.isend-ai-composer {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 12px;
	background: #111b21;
}

.isend-ai-composer-input {
	display: flex;
	align-items: center;
	flex: 1;
	min-height: 42px;
	padding: 10px 16px;
	background: #202c33;
	border-radius: 999px;
}

.isend-ai-composer-input span {
	color: #8696a0;
	font-size: 13px;
	line-height: 1;
}

.isend-ai-mic-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 44px;
	height: 44px;
	padding: 0;
	color: #fff;
	font-size: 18px;
	background: #00a884;
	border: 0;
	border-radius: 50%;
	box-shadow: 0 4px 10px rgba(0, 0, 0, .22);
}

.isend-ai-home-indicator {
	display: flex;
	justify-content: center;
	padding-bottom: 8px;
	background: #111b21;
}

.isend-ai-home-indicator span {
	width: 96px;
	height: 4px;
	background: rgba(255, 255, 255, .2);
	border-radius: 999px;
}

.isend-ai-floating-stat {
	position: absolute;
	top: -16px;
	right: -16px;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 16px;
	background: #fff;
	border: 1px solid #f1f5f9;
	border-radius: 16px;
	box-shadow: 0 18px 35px rgba(0, 0, 0, .25);
}

.isend-ai-floating-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 32px;
	height: 32px;
	color: #fff;
	font-size: 14px;
	background: #25d366;
	border-radius: 12px;
}

.isend-ai-floating-stat small {
	display: block;
	color: #64748b;
	font-size: 10px;
	font-weight: 500;
}

.isend-ai-floating-stat strong {
	display: block;
	color: #0f172a;
	font-size: 14px;
	font-weight: 800;
}

@media (max-width: 1199.98px) {
	.isend-ai-floating-stat {
		display: none;
	}
}

@media (max-width: 991.98px) {
	.isend-ai-section {
		padding: 68px 0;
	}

	.isend-ai-content {
		max-width: 680px;
	}
}

@media (max-width: 767.98px) {
	.isend-ai-container {
		padding-right: 18px;
		padding-left: 18px;
	}

	.isend-ai-description {
		font-size: 16px;
	}
}

@media (max-width: 575.98px) {
	.isend-ai-section {
		padding: 58px 0;
	}

	.isend-ai-title {
		font-size: 28px;
	}

	.isend-ai-phone {
		max-width: 320px;
	}
}

/* CRM AREA */

.isend-crm-section {
	padding: 80px 0;
	background: #fff;
}

.isend-crm-container {
	max-width: 1400px;
	margin: 0 auto;
	padding-right: 24px;
	padding-left: 24px;
}

.isend-crm-profile-card {
	padding: 24px;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	box-shadow: 0 22px 50px rgba(15, 23, 42, .12);
}

.isend-crm-profile-header {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #f1f5f9;
}

.isend-crm-avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 48px;
	height: 48px;
	color: #047857;
	font-size: 14px;
	font-weight: 800;
	background: #d1fae5;
	border-radius: 50%;
}

.isend-crm-profile-user {
	min-width: 0;
	flex: 1;
}

.isend-crm-profile-user > strong {
	display: block;
	color: #0f172a;
	font-size: 16px;
	font-weight: 800;
	line-height: 22px;
}

.isend-crm-profile-user > small {
	display: block;
	margin-top: 2px;
	color: #64748b;
	font-family: monospace;
	font-size: 14px;
	line-height: 20px;
}

.isend-crm-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 8px;
}

.isend-crm-tag {
	display: inline-flex;
	align-items: center;
	padding: 3px 8px;
	font-size: 12px;
	font-weight: 700;
	line-height: 16px;
	border: 1px solid;
	border-radius: 999px;
}

.isend-crm-tag-vip {
	color: #b45309;
	background: #fffbeb;
	border-color: #fde68a;
}

.isend-crm-tag-active {
	color: #047857;
	background: #ecfdf5;
	border-color: #a7f3d0;
}

.isend-crm-header-actions {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	gap: 6px;
}

.isend-crm-action-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	padding: 0;
	color: #64748b;
	font-size: 14px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.isend-crm-action-btn:hover {
	color: #334155;
	background: #f1f5f9;
	border-color: #cbd5e1;
}

.isend-crm-action-message {
	color: #059669;
	background: #ecfdf5;
	border-color: #d1fae5;
}

.isend-crm-action-message:hover {
	color: #047857;
	background: #d1fae5;
	border-color: #a7f3d0;
}

.isend-crm-info-grid {
	margin-bottom: 20px;
}

.isend-crm-info-card {
	height: 100%;
	padding: 12px;
	background: #f8fafc;
	border-radius: 12px;
}

.isend-crm-info-card small {
	display: block;
	margin-bottom: 4px;
	color: #94a3b8;
	font-size: 10px;
	font-weight: 700;
	line-height: 14px;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.isend-crm-info-card strong {
	display: block;
	color: #1e293b;
	font-size: 12px;
	font-weight: 800;
	line-height: 17px;
}

.isend-crm-block-title {
	margin-bottom: 12px;
	color: #64748b;
	font-size: 12px;
	font-weight: 700;
	line-height: 16px;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.isend-crm-pipeline {
	margin-bottom: 20px;
}

.isend-crm-pipeline-wrap {
	position: relative;
}

.isend-crm-pipeline-line {
	position: absolute;
	z-index: 0;
	top: 16px;
	right: 0;
	left: 0;
	height: 2px;
	background: #f1f5f9;
}

.isend-crm-pipeline-stages {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.isend-crm-stage {
	display: flex;
	align-items: center;
	flex-direction: column;
	flex: 1;
	gap: 6px;
	padding: 0;
	background: transparent;
	border: 0;
}

.isend-crm-stage-circle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	color: #cbd5e1;
	font-size: 12px;
	background: #fff;
	border: 2px solid #e2e8f0;
	border-radius: 50%;
	transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.isend-crm-stage-circle > i:empty {
	display: block;
	width: 8px;
	height: 8px;
	background: #cbd5e1;
	border-radius: 50%;
}

.isend-crm-stage small {
	display: block;
	max-width: 70px;
	color: #94a3b8;
	font-size: 9px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
}

.isend-crm-stage.completed .isend-crm-stage-circle {
	color: #059669;
	background: #d1fae5;
	border-color: #6ee7b7;
}

.isend-crm-stage.completed small {
	color: #10b981;
}

.isend-crm-stage.active .isend-crm-stage-circle {
	color: #fff;
	background: #10b981;
	border-color: #10b981;
	box-shadow: 0 0 0 4px #d1fae5;
	transform: scale(1.05);
}

.isend-crm-stage.active .isend-crm-stage-circle > i:empty {
	width: 10px;
	height: 10px;
	background: #fff;
}

.isend-crm-stage.active small {
	color: #047857;
}

.isend-crm-order {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	margin-bottom: 8px;
	padding: 10px 12px;
	text-align: left;
	background: #f8fafc;
	border: 0;
	border-radius: 12px;
	transition: background-color .2s ease, transform .2s ease;
}

.isend-crm-order:last-child {
	margin-bottom: 0;
}

.isend-crm-order:hover {
	background: #f1f5f9;
	transform: translateX(2px);
}

.isend-crm-order-number {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 42px;
	height: 28px;
	font-size: 10px;
	font-weight: 800;
	border-radius: 8px;
}

.isend-crm-order-amber {
	color: #b45309;
	background: #fef3c7;
}

.isend-crm-order-emerald {
	color: #047857;
	background: #d1fae5;
}

.isend-crm-order-status {
	min-width: 0;
	flex: 1;
	color: #64748b;
	font-size: 12px;
	font-weight: 500;
}

.isend-crm-order strong {
	color: #0f172a;
	font-size: 12px;
	font-weight: 800;
}

.isend-crm-content {
	max-width: 540px;
	margin-left: auto;
}

.isend-crm-eyebrow {
	display: inline-block;
	color: #0891b2;
	font-size: 12px;
	font-weight: 700;
	line-height: 16px;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.isend-crm-title {
	margin: 12px 0 20px;
	color: #0f172a;
	font-size: clamp(30px, 3vw, 42px);
	font-weight: 800;
	line-height: 1.18;
	letter-spacing: -.035em;
}

.isend-crm-description {
	margin: 0 0 36px;
	color: #64748b;
	font-size: 18px;
	line-height: 1.7;
}

.isend-crm-feature-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.isend-crm-feature {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 16px;
	background: #f8fafc;
	border: 1px solid #f1f5f9;
	border-radius: 16px;
	transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.isend-crm-feature:hover {
	background: rgba(236, 254, 255, .55);
	border-color: #a5f3fc;
	transform: translateX(4px);
}

.isend-crm-feature-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 36px;
	height: 36px;
	color: #0891b2;
	font-size: 16px;
	background: #ecfeff;
	border: 1px solid #cffafe;
	border-radius: 12px;
}

.isend-crm-feature strong {
	display: block;
	color: #1e293b;
	font-size: 14px;
	font-weight: 700;
	line-height: 20px;
}

.isend-crm-feature small {
	display: block;
	margin-top: 2px;
	color: #64748b;
	font-size: 12px;
	line-height: 18px;
}

@media (max-width: 991.98px) {
	.isend-crm-section {
		padding: 68px 0;
	}

	.isend-crm-content {
		max-width: 680px;
		margin-left: 0;
	}
}

@media (max-width: 767.98px) {
	.isend-crm-container {
		padding-right: 18px;
		padding-left: 18px;
	}

	.isend-crm-description {
		font-size: 16px;
	}

	.isend-crm-profile-card {
		padding: 20px;
	}
}

@media (max-width: 575.98px) {
	.isend-crm-section {
		padding: 58px 0;
	}

	.isend-crm-title {
		font-size: 28px;
	}

	.isend-crm-profile-header {
		flex-wrap: wrap;
	}

	.isend-crm-header-actions {
		width: 100%;
		padding-left: 64px;
	}

	.isend-crm-pipeline-wrap {
		overflow-x: auto;
		padding-bottom: 8px;
	}

	.isend-crm-pipeline-stages {
		min-width: 500px;
	}

	.isend-crm-pipeline-line {
		width: 500px;
	}

	.isend-crm-feature:hover {
		transform: none;
	}
}

/* INDUSTRIES AREA */

.isend-industries-section {
	padding: 80px 0;
	background: #f8fafc;
}

.isend-industries-container {
	max-width: 1400px;
	margin: 0 auto;
	padding-right: 24px;
	padding-left: 24px;
}

.isend-industries-header {
	margin-bottom: 56px;
}

.isend-industries-eyebrow {
	display: inline-block;
	color: #059669;
	font-size: 12px;
	font-weight: 700;
	line-height: 16px;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.isend-industries-title {
	margin: 12px 0 16px;
	color: #0f172a;
	font-size: clamp(28px, 2.6vw, 40px);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -.03em;
}

.isend-industries-description {
	max-width: 576px;
	margin: 0 auto;
	color: #64748b;
	font-size: 18px;
	line-height: 1.6;
}

.isend-industry-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 230px;
	padding: 20px;
	color: inherit;
	text-decoration: none;
	background: #fff;
	border: 1px solid #f1f5f9;
	border-radius: 16px;
	box-shadow: 0 1px 2px rgba(15, 23, 42, .02);
	transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.isend-industry-card:hover {
	color: inherit;
	border-color: #e2e8f0;
	box-shadow: 0 18px 34px rgba(15, 23, 42, .09);
	transform: translateY(-4px);
}

.isend-industry-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin-bottom: 16px;
	font-size: 20px;
	border: 1px solid;
	border-radius: 16px;
	transition: background-color .2s ease, transform .2s ease;
}

.isend-industry-card:hover .isend-industry-icon {
	transform: scale(1.05);
}

.isend-industry-icon-emerald {
	color: #059669;
	background: #ecfdf5;
	border-color: #d1fae5;
}

.isend-industry-card:hover .isend-industry-icon-emerald {
	background: #d1fae5;
}

.isend-industry-icon-red {
	color: #dc2626;
	background: #fef2f2;
	border-color: #fee2e2;
}

.isend-industry-card:hover .isend-industry-icon-red {
	background: #fee2e2;
}

.isend-industry-icon-blue {
	color: #2563eb;
	background: #eff6ff;
	border-color: #dbeafe;
}

.isend-industry-card:hover .isend-industry-icon-blue {
	background: #dbeafe;
}

.isend-industry-icon-amber {
	color: #d97706;
	background: #fffbeb;
	border-color: #fef3c7;
}

.isend-industry-card:hover .isend-industry-icon-amber {
	background: #fef3c7;
}

.isend-industry-icon-slate {
	color: #475569;
	background: #f1f5f9;
	border-color: #e2e8f0;
}

.isend-industry-card:hover .isend-industry-icon-slate {
	background: #e2e8f0;
}

.isend-industry-icon-orange {
	color: #ea580c;
	background: #fff7ed;
	border-color: #ffedd5;
}

.isend-industry-card:hover .isend-industry-icon-orange {
	background: #ffedd5;
}

.isend-industry-icon-purple {
	color: #9333ea;
	background: #faf5ff;
	border-color: #f3e8ff;
}

.isend-industry-card:hover .isend-industry-icon-purple {
	background: #f3e8ff;
}

.isend-industry-icon-cyan {
	color: #0891b2;
	background: #ecfeff;
	border-color: #cffafe;
}

.isend-industry-card:hover .isend-industry-icon-cyan {
	background: #cffafe;
}

.isend-industry-icon-sky {
	color: #0284c7;
	background: #f0f9ff;
	border-color: #e0f2fe;
}

.isend-industry-card:hover .isend-industry-icon-sky {
	background: #e0f2fe;
}

.isend-industry-card h3 {
	margin: 0 0 8px;
	color: #0f172a;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.45;
}

.isend-industry-card p {
	margin: 0;
	color: #64748b;
	font-size: 12px;
	line-height: 1.7;
}

.isend-industry-link {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-top: auto;
	padding-top: 16px;
	color: #059669;
	font-size: 12px;
	font-weight: 700;
	opacity: 0;
	transform: translateY(-4px);
	transition: opacity .2s ease, transform .2s ease;
}

.isend-industry-card:hover .isend-industry-link {
	opacity: 1;
	transform: translateY(0);
}

.isend-industry-link i {
	font-size: 10px;
	transition: transform .2s ease;
}

.isend-industry-card:hover .isend-industry-link i {
	transform: translateX(3px);
}

@media (max-width: 991.98px) {
	.isend-industries-section {
		padding: 68px 0;
	}

	.isend-industries-header {
		margin-bottom: 44px;
	}

	.isend-industry-card {
		min-height: 210px;
	}
}

@media (max-width: 767.98px) {
	.isend-industries-container {
		padding-right: 18px;
		padding-left: 18px;
	}

	.isend-industries-description {
		font-size: 16px;
	}
}

@media (max-width: 575.98px) {
	.isend-industries-section {
		padding: 58px 0;
	}

	.isend-industries-header {
		margin-bottom: 36px;
	}

	.isend-industries-title {
		font-size: 27px;
	}

	.isend-industry-card {
		min-height: 190px;
	}

	.isend-industry-link {
		opacity: 1;
		transform: none;
	}
}

/* INTEGRATIONS AREA */

.isend-integrations-section {
	padding: 96px 0;
	overflow: hidden;
	background: #fff;
}

.isend-integrations-container {
	max-width: 1200px;
	margin: 0 auto;
	padding-right: 24px;
	padding-left: 24px;
}

.isend-integrations-header {
	margin-bottom: 64px;
}

.isend-integrations-eyebrow {
	display: inline-block;
	color: #059669;
	font-size: 12px;
	font-weight: 700;
	line-height: 16px;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.isend-integrations-title {
	margin: 12px 0 16px;
	color: #0f172a;
	font-size: clamp(28px, 2.6vw, 40px);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -.03em;
}

.isend-integrations-description {
	max-width: 576px;
	margin: 0 auto;
	color: #64748b;
	font-size: 18px;
	line-height: 1.6;
}

.isend-integrations-diagram {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
}

.isend-integrations-column {
	display: flex;
	flex: 0 0 220px;
	flex-direction: column;
	gap: 12px;
	width: 220px;
}

.isend-integration-card {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 60px;
	padding: 14px 16px;
	cursor: default;
	background: #fff;
	border: 1px solid;
	border-radius: 16px;
	box-shadow: 0 1px 3px rgba(15, 23, 42, .06);
	transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.isend-integration-card:hover {
	box-shadow: 0 8px 20px rgba(15, 23, 42, .1);
	transform: translateY(-2px);
}

.isend-integration-card-right {
	flex-direction: row-reverse;
	text-align: right;
}

.isend-integration-card-emerald {
	border-color: #d1fae5;
}

.isend-integration-card-emerald:hover {
	border-color: #6ee7b7;
}

.isend-integration-card-cyan {
	border-color: #cffafe;
}

.isend-integration-card-cyan:hover {
	border-color: #67e8f9;
}

.isend-integration-card-purple {
	border-color: #f3e8ff;
}

.isend-integration-card-purple:hover {
	border-color: #d8b4fe;
}

.isend-integration-card-amber {
	border-color: #fef3c7;
}

.isend-integration-card-amber:hover {
	border-color: #fcd34d;
}

.isend-integration-card-green {
	border-color: #dcfce7;
}

.isend-integration-card-green:hover {
	border-color: #86efac;
}

.isend-integration-card-orange {
	border-color: #ffedd5;
}

.isend-integration-card-orange:hover {
	border-color: #fdba74;
}

.isend-integration-card-slate {
	border-color: #e2e8f0;
}

.isend-integration-card-slate:hover {
	border-color: #cbd5e1;
}

.isend-integration-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 36px;
	height: 36px;
	font-size: 18px;
	border-radius: 12px;
}

.isend-integration-icon-emerald {
	color: #059669;
	background: #ecfdf5;
}

.isend-integration-icon-cyan {
	color: #0891b2;
	background: #ecfeff;
}

.isend-integration-icon-purple {
	color: #9333ea;
	background: #faf5ff;
}

.isend-integration-icon-amber {
	color: #d97706;
	background: #fffbeb;
}

.isend-integration-icon-green {
	color: #16a34a;
	background: #f0fdf4;
}

.isend-integration-icon-orange {
	color: #ea580c;
	background: #fff7ed;
}

.isend-integration-icon-slate {
	color: #475569;
	background: #f1f5f9;
}

.isend-integration-card strong {
	display: block;
	margin-bottom: 3px;
	color: #1e293b;
	font-size: 13.5px;
	font-weight: 700;
	line-height: 1;
}

.isend-integration-card small {
	display: block;
	color: #94a3b8;
	font-size: 11px;
	font-weight: 500;
	line-height: 15px;
	white-space: nowrap;
}

.isend-integrations-connectors {
	flex: 0 0 100px;
	width: 100px;
}

.isend-integrations-connectors svg {
	display: block;
	overflow: visible;
}

.isend-integrations-hub-wrap {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	flex-direction: column;
	margin: 0;
}

.isend-integrations-hub {
	position: relative;
	width: 130px;
	height: 130px;
}

.isend-integrations-hub-ring {
	position: absolute;
	inset: 0;
	pointer-events: none;
	border-radius: 28px;
}

.isend-integrations-hub-ring-one {
	border: 2px solid rgba(52, 211, 153, .2);
	transform: scale(1.1);
}

.isend-integrations-hub-ring-two {
	border: 1px solid rgba(52, 211, 153, .1);
	transform: scale(1.25);
}

.isend-integrations-hub-glow {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: rgba(16, 185, 129, .08);
	border-radius: 28px;
	filter: blur(20px);
	transform: scale(1.5);
}

.isend-integrations-hub-content {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 8px;
	width: 130px;
	height: 130px;
	background: #0f172a;
	border: 1px solid #334155;
	border-radius: 28px;
	box-shadow: 0 25px 50px rgba(15, 23, 42, .3);
}

.isend-integrations-hub-content img {
	display: block;
	width: auto;
	height: 38px;
	object-fit: contain;
}

.isend-integrations-hub-status {
	display: flex;
	align-items: center;
	gap: 6px;
}

.isend-integrations-hub-status span {
	width: 6px;
	height: 6px;
	background: #34d399;
	border-radius: 50%;
	animation: isend-integration-pulse 1.8s ease-in-out infinite;
}

.isend-integrations-hub-status strong {
	color: #34d399;
	font-size: 10px;
	font-weight: 700;
	line-height: 14px;
	letter-spacing: .06em;
	text-transform: uppercase;
}

@keyframes isend-integration-pulse {
	0%, 100% {
		opacity: 1;
		transform: scale(1);
	}

	50% {
		opacity: .4;
		transform: scale(.75);
	}
}

.isend-integrations-api-badge {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 20px;
	padding: 8px 16px;
	color: #cbd5e1;
	background: #0f172a;
	border: 1px solid #334155;
	border-radius: 12px;
}

.isend-integrations-api-badge i {
	color: #34d399;
	font-size: 13px;
}

.isend-integrations-api-badge strong {
	font-size: 12px;
	font-weight: 700;
}

.isend-integrations-api-badge > span {
	width: 1px;
	height: 12px;
	background: #334155;
}

.isend-integrations-footer {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-top: 56px;
}

.isend-integrations-docs-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 44px;
	padding: 0 20px;
	color: #334155;
	font-size: 14px;
	font-weight: 700;
	background: #fff;
	border: 1px solid #cbd5e1;
	border-radius: 12px;
}

.isend-integrations-docs-btn:hover {
	color: #047857;
	background: #ecfdf5;
	border-color: #6ee7b7;
}

.isend-integrations-tags {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
}

.isend-integrations-tags span {
	padding: 6px 12px;
	color: #475569;
	font-size: 12px;
	font-weight: 600;
	line-height: 16px;
	background: #f1f5f9;
	border-radius: 8px;
}

.isend-integrations-mobile-connector {
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 4px;
	padding: 12px 0;
}

.isend-integrations-mobile-connector span {
	width: 4px;
	height: 4px;
	background: rgba(52, 211, 153, .6);
	border-radius: 50%;
}

@media (max-width: 991.98px) {
	.isend-integrations-section {
		padding: 68px 0;
	}

	.isend-integrations-header {
		margin-bottom: 48px;
	}

	.isend-integrations-diagram {
		flex-direction: column;
	}

	.isend-integrations-column {
		flex-basis: auto;
		width: 100%;
		max-width: 460px;
	}

	.isend-integration-card-right {
		flex-direction: row;
		text-align: left;
	}

	.isend-integrations-hub-wrap {
		margin: 8px 0;
	}
}

@media (max-width: 767.98px) {
	.isend-integrations-container {
		padding-right: 18px;
		padding-left: 18px;
	}

	.isend-integrations-description {
		font-size: 16px;
	}

	.isend-integrations-footer {
		flex-direction: column;
	}
}

@media (max-width: 575.98px) {
	.isend-integrations-section {
		padding: 58px 0;
	}

	.isend-integrations-header {
		margin-bottom: 38px;
	}

	.isend-integrations-title {
		font-size: 27px;
	}

	.isend-integrations-column {
		max-width: 100%;
	}

	.isend-integrations-tags {
		max-width: 320px;
	}
}

/* CHART AREA */

.isend-analytics-section {
	padding: 80px 0;
	background: #f8fafc;
}

.isend-analytics-container {
	max-width: 1400px;
	margin: 0 auto;
	padding-right: 24px;
	padding-left: 24px;
}

.isend-analytics-header {
	margin-bottom: 56px;
}

.isend-analytics-eyebrow {
	display: inline-block;
	color: #059669;
	font-size: 12px;
	font-weight: 700;
	line-height: 16px;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.isend-analytics-title {
	margin: 12px 0 0;
	color: #0f172a;
	font-size: clamp(28px, 2.6vw, 40px);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -.03em;
}

.isend-analytics-card {
	padding: 28px;
	background: #fff;
	border: 1px solid #f1f5f9;
	border-radius: 16px;
	box-shadow: 0 24px 55px rgba(148, 163, 184, .2);
}

.isend-analytics-metric {
	height: 100%;
	padding: 16px;
	background: #f8fafc;
	border: 1px solid #f1f5f9;
	border-radius: 16px;
}

.isend-analytics-metric > small {
	display: block;
	margin-bottom: 8px;
	color: #64748b;
	font-size: 12px;
	font-weight: 500;
	line-height: 16px;
}

.isend-analytics-metric > strong {
	display: block;
	margin-bottom: 4px;
	color: #0f172a;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -.03em;
}

.isend-analytics-change {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 12px;
	font-weight: 700;
	line-height: 16px;
}

.isend-analytics-change i {
	font-size: 11px;
}

.isend-analytics-change-emerald {
	color: #059669;
}

.isend-analytics-change-cyan {
	color: #0891b2;
}

.isend-analytics-change-purple {
	color: #9333ea;
}

.isend-analytics-change-amber {
	color: #d97706;
}

.isend-analytics-block-title {
	margin-bottom: 16px;
	color: #334155;
	font-size: 14px;
	font-weight: 800;
	line-height: 20px;
}

.isend-analytics-line-chart {
	position: relative;
	width: 100%;
	height: 200px;
}

.isend-analytics-line-chart svg {
	display: block;
	width: 100%;
	height: 200px;
	overflow: visible;
}

.isend-analytics-line-chart text {
	fill: #94a3b8;
	font-size: 11px;
	font-family: "Inter", sans-serif;
}

.isend-analytics-grid-line {
	stroke: #f1f5f9;
	stroke-width: 1;
	stroke-dasharray: 3 3;
}

.isend-analytics-area {
	fill: url(#isendAnalyticsAreaGradient);
}

.isend-analytics-line {
	fill: none;
	stroke: #10b981;
	stroke-width: 2.5;
	stroke-linecap: round;
	stroke-linejoin: round;
	vector-effect: non-scaling-stroke;
}

.isend-analytics-point {
	fill: #10b981;
	stroke: #fff;
	stroke-width: 2;
	cursor: pointer;
	transition: r .15s ease, fill .15s ease;
	vector-effect: non-scaling-stroke;
}

.isend-analytics-point:hover {
	r: 6;
	fill: #059669;
}

.isend-analytics-tooltip {
	position: absolute;
	z-index: 5;
	display: none;
	padding: 7px 10px;
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	line-height: 15px;
	white-space: nowrap;
	pointer-events: none;
	background: #0f172a;
	border-radius: 8px;
	box-shadow: 0 8px 18px rgba(15, 23, 42, .2);
	transform: translate(-50%, -115%);
}

.isend-analytics-donut-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 8px 0;
}

.isend-analytics-donut {
	position: relative;
	width: 144px;
	height: 144px;
}

.isend-analytics-donut svg {
	display: block;
	width: 100%;
	height: 100%;
	transform: rotate(-90deg);
}

.isend-analytics-donut circle {
	fill: none;
	stroke-width: 3.2;
	stroke-linecap: round;
}

.isend-analytics-donut-bg {
	stroke: #f1f5f9;
}

.isend-analytics-donut-wa {
	stroke: #10b981;
}

.isend-analytics-donut-email {
	stroke: #06b6d4;
}

.isend-analytics-donut-other {
	stroke: #8b5cf6;
}

.isend-analytics-donut-center {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.isend-analytics-donut-center strong {
	color: #1e293b;
	font-size: 20px;
	font-weight: 800;
	line-height: 1;
}

.isend-analytics-donut-center small {
	margin-top: 4px;
	color: #64748b;
	font-size: 10px;
	line-height: 14px;
}

.isend-analytics-legend {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 8px;
}

.isend-analytics-legend-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	line-height: 16px;
}

.isend-analytics-legend-dot {
	flex: 0 0 auto;
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.isend-analytics-legend-wa {
	background: #10b981;
}

.isend-analytics-legend-email {
	background: #06b6d4;
}

.isend-analytics-legend-other {
	background: #8b5cf6;
}

.isend-analytics-legend-item small {
	min-width: 0;
	flex: 1;
	color: #475569;
	font-size: 12px;
}

.isend-analytics-legend-item strong {
	color: #1e293b;
	font-size: 12px;
	font-weight: 700;
}

@media (max-width: 991.98px) {
	.isend-analytics-section {
		padding: 68px 0;
	}

	.isend-analytics-header {
		margin-bottom: 44px;
	}
}

@media (max-width: 767.98px) {
	.isend-analytics-container {
		padding-right: 18px;
		padding-left: 18px;
	}

	.isend-analytics-card {
		padding: 20px;
	}
}

@media (max-width: 575.98px) {
	.isend-analytics-section {
		padding: 58px 0;
	}

	.isend-analytics-header {
		margin-bottom: 36px;
	}

	.isend-analytics-title {
		font-size: 27px;
	}

	.isend-analytics-metric {
		padding: 14px;
	}

	.isend-analytics-metric > strong {
		font-size: 20px;
	}

	.isend-analytics-line-chart, .isend-analytics-line-chart svg {
		height: 180px;
	}
}

/* PACKAGES AREA */

.isend-pricing-section {
	position: relative;
	padding: 80px 0;
	overflow: hidden;
	background: #0f172a;
}

.isend-pricing-glow {
	position: absolute;
	top: -280px;
	left: 50%;
	width: 800px;
	height: 500px;
	pointer-events: none;
	background: rgba(16, 185, 129, .09);
	border-radius: 50%;
	filter: blur(100px);
	transform: translateX(-50%);
}

.isend-pricing-container {
	position: relative;
	z-index: 2;
	max-width: 1400px;
	margin: 0 auto;
	padding-right: 24px;
	padding-left: 24px;
}

.isend-pricing-header {
	margin-bottom: 48px;
}

.isend-pricing-eyebrow {
	display: inline-block;
	color: #34d399;
	font-size: 12px;
	font-weight: 700;
	line-height: 16px;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.isend-pricing-title {
	margin: 12px 0 22px;
	color: #fff;
	font-size: clamp(28px, 2.6vw, 40px);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -.03em;
}

.isend-pricing-toggle {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 4px;
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 12px;
}

.isend-pricing-toggle-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 36px;
	padding: 0 20px;
	color: #94a3b8;
	font-size: 14px;
	font-weight: 700;
	background: transparent;
	border: 0;
	border-radius: 8px;
	transition: color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.isend-pricing-toggle-btn:hover {
	color: #fff;
}

.isend-pricing-toggle-btn.active {
	color: #fff;
	background: #10b981;
	box-shadow: 0 2px 5px rgba(0, 0, 0, .18);
}

.isend-pricing-toggle-btn small {
	padding: 2px 8px;
	color: #34d399;
	font-size: 11px;
	font-weight: 800;
	line-height: 16px;
	background: rgba(16, 185, 129, .25);
	border-radius: 999px;
}

.isend-pricing-toggle-btn.active small {
	color: #fff;
	background: rgba(255, 255, 255, .25);
}

.isend-pricing-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 555px;
	padding: 28px;
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 24px;
	transition: background-color .3s ease, border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.isend-pricing-card:hover {
	background: rgba(255, 255, 255, .08);
	border-color: rgba(255, 255, 255, .16);
	transform: translateY(-4px);
}

.isend-pricing-card-popular {
	background: linear-gradient(145deg, #10b981 0%, #059669 100%);
	border-color: #34d399;
	box-shadow: 0 28px 55px rgba(16, 185, 129, .28);
	transform: translateY(-8px);
}

.isend-pricing-card-popular:hover {
	background: linear-gradient(145deg, #10b981 0%, #059669 100%);
	border-color: #6ee7b7;
	box-shadow: 0 32px 65px rgba(16, 185, 129, .34);
	transform: translateY(-12px);
}

.isend-pricing-popular-badge {
	position: absolute;
	top: -16px;
	left: 50%;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 16px;
	color: #78350f;
	font-size: 12px;
	font-weight: 800;
	line-height: 16px;
	white-space: nowrap;
	background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);
	border-radius: 999px;
	box-shadow: 0 10px 20px rgba(245, 158, 11, .25);
	transform: translateX(-50%);
}

.isend-pricing-popular-badge i {
	font-size: 11px;
}

.isend-pricing-card-head {
	margin-bottom: 28px;
}

.isend-pricing-card-head h3 {
	margin: 0 0 4px;
	color: #fff;
	font-size: 16px;
	font-weight: 800;
	line-height: 22px;
}

.isend-pricing-card-head p {
	margin: 0 0 20px;
	color: #94a3b8;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
}

.isend-pricing-card-popular .isend-pricing-card-head p {
	color: #d1fae5;
}

.isend-pricing-price-wrap {
	display: flex;
	align-items: flex-end;
	gap: 6px;
	min-height: 48px;
}

.isend-pricing-price-wrap strong {
	color: #fff;
	font-size: 40px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -.04em;
}

.isend-pricing-price-wrap span {
	margin-bottom: 5px;
	color: #94a3b8;
	font-size: 14px;
	font-weight: 500;
}

.isend-pricing-card-popular .isend-pricing-price-wrap span {
	color: #d1fae5;
}

.isend-pricing-custom-price {
	align-items: center;
}

.isend-pricing-custom-price strong {
	font-size: 30px;
	line-height: 1.15;
}

.isend-pricing-features {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 12px;
	margin: 0 0 28px;
	padding: 0;
	list-style: none;
}

.isend-pricing-features li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: #cbd5e1;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
}

.isend-pricing-features i {
	flex: 0 0 auto;
	margin-top: 2px;
	color: #10b981;
	font-size: 15px;
}

.isend-pricing-card-popular .isend-pricing-features li {
	color: #ecfdf5;
}

.isend-pricing-card-popular .isend-pricing-features i {
	color: #fff;
}

.isend-pricing-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 48px;
	margin-top: auto;
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 16px;
}

.isend-pricing-btn:hover {
	color: #fff;
	background: rgba(255, 255, 255, .18);
	border-color: rgba(255, 255, 255, .3);
}

.isend-pricing-btn-popular {
	color: #047857;
	background: #fff;
	border-color: #fff;
	box-shadow: 0 10px 22px rgba(0, 0, 0, .14);
}

.isend-pricing-btn-popular:hover {
	color: #065f46;
	background: #ecfdf5;
	border-color: #ecfdf5;
}

@media (max-width: 1199.98px) {
	.isend-pricing-card {
		padding: 24px;
	}

	.isend-pricing-price-wrap strong {
		font-size: 35px;
	}
}

@media (max-width: 991.98px) {
	.isend-pricing-section {
		padding: 68px 0;
	}

	.isend-pricing-card-popular, .isend-pricing-card-popular:hover {
		transform: none;
	}

	.isend-pricing-card {
		min-height: 520px;
	}
}

@media (max-width: 767.98px) {
	.isend-pricing-container {
		padding-right: 18px;
		padding-left: 18px;
	}
}

@media (max-width: 575.98px) {
	.isend-pricing-section {
		padding: 58px 0;
	}

	.isend-pricing-header {
		margin-bottom: 40px;
	}

	.isend-pricing-title {
		font-size: 27px;
	}

	.isend-pricing-toggle-btn {
		padding-right: 14px;
		padding-left: 14px;
	}

	.isend-pricing-card {
		min-height: auto;
	}
}

/* API AREA */

.isend-developer-section {
	padding: 80px 0;
	background: #fff;
}

.isend-developer-container {
	max-width: 1400px;
	margin: 0 auto;
	padding-right: 24px;
	padding-left: 24px;
}

.isend-developer-content {
	max-width: 580px;
}

.isend-developer-eyebrow {
	display: inline-block;
	color: #059669;
	font-size: 12px;
	font-weight: 700;
	line-height: 16px;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.isend-developer-title {
	margin: 12px 0 20px;
	color: #0f172a;
	font-size: clamp(30px, 3vw, 42px);
	font-weight: 800;
	line-height: 1.18;
	letter-spacing: -.035em;
}

.isend-developer-description {
	margin: 0 0 36px;
	color: #64748b;
	font-size: 18px;
	line-height: 1.7;
}

.isend-developer-feature-grid {
	margin-bottom: 36px;
}

.isend-developer-feature {
	height: 100%;
	padding: 16px;
	border: 1px solid;
	border-radius: 16px;
}

.isend-developer-feature-head {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
}

.isend-developer-feature-head i {
	font-size: 16px;
}

.isend-developer-feature-head strong {
	font-size: 14px;
	font-weight: 800;
	line-height: 20px;
}

.isend-developer-feature p {
	margin: 0;
	color: #64748b;
	font-size: 12px;
	line-height: 18px;
}

.isend-developer-feature-emerald {
	background: #ecfdf5;
	border-color: #d1fae5;
}

.isend-developer-feature-emerald .isend-developer-feature-head {
	color: #047857;
}

.isend-developer-feature-cyan {
	background: #ecfeff;
	border-color: #cffafe;
}

.isend-developer-feature-cyan .isend-developer-feature-head {
	color: #0e7490;
}

.isend-developer-feature-purple {
	background: #faf5ff;
	border-color: #f3e8ff;
}

.isend-developer-feature-purple .isend-developer-feature-head {
	color: #7e22ce;
}

.isend-developer-feature-amber {
	background: #fffbeb;
	border-color: #fef3c7;
}

.isend-developer-feature-amber .isend-developer-feature-head {
	color: #b45309;
}

.isend-developer-docs-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	height: 48px;
	padding: 0 22px;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	background: #10b981;
	border: 1px solid #10b981;
	border-radius: 12px;
	box-shadow: 0 8px 18px rgba(16, 185, 129, .2);
}

.isend-developer-docs-btn:hover {
	color: #fff;
	background: #059669;
	border-color: #059669;
}

.isend-code-window {
	position: relative;
	overflow: hidden;
	background: #0f172a;
	border: 1px solid #1e293b;
	border-radius: 24px;
	box-shadow: 0 28px 60px rgba(148, 163, 184, .3);
}

.isend-code-window-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 52px;
	padding: 0 20px;
	border-bottom: 1px solid #1e293b;
}

.isend-code-window-dots {
	display: flex;
	align-items: center;
	gap: 6px;
}

.isend-code-dot {
	display: block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	opacity: .85;
}

.isend-code-dot-red {
	background: #f87171;
}

.isend-code-dot-amber {
	background: #fbbf24;
}

.isend-code-dot-green {
	background: #34d399;
}

.isend-code-filename {
	color: #64748b;
	font-family: monospace;
	font-size: 12px;
	line-height: 16px;
}

.isend-code-copy-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	padding: 0;
	color: #64748b;
	font-size: 13px;
	background: transparent;
	border: 0;
	border-radius: 8px;
	transition: color .2s ease, background-color .2s ease;
}

.isend-code-copy-btn:hover {
	color: #cbd5e1;
	background: rgba(255, 255, 255, .05);
}

.isend-code-content {
	padding: 24px;
	overflow-x: auto;
}

.isend-code-content pre {
	margin: 0;
	color: #cbd5e1;
	font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
	font-size: 12px;
	line-height: 1.7;
	white-space: pre;
}

.isend-code-content code {
	font-family: inherit;
}

.isend-code-comment {
	color: #64748b;
}

.isend-code-method {
	color: #c084fc;
	font-weight: 700;
}

.isend-code-url {
	color: #67e8f9;
}

.isend-code-keyword {
	color: #93c5fd;
}

.isend-code-key {
	color: #67e8f9;
}

.isend-code-string {
	color: #6ee7b7;
}

.isend-code-copy-feedback {
	position: absolute;
	top: 60px;
	right: 16px;
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 8px 12px;
	color: #d1fae5;
	font-size: 11px;
	font-weight: 700;
	pointer-events: none;
	background: #065f46;
	border: 1px solid #10b981;
	border-radius: 10px;
	box-shadow: 0 12px 25px rgba(0, 0, 0, .25);
	opacity: 0;
	transform: translateY(-6px);
	transition: opacity .2s ease, transform .2s ease;
}

.isend-code-copy-feedback.show {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 991.98px) {
	.isend-developer-section {
		padding: 68px 0;
	}

	.isend-developer-content {
		max-width: 680px;
	}
}

@media (max-width: 767.98px) {
	.isend-developer-container {
		padding-right: 18px;
		padding-left: 18px;
	}

	.isend-developer-description {
		font-size: 16px;
	}

	.isend-code-content {
		padding: 20px;
	}
}

@media (max-width: 575.98px) {
	.isend-developer-section {
		padding: 58px 0;
	}

	.isend-developer-title {
		font-size: 28px;
	}

	.isend-developer-feature {
		padding: 14px;
	}

	.isend-developer-feature-head {
		align-items: flex-start;
		flex-direction: column;
		gap: 6px;
	}

	.isend-developer-docs-btn {
		width: 100%;
	}

	.isend-code-content pre {
		font-size: 11px;
	}
}

/* FAQ AREA */

.isend-faq-section {
	padding: 96px 0;
	background:
		radial-gradient(circle at 8% 15%, rgba(16, 185, 129, .06), transparent 26%),
		linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.isend-faq-container {
	max-width: 1200px;
	margin: 0 auto;
	padding-right: 24px;
	padding-left: 24px;
}

.isend-faq-content {
	position: sticky;
	top: 110px;
	max-width: 460px;
}

.isend-faq-eyebrow {
	display: inline-block;
	color: #059669;
	font-size: 12px;
	font-weight: 700;
	line-height: 16px;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.isend-faq-title {
	margin: 12px 0 18px;
	color: #0f172a;
	font-size: clamp(30px, 3vw, 42px);
	font-weight: 800;
	line-height: 1.18;
	letter-spacing: -.035em;
}

.isend-faq-description {
	margin: 0;
	color: #64748b;
	font-size: 18px;
	line-height: 1.7;
}

.isend-faq-support-card {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	margin-top: 36px;
	padding: 20px;
	background: #fff;
	border: 1px solid #d1fae5;
	border-radius: 18px;
	box-shadow: 0 14px 30px rgba(15, 23, 42, .06);
}

.isend-faq-support-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 42px;
	height: 42px;
	color: #059669;
	font-size: 18px;
	background: #ecfdf5;
	border: 1px solid #a7f3d0;
	border-radius: 14px;
}

.isend-faq-support-card strong {
	display: block;
	color: #1e293b;
	font-size: 14px;
	font-weight: 800;
	line-height: 20px;
}

.isend-faq-support-card p {
	margin: 4px 0 10px;
	color: #64748b;
	font-size: 12px;
	line-height: 18px;
}

.isend-faq-support-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #059669;
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
}

.isend-faq-support-link:hover {
	color: #047857;
}

.isend-faq-support-link i {
	font-size: 11px;
	transition: transform .2s ease;
}

.isend-faq-support-link:hover i {
	transform: translateX(3px);
}

.isend-faq-accordion {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.isend-faq-item {
	overflow: hidden;
	background: #fff;
	border: 1px solid #e2e8f0 !important;
	border-radius: 16px !important;
	box-shadow: 0 2px 8px rgba(15, 23, 42, .03);
	transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.isend-faq-item:hover {
	border-color: #cbd5e1 !important;
	box-shadow: 0 10px 24px rgba(15, 23, 42, .07);
	transform: translateY(-1px);
}

.isend-faq-item:has(.accordion-button:not(.collapsed)) {
	border-color: #a7f3d0 !important;
	box-shadow: 0 12px 28px rgba(16, 185, 129, .09);
}

.isend-faq-button {
	display: flex;
	align-items: center;
	min-height: 66px;
	padding: 20px 54px 20px 22px;
	color: #1e293b;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.45;
	background: #fff;
	border: 0;
	box-shadow: none !important;
}

.isend-faq-button:not(.collapsed) {
	color: #047857;
	background: #f0fdf4;
}

.isend-faq-button::after {
	position: absolute;
	right: 22px;
	width: 28px;
	height: 28px;
	margin-left: 0;
	content: "\2b";
	display: flex;
	align-items: center;
	justify-content: center;
	color: #64748b;
	font-family: "Font Awesome 6 Free";
	font-size: 13px;
	font-weight: 900;
	line-height: 1;
	background: #f1f5f9;
	border-radius: 10px;
	background-image: none;
	transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.isend-faq-button:not(.collapsed)::after {
	content: "-";
	color: #fff;
	background: #10b981;
	transform: none;
}

.isend-faq-answer {
	padding: 0 22px 22px;
	color: #64748b;
	font-size: 14px;
	line-height: 1.75;
	background: #f0fdf4;
}

@media (max-width: 991.98px) {
	.isend-faq-section {
		padding: 72px 0;
	}

	.isend-faq-content {
		position: static;
		max-width: 680px;
	}

	.isend-faq-support-card {
		max-width: 520px;
	}
}

@media (max-width: 767.98px) {
	.isend-faq-container {
		padding-right: 18px;
		padding-left: 18px;
	}

	.isend-faq-description {
		font-size: 16px;
	}

	.isend-faq-button {
		padding: 18px 50px 18px 18px;
		font-size: 14px;
	}

	.isend-faq-button::after {
		right: 16px;
	}

	.isend-faq-answer {
		padding: 0 18px 18px;
		font-size: 13px;
	}
}

@media (max-width: 575.98px) {
	.isend-faq-section {
		padding: 58px 0;
	}

	.isend-faq-title {
		font-size: 28px;
	}

	.isend-faq-support-card {
		padding: 18px;
	}

	.isend-faq-button {
		min-height: 60px;
	}
}

/* CTA AREA */

.isend-final-cta-section {
	padding: 90px 0;
	background: #ffffff;
}

.isend-final-cta-container {
	max-width: 1240px;
	margin: 0 auto;
	padding-right: 24px;
	padding-left: 24px;
}

.isend-final-cta-box {
	position: relative;
	overflow: hidden;
	padding: 56px 24px 54px;
	background:
		radial-gradient(circle at 35% 18%, rgba(16, 185, 129, .18), transparent 28%),
		linear-gradient(90deg, #172746 0%, #0d1838 52%, #132544 100%);
	border-radius: 34px;
}

.isend-final-cta-glow {
	position: absolute;
	top: -90px;
	left: 50%;
	width: 540px;
	height: 260px;
	background: rgba(16, 185, 129, .12);
	filter: blur(70px);
	transform: translateX(-50%);
	pointer-events: none;
}

.isend-final-cta-logo {
	position: absolute;
	top: 34px;
	right: 42px;
	opacity: .08;
	pointer-events: none;
}

.isend-final-cta-logo img {
	display: block;
	width: 150px;
	height: auto;
	object-fit: contain;
}

.isend-final-cta-content {
	position: relative;
	z-index: 2;
	max-width: 760px;
	margin: 0 auto;
}

.isend-final-cta-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 28px;
	padding: 9px 18px;
	color: #34d399;
	font-size: 13px;
	font-weight: 700;
	line-height: 18px;
	background: rgba(16, 185, 129, .12);
	border: 1px solid rgba(52, 211, 153, .28);
	border-radius: 999px;
}

.isend-final-cta-badge span {
	display: block;
	width: 7px;
	height: 7px;
	background: #10b981;
	border-radius: 50%;
}

.isend-final-cta-title {
	margin: 0;
	color: #ffffff;
	font-size: clamp(34px, 3.5vw, 56px);
	font-weight: 800;
	line-height: 1.18;
	letter-spacing: -.035em;
}

.isend-final-cta-text {
	margin: 24px 0 0;
	color: #8ea2c1;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.65;
}

.isend-final-cta-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-top: 38px;
}

.isend-final-cta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	height: 56px;
	padding: 0 34px;
	font-size: 15px;
	font-weight: 700;
	border-radius: 16px;
	text-decoration: none;
	transition: all .2s ease;
}

.isend-final-cta-btn-primary {
	color: #ffffff;
	background: #10c58a;
	border: 1px solid #10c58a;
	box-shadow: 0 12px 28px rgba(16, 197, 138, .28);
}

.isend-final-cta-btn-primary:hover {
	color: #ffffff;
	background: #0fae7b;
	border-color: #0fae7b;
	box-shadow: 0 14px 30px rgba(16, 197, 138, .34);
	transform: translateY(-1px);
}

.isend-final-cta-btn-secondary {
	color: #ffffff;
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .16);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}

.isend-final-cta-btn-secondary:hover {
	color: #ffffff;
	background: rgba(255, 255, 255, .14);
	border-color: rgba(255, 255, 255, .22);
	transform: translateY(-1px);
}

.isend-final-cta-btn i {
	font-size: 14px;
}

@media (max-width: 991.98px) {
	.isend-final-cta-section {
		padding: 72px 0;
	}

	.isend-final-cta-box {
		padding: 52px 22px 48px;
		border-radius: 28px;
	}

	.isend-final-cta-logo {
		top: 28px;
		right: 28px;
	}

	.isend-final-cta-logo img {
		width: 128px;
	}
}

@media (max-width: 767.98px) {
	.isend-final-cta-container {
		padding-right: 18px;
		padding-left: 18px;
	}

	.isend-final-cta-box {
		padding: 44px 18px 40px;
		border-radius: 24px;
	}

	.isend-final-cta-title {
		font-size: 32px;
		line-height: 1.24;
	}

	.isend-final-cta-text {
		font-size: 16px;
	}

	.isend-final-cta-actions {
		flex-direction: column;
		margin-top: 30px;
	}

	.isend-final-cta-btn {
		width: 100%;
		max-width: 320px;
	}

	.isend-final-cta-logo {
		top: 20px;
		right: 20px;
	}

	.isend-final-cta-logo img {
		width: 108px;
	}
}

@media (max-width: 575.98px) {
	.isend-final-cta-badge {
		font-size: 12px;
		padding: 8px 14px;
	}

	.isend-final-cta-title br {
		display: none;
	}
}

.isend-footer {
	padding: 64px 0 40px;
	color: #94a3b8;
	background: #020617;
	border-top: 1px solid rgba(255, 255, 255, .05);
}

.isend-footer-container {
	max-width: 1400px;
	margin: 0 auto;
	padding-right: 24px;
	padding-left: 24px;
}

.isend-footer-main {
	margin-bottom: 56px;
}

.isend-footer-brand {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	max-width: 290px;
}

.isend-footer-logo-link {
	display: inline-flex;
	align-items: center;
	margin-bottom: 16px;
	text-decoration: none;
}

.isend-footer-logo {
	display: block;
	width: auto;
	height: 55px;
	object-fit: contain;
}

.isend-footer-meta-badge {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	margin: 0;
	/* margin: 0 0 16px; */
	padding: 0;
	/* padding: 7px 11px; */
	/* background: rgba(255, 255, 255, .06); */
	/* border: 1px solid rgba(255, 255, 255, .14); */
	border-radius: 9px;
}

.isend-footer-meta-badge-img {
	display: block;
	width: auto;
	height: 65px;
	object-fit: contain;
}

.isend-footer-meta-badge > span {
	display: flex;
	flex-direction: column;
	gap: 3px;
	line-height: 1;
}

.isend-footer-meta-badge strong {
	color: #cbd5e1;
	font-size: 11px;
	font-weight: 700;
}

.isend-footer-meta-badge small {
	color: #64748b;
	font-size: 8px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.isend-footer-description {
	max-width: 240px;
	margin: 0 0 22px;
	color: #64748b;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.75;
}

.isend-footer-contacts {
	display: flex;
	flex-direction: column;
	gap: 11px;
	margin-bottom: 24px;
}

.isend-footer-contacts a, .isend-footer-contacts > div {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #94a3b8;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	text-decoration: none;
}

.isend-footer-contacts a {
	transition: color .2s ease;
}

.isend-footer-contacts a:hover {
	color: #e2e8f0;
}

.isend-footer-contacts i {
	width: 15px;
	color: #475569;
	font-size: 14px;
	text-align: center;
}

.isend-footer-socials {
	display: flex;
	align-items: center;
	gap: 8px;
}

.isend-footer-socials a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	color: #94a3b8;
	font-size: 15px;
	text-decoration: none;
	background: rgba(255, 255, 255, .04);
	border: 1px solid rgba(255, 255, 255, .05);
	border-radius: 12px;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.isend-footer-socials a:hover {
	color: #ffffff;
	background: rgba(255, 255, 255, .1);
	border-color: rgba(255, 255, 255, .12);
	transform: translateY(-2px);
}

.isend-footer-column h3 {
	margin: 0 0 20px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 800;
	line-height: 20px;
}

.isend-footer-column ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.isend-footer-column li {
	margin: 0;
}

.isend-footer-column a {
	color: #64748b;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	text-decoration: none;
	transition: color .2s ease, padding-left .2s ease;
}

.isend-footer-column a:hover {
	padding-left: 3px;
	color: #cbd5e1;
}

.isend-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-top: 28px;
	border-top: 1px solid rgba(255, 255, 255, .05);
}

.isend-footer-bottom p {
	margin: 0;
	color: #475569;
	font-size: 12px;
	font-weight: 500;
	line-height: 18px;
}

.isend-footer-language {
	display: flex;
	align-items: center;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 12px;
}

.isend-footer-language a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 31px;
	padding: 0 12px;
	color: #64748b;
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
	border-right: 1px solid rgba(255, 255, 255, .08);
	transition: color .2s ease, background-color .2s ease;
}

.isend-footer-language a:last-child {
	border-right: 0;
}

.isend-footer-language a:hover {
	color: #ffffff;
	background: rgba(255, 255, 255, .08);
}

.isend-footer-language a.active {
	color: #ffffff;
	background: rgba(16, 185, 129, .18);
}

.isend-footer-language a.selected {
	color: #ffffff;
	background: rgba(16, 185, 129, .18);
}

@media (max-width: 991.98px) {
	.isend-footer {
		padding-top: 58px;
	}

	.isend-footer-brand {
		max-width: 360px;
	}

	.isend-footer-description {
		max-width: 320px;
	}
}

@media (max-width: 767.98px) {
	.isend-footer-container {
		padding-right: 18px;
		padding-left: 18px;
	}

	.isend-footer-main {
		margin-bottom: 44px;
	}

	.isend-footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 575.98px) {
	.isend-footer {
		padding: 50px 0 30px;
	}

	.isend-footer-main {
		margin-bottom: 36px;
	}

	.isend-footer-logo {
		height: 34px;
	}

	.isend-footer-column h3 {
		margin-bottom: 16px;
	}

	.isend-footer-column a {
		font-size: 13px;
	}

	.isend-footer-language {
		width: 100%;
	}

	.isend-footer-language a {
		flex: 1;
	}
}

/* BREADCRUMB */

.isend-page-breadcrumb {
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 120px;
	background: #f8fafc;
	border-bottom: 1px solid #e9eef5;
}

.isend-page-breadcrumb-container {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding-right: 24px;
	padding-left: 24px;
}

.isend-page-breadcrumb-list {
	display: flex;
	align-items: center;
	gap: 0;
	font-size: 14px;
}

.isend-page-breadcrumb-list .breadcrumb-item {
	display: flex;
	align-items: center;
	color: #17233c;
}

.isend-page-breadcrumb-list .breadcrumb-item a {
	color: #64748b;
	text-decoration: none;
	transition: color .2s ease;
}

.isend-page-breadcrumb-list .breadcrumb-item a:hover {
	color: #10b981;
}

.isend-page-breadcrumb-list .breadcrumb-item.active {
	color: #17233c;
	font-weight: 600;
}

.isend-page-breadcrumb-list .breadcrumb-item + .breadcrumb-item {
	padding-left: 14px;
}

.isend-page-breadcrumb-list .breadcrumb-item + .breadcrumb-item::before {
	content: "\f054";
	padding-right: 14px;
	color: #94a3b8;
	font-family: "Font Awesome 6 Pro";
	font-size: 9px;
	font-weight: 900;
}

@media (max-width: 767.98px) {
	.isend-page-breadcrumb {
		min-height: 90px;
	}

	.isend-page-breadcrumb-container {
		padding-right: 18px;
		padding-left: 18px;
	}
}

/* FORM STYLES */

/* FORM COMPONENTS */

.divError:empty {
	display: none;
}

.divError:not(:empty) {
	margin-bottom: 22px;
	padding: 13px 15px;
	color: #b91c1c;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.6;
	background: #fef2f2;
	border: 1px solid #fecaca;
	border-radius: 12px;
}

.isend-form-field {
	margin-bottom: 20px;
}

.isend-form-label {
	display: block;
	margin-bottom: 8px;
	color: var(--isend-slate-700);
	font-size: 13px;
	font-weight: 700;
	line-height: 18px;
}

.isend-form-control,
.isend-form-select {
	display: block;
	width: 100%;
	height: 50px;
	padding: 0 15px;
	color: var(--isend-slate-900);
	font-size: 14px;
	font-weight: 400;
	background: #fff;
	border: 1px solid var(--isend-slate-200);
	border-radius: 12px;
	outline: 0;
	transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}

.isend-form-control::placeholder {
	color: var(--isend-slate-400);
}

.isend-form-control:hover,
.isend-form-select:hover {
	border-color: var(--isend-slate-300);
}

.isend-form-control:focus,
.isend-form-select:focus {
	background: #fff;
	border-color: var(--isend-emerald-500);
	box-shadow: 0 0 0 3px rgba(16, 185, 129, .12);
}

textarea.isend-form-control {
	height: auto;
	min-height: 128px;
	padding-top: 13px;
	padding-bottom: 13px;
	line-height: 1.65;
	resize: vertical;
}

.isend-form-select-wrap {
	position: relative;
}

.isend-form-select {
	padding-right: 42px;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
}

.isend-form-select-wrap > i {
	position: absolute;
	top: 50%;
	right: 16px;
	color: var(--isend-slate-400);
	font-size: 11px;
	pointer-events: none;
	transform: translateY(-50%);
}

.isend-form-group {
	margin-bottom: 20px;
}

.isend-form-group-title {
	display: block;
	margin-bottom: 12px;
	color: var(--isend-slate-700);
	font-size: 13px;
	font-weight: 700;
	line-height: 18px;
}

.isend-form-choice-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.isend-form-check {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 10px;
	min-height: 22px;
}

.isend-form-check-input {
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	margin: 1px 0 0;
	cursor: pointer;
	accent-color: var(--isend-emerald-500);
}

.isend-form-check-label {
	color: var(--isend-slate-600);
	font-size: 13px;
	font-weight: 500;
	line-height: 20px;
	cursor: pointer;
}

.isend-form-other-input {
	margin-top: 10px;
}

.isend-form-upload {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 54px;
	overflow: hidden;
	background: var(--isend-slate-50);
	border: 1px dashed var(--isend-slate-300);
	border-radius: 12px;
	transition: border-color .15s ease, background-color .15s ease;
}

.isend-form-upload:hover {
	background: var(--isend-emerald-50);
	border-color: var(--isend-emerald-400, #34d399);
}

.isend-form-upload input[type="file"] {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.isend-form-upload > label {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	width: 100%;
	min-height: 54px;
	margin: 0;
	padding: 8px 10px 8px 15px;
	cursor: pointer;
}

.isend-form-upload-name {
	overflow: hidden;
	color: var(--isend-slate-500);
	font-size: 13px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.isend-form-upload-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	gap: 7px;
	min-height: 36px;
	padding: 0 13px;
	color: var(--isend-emerald-700);
	font-size: 12px;
	font-weight: 700;
	background: var(--isend-emerald-50);
	border: 1px solid var(--isend-emerald-200);
	border-radius: 9px;
}

.isend-form-submit-row {
	display: flex;
	justify-content: flex-end;
	margin-top: 4px;
}

.isend-form-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-width: 180px;
	height: 50px;
	padding: 0 24px;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	background: var(--isend-emerald-500);
	border: 1px solid var(--isend-emerald-500);
	border-radius: 12px;
	box-shadow: 0 8px 18px rgba(16, 185, 129, .2);
	cursor: pointer;
}

.isend-form-submit:hover,
.isend-form-submit:focus {
	color: #fff;
	background: var(--isend-emerald-600);
	border-color: var(--isend-emerald-600);
}

.isend-form-page {
	padding: 64px 0 80px;
	background: var(--isend-slate-50);
}

.isend-form-page-container {
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
	padding-right: 24px;
	padding-left: 24px;
}

.isend-form-page-card {
	padding: 36px;
	background: #fff;
	border: 1px solid var(--isend-slate-200);
	border-radius: 24px;
	box-shadow: 0 22px 50px rgba(15, 23, 42, .08);
}

.isend-form-page-title {
	margin: 0 0 28px;
	color: var(--isend-slate-900);
	font-size: 30px;
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: -.035em;
}

.isend-only-form {
	width: 100%;
}

.select2-container {
	width: 100% !important;
}

.select2-container .select2-selection--single {
	display: flex;
	align-items: center;
	height: 50px;
	padding: 0 14px;
	background: #fff;
	border: 1px solid var(--isend-slate-200);
	border-radius: 12px;
	outline: 0;
}

.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--single {
	border-color: var(--isend-emerald-500);
	box-shadow: 0 0 0 3px rgba(16, 185, 129, .12);
}

.select2-container .select2-selection--single .select2-selection__rendered {
	padding: 0 24px 0 0;
	color: var(--isend-slate-900);
	font-size: 14px;
	line-height: 48px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	top: 12px;
	right: 10px;
}

.select2-dropdown {
	overflow: hidden;
	border: 1px solid var(--isend-slate-200);
	border-radius: 12px;
	box-shadow: 0 14px 30px rgba(15, 23, 42, .1);
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
	background: var(--isend-emerald-500);
}

@media (max-width: 767.98px) {
	.isend-form-page-container {
		padding-right: 18px;
		padding-left: 18px;
	}

	.isend-form-page-card {
		padding: 26px;
	}

	.isend-form-submit {
		width: 100%;
	}
}

@media (max-width: 575.98px) {
	.isend-form-page {
		padding: 44px 0 56px;
	}

	.isend-form-page-card {
		padding: 22px;
		border-radius: 18px;
	}

	.isend-form-page-title {
		font-size: 26px;
	}
}