.pricing-hero{
	position: relative;
	overflow: hidden;
}

.pricing-hero::before{
	content: "";
	position: absolute;
	width: 700px;
	height: 700px;
	right: -200px;
	top: -220px;
	background: radial-gradient(70.71% 70.71% at 50% 50%, #FCEAEA 0%, rgba(252, 234, 234, 0) 65%);
}

/* ---------------------- */
/* pricing section start */
/* ---------------------- */

.pricing-wrapper br,
.mobile-pricing br{
	display: none;
}

.pricing-wrapper {
	background: #fff;
	border-radius: 16px;
	border: 1px solid #e4e0d8;
	overflow: hidden;
}

.price-black-btn{
	justify-content: space-between;
	background-color: #ffffff;
	border: 1px solid #262A37;
	color: #262A37;
}

.price-black-btn .btn-primary-icon{
	background-color: #262A37;
}

.price-black-btn .btn-primary-icon svg path{
	stroke: #FFFFFF;
}

.price-contact-btn{
	background-color: #262A37;
	color: #FFFFFF;
}

.price-contact-btn .btn-primary-icon{
	background-color: #FFFFFF;
}

.price-contact-btn .btn-primary-icon svg path{
	stroke: #262A37;
}

/* ───────── HEADER ROW ───────── */
.pricing-header {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	border-bottom: 1px solid #e4e0d8;
}

.plan-header-cell {
	padding: 40px 24px;
	border-left: 1px solid #e4e0d8;
	position: relative;
}

.plan-header-cell:first-child {
	border-left: none;
}

.plan-label {
	font-size: 15px;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #888;
	margin-bottom: 6px;
}

.plan-price {
	font-size: 25px;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1;
}

.plan-price span {
	font-size: 16px;
	font-weight: 400;
	color: #888;
}

.plan-trial {
	font-size: 16px;
	color: #888;
	margin-top: 4px;
}

.plan-features-label {
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: #808080;
	display: flex;
	align-items: flex-end;
	padding-bottom: 4px;
}

/* CTA Buttons */
.btn-plan {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 12px 16px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	margin-top: 16px;
	cursor: pointer;
	border: none;
	text-decoration: none;
}

.btn-plan svg {
	flex-shrink: 0;
}

.btn-outline-dark-plan {
	background: transparent;
	border: 1.5px solid #1a1a1a;
	color: #1a1a1a;
}

.btn-outline-dark-plan:hover {
	background: #f0ede8;
}

.btn-red-plan {
	background: #e02020;
	color: #fff;
}

.btn-red-plan:hover {
	background: #c41a1a;
}

.btn-black-plan {
	background: #1a1a1a;
	color: #fff;
}

.btn-black-plan:hover {
	background: #333;
}

/* Most Popular Badge */
.most-popular-badge {
	position: absolute;
	top: -1px;
	left: 48%;
	background: #e02020;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	padding: 4px 12px;
	border-radius: 0 0 8px 8px;
	white-space: nowrap;
	display: flex;
	align-items: center;
	gap: 4px;
}

.popular-col {
	background: #fff8f8;
}

/* ───────── SECTION HEADER ───────── */
.section-header {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	background: #1e2330;
	color: #fff;
}

.section-title {
	grid-column: 1 / -1;
	padding: 12px 24px;
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
}

/* ───────── FEATURE ROW ───────── */
.feature-row {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	border-bottom: 1px solid #ece9e3;
	transition: background .15s;
	cursor: pointer;
}

.feature-row:last-child {
	border-bottom: none;
}

.feature-row:hover {
	background: #faf8f5;
}

.feature-label {
	padding: 14px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 14px;
	font-weight: 600;
	color: #333;
}

/* Accordion toggle */
.feature-toggle {
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	color: #aaa;
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.feature-label .feature-toggle {
	order: 2;
}

.feature-toggle svg {
	transition: transform .25s;
}

.feature-toggle.open svg {
	transform: rotate(180deg);
}

/* Accordion description */
.feature-desc {
	grid-column: 1 / 2;
	grid-row: 2 / 3;
	padding: 0 20px;
	font-size: 14px;
	color: #888;
	max-height: 0;
	overflow: hidden;
	transition: max-height .3s ease, padding .3s ease;
	line-height: 1.5;
}

.feature-desc.open {
	max-height: 1000px;
	padding: 0 20px 14px;
}

.feature-cell {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 14px 8px;
	font-size: 16px;
	color: #555;
	border-left: 1px solid #ece9e3;
	grid-row: 1 / 3;
}

.feature-cell.popular-col {
	background: #fff8f8;
}

/* Icons */
.icon-check {
	color: #22c55e;
}

.icon-cross {
	color: #ef4444;
}

.badge-unlimited {
	background: #1D4ED81A;
	color: #1D4ED8;
	font-size: 14px;
	font-weight: 600;
	padding: 3px 10px;
	border-radius: 20px;
	border: 1px solid #1D4ED833;
}

/* ──────────────────────────────────────
MOBILE TABS  (< 768px)
─────────────────────────────────────── */
.mobile-pricing {
	display: none;
}

@media (max-width: 767px) {
	.desktop-pricing {
		display: none;
	}

	.mobile-pricing {
		display: block;
	}

	/* Tab nav */
	.tab-nav {
		display: flex;
		border-bottom: 2px solid #e4e0d8;
		margin-bottom: 0;
		position: sticky;
		top: 0;
		z-index: 10;
	}

	.tab-btn {
		flex: 1;
		padding: 14px 8px;
		font-size: 16px;
		font-weight: 600;
		text-align: center;
		background: none;
		border: none;
		color: #aaa;
		cursor: pointer;
		border-bottom: 3px solid transparent;
		margin-bottom: -2px;
		transition: color .2s, border-color .2s;
	}

	.tab-btn.active {
		color: #1a1a1a;
		border-bottom-color: #E42A2C;
	}

	/* Tab panels */
	.tab-panel {
		display: none;
	}

	.tab-panel.active {
		display: block;
	}

	/* Plan card */
	.mobile-plan-card {
		/* 		border-radius: 12px; */
		/* 		border: 1px solid #e4e0d8; */
		margin: 12px 0;
		overflow: hidden;
		position: relative;
	}

	.mobile-plan-header {
		padding: 20px;
		position: relative;
		background-color: #ffffff;
		border: 1px solid #00000026;
		border-radius: 14px;
	}

	.mobile-plan-header .most-popular-badge {
		top: 0;
		right: 16px;
		left: auto;
		transform: none;
		border-radius: 0 0 8px 8px;
	}

	.mobile-plan-name {
		font-size: 11px;
		font-weight: 600;
		letter-spacing: .1em;
		text-transform: uppercase;
		color: #888;
		margin-bottom: 6px;
	}

	.mobile-plan-price {
		font-size: 36px;
		font-weight: 700;
		color: #1a1a1a;
	}

	.mobile-plan-price span {
		font-size: 14px;
		font-weight: 400;
		color: #888;
	}

	.mobile-trial {
		font-size: 12px;
		color: #888;
		margin-top: 4px;
	}

	/* Mobile section header */
	.mobile-section-hdr {
		background: #1e2330;
		color: #fff;
		font-size: 16px;
		font-weight: 700;
		letter-spacing: .1em;
		text-transform: uppercase;
		padding: 10px 20px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		cursor: pointer;
		user-select: none;
		margin-top: 20px;
		border-radius: 10px
	}

	.mobile-section-hdr.mainopen{
		border-radius: 10px 10px 0 0;
	}

	.mobile-section-hdr svg {
		transition: transform .25s;
	}

	.mobile-section-hdr.mainopen svg {
		transform: rotate(180deg);
	}

	/* Mobile feature item */
	.mobile-feature-list {
		overflow: hidden;
		max-height: 0;
		transition: max-height .35s ease;
	}

	.mobile-feature-list.mainopen {
		max-height: 2000px;
		border: 1px solid #00000026;
		border-radius: 0 0 10px 10px;
	}

	.mobile-feature-item {
		display: flex;
	}

	.pricing-wrapper {
		background: #fff;
		border-radius: 16px;
		border: 1px solid #e4e0d8;
		overflow: hidden;
	}

	.price-black-btn {
		justify-content: space-between;
		background-color: #ffffff;
		border: 1px solid #262A37;
		color: #262A37;
	}

	.price-black-btn .btn-primary-icon {
		background-color: #262A37;
	}

	.price-black-btn .btn-primary-icon svg path {
		stroke: #FFFFFF;
	}

	.price-contact-btn {
		background-color: #262A37;
		color: #FFFFFF;
	}

	.price-contact-btn .btn-primary-icon {
		background-color: #FFFFFF;
	}

	.price-contact-btn .btn-primary-icon svg path {
		stroke: #262A37;
	}

	/* ───────── HEADER ROW ───────── */
	.pricing-header {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr 1fr;
		border-bottom: 1px solid #e4e0d8;
	}

	.plan-header-cell {
		padding: 28px 24px;
		border-left: 1px solid #e4e0d8;
		position: relative;
	}

	.plan-header-cell:first-child {
		border-left: none;
	}

	.plan-label {
		font-size: 11px;
		font-weight: 600;
		letter-spacing: .08em;
		text-transform: uppercase;
		color: #888;
		margin-bottom: 6px;
	}

	.plan-price {
		font-size: 32px;
		font-weight: 700;
		color: #1a1a1a;
		line-height: 1;
	}

	.plan-price span {
		font-size: 14px;
		font-weight: 400;
		color: #888;
	}

	.plan-trial {
		font-size: 12px;
		color: #888;
		margin-top: 4px;
	}

	.plan-features-label {
		font-weight: 600;
		letter-spacing: .1em;
		text-transform: uppercase;
		color: #808080;
		display: flex;
		align-items: flex-end;
		padding-bottom: 4px;
	}

	/* CTA Buttons */
	.btn-plan {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		padding: 12px 16px;
		border-radius: 8px;
		font-size: 14px;
		font-weight: 600;
		margin-top: 16px;
		cursor: pointer;
		border: none;
		text-decoration: none;
	}

	.btn-plan svg {
		flex-shrink: 0;
	}

	.btn-outline-dark-plan {
		background: transparent;
		border: 1.5px solid #1a1a1a;
		color: #1a1a1a;
	}

	.btn-outline-dark-plan:hover {
		background: #f0ede8;
	}

	.btn-red-plan {
		background: #e02020;
		color: #fff;
	}

	.btn-red-plan:hover {
		background: #c41a1a;
	}

	.btn-black-plan {
		background: #1a1a1a;
		color: #fff;
	}

	.btn-black-plan:hover {
		background: #333;
	}

	/* Most Popular Badge */
	.most-popular-badge {
		position: absolute;
		top: -1px;
		left: 48%;
		background: #e02020;
		color: #fff;
		font-size: 14px;
		font-weight: 600;
		padding: 4px 12px;
		border-radius: 0 0 8px 8px;
		white-space: nowrap;
		display: flex;
		align-items: center;
		gap: 4px;
	}

	.popular-col {
		background: #fff8f8;
	}

	/* ───────── SECTION HEADER ───────── */
	.section-header {
		display: grid;
		grid-template-columns: 240px 1fr 1fr 1fr;
		background: #1e2330;
		color: #fff;
	}

	.section-title {
		grid-column: 1 / -1;
		padding: 12px 24px;
		font-size: 12px;
		font-weight: 700;
		letter-spacing: .1em;
		text-transform: uppercase;
	}

	/* ───────── FEATURE ROW ───────── */
	.feature-row {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr 1fr;
		border-bottom: 1px solid #ece9e3;
		transition: background .15s;
		cursor: pointer;
	}

	.feature-row:last-child {
		border-bottom: none;
	}

	.feature-row:hover {
		background: #faf8f5;
	}

	.feature-label {
		padding: 14px 20px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		font-size: 14px;
		font-weight: 600;
		color: #333;
	}

	/* Accordion toggle */
	.feature-toggle {
		background: none;
		border: none;
		padding: 0;
		cursor: pointer;
		color: #aaa;
		display: flex;
		align-items: center;
		flex-shrink: 0;
	}

	.feature-label .feature-toggle {
		order: 2;
	}

	.feature-toggle svg {
		transition: transform .25s;
	}

	.feature-toggle.open svg {
		transform: rotate(180deg);
	}

	/* Accordion description */
	.feature-desc {
		grid-column: 1 / 2;
		grid-row: 2 / 3;
		padding: 0 20px;
		font-size: 14px;
		color: #888;
		max-height: 0;
		overflow: hidden;
		transition: max-height .3s ease, padding .3s ease;
		line-height: 1.5;
	}

	.feature-desc.open {
		max-height: 120px;
		padding: 0 20px 14px;
	}

	.feature-cell {
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 14px 8px;
		font-size: 13px;
		color: #555;
		border-left: 1px solid #ece9e3;
		grid-row: 1 / 3;
	}

	.feature-cell.popular-col {
		background: #fff8f8;
	}

	/* Icons */
	.icon-check {
		color: #22c55e;
	}

	.icon-cross {
		color: #ef4444;
	}

	.badge-unlimited {
		background: #eff6ff;
		color: #3b82f6;
		font-size: 11px;
		font-weight: 600;
		padding: 3px 10px;
		border-radius: 20px;
	}
}
	/* ──────────────────────────────────────
	MOBILE TABS  (< 768px)
	─────────────────────────────────────── */
	.mobile-pricing {
		display: none;
	}

	@media (max-width: 767px) {
		.desktop-pricing {
			display: none;
		}

		.mobile-pricing {
			display: block;
		}

		/* Tab nav */
		.tab-nav {
			display: flex;
			border-bottom: 2px solid #e4e0d8;
			margin-bottom: 0;
			position: sticky;
			top: 0;
			z-index: 10;
		}

		.tab-btn {
			flex: 1;
			padding: 14px 8px;
			font-size: 16px;
			font-weight: 600;
			text-align: center;
			background: none;
			border: none;
			color: #aaa;
			cursor: pointer;
			border-bottom: 3px solid transparent;
			margin-bottom: -2px;
			transition: color .2s, border-color .2s;
		}

		.tab-btn.active {
			color: #1a1a1a;
			border-bottom-color: #E42A2C;
		}

		/* Tab panels */
		.tab-panel {
			display: none;
		}

		.tab-panel.active {
			display: block;
		}

		/* Plan card */
		.mobile-plan-card {
			/* border-radius: 12px; */
			/* border: 1px solid #e4e0d8; */
			margin: 12px 0;
			overflow: hidden;
			position: relative;
		}

		.mobile-plan-header {
			padding: 20px;
			position: relative;
			background-color: #ffffff;
			border: 1px solid #00000026;
			border-radius: 14px;
		}

		.business-m-header{
			background-color: #E42A2C0D;
		}

		.mobile-plan-header .most-popular-badge {
			top: 0;
			right: 16px;
			left: auto;
			transform: none;
			border-radius: 0 0 8px 8px;
		}

		.mobile-plan-name {
			font-size: 16px;
			font-weight: 600;
			letter-spacing: .1em;
			text-transform: uppercase;
			color: #888;
			margin-bottom: 6px;
		}

		.mobile-plan-price {
			font-size: 36px;
			font-weight: 700;
			color: #1a1a1a;
		}

		.mobile-plan-price span {
			font-size: 20px;
			font-weight: 400;
			color: #888;
		}

		.mobile-trial {
			font-size: 16px;
			color: #888;
			margin-top: 4px;
		}

		/* Mobile section header */
		.mobile-section-hdr {
			background: #1e2330;
			color: #fff;
			font-size: 14px;
			font-weight: 600;
			/* 				letter-spacing: .1em; */
			text-transform: uppercase;
			padding: 10px 20px;
			display: flex;
			align-items: center;
			justify-content: space-between;
			cursor: pointer;
			user-select: none;
			margin-top: 20px;
			border-radius: 10px
		}

		.mobile-section-hdr.mainopen {
			border-radius: 10px 10px 0 0;
		}

		.mobile-section-hdr svg {
			transition: transform .25s;
		}

		.mobile-section-hdr.mainopen svg {
			transform: rotate(180deg);
		}

		/* Mobile feature item */
		.mobile-feature-list {
			overflow: hidden;
			max-height: 0;
			transition: max-height .35s ease;
		}

		.mobile-feature-list.mainopen {
			max-height: 2000px;
			border: 1px solid #00000026;
			border-radius: 0 0 10px 10px;
		}

		.mobile-feature-item {
			display: flex;
			align-items: center;
			justify-content: space-between;
			padding: 12px;
			border-bottom: 1px solid #ece9e3;
			font-size: 14px;
			color: #333;
			cursor: pointer;
			background-color: #ffffff;
		}

		.mobile-feature-item:last-child {
			border-bottom: none;
		}

		.mobile-feature-left {
			display: flex;
			align-items: center;
			flex: 1;
			gap: 10px;
			font-size: 16px;
			font-weight: 700;
		}

		.mobile-feature-desc {
			font-size: 16px;
			color: #777;
			padding: 0 20px;
			max-height: 0;
			overflow: hidden;
			background-color: #ffffff;
			transition: max-height .25s ease, padding .25s ease;
		}

		.mobile-feature-desc.open {
			max-height: 1500px;
			padding: 20px;
		}

		.pricing-hero::before {
			height: 450px;
			width: 450px;
		}
	}
	/* ---------------------- */
	/* pricing section end */
	/* ---------------------- */