.hero-actions {
	display: flex;
	gap: 20px;
	justify-content: center;
	margin-bottom: 60px;
	flex-wrap: wrap;
	align-items: center;
}

/* Toggle Switch Styles */
.toggle-switch {
	position: relative;
	display: inline-block;
	width: 50px;
	height: 24px;
}

.toggle-switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.toggle-slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	transition: 0.4s;
	border-radius: 24px;
}

.toggle-slider:before {
	position: absolute;
	content: "";
	height: 18px;
	width: 18px;
	left: 3px;
	bottom: 3px;
	background-color: white;
	transition: 0.4s;
	border-radius: 50%;
}

input:checked + .toggle-slider {
	background-color: #7c3aed;
}

input:checked + .toggle-slider:before {
	transform: translateX(26px);
}

/* Module selection styles */
.module-item.selected {
	background-color: #f3e8ff !important;
	border-left: 4px solid #7c3aed;
}

.support-option.selected {
	background-color: #f3e8ff !important;
	border-left: 4px solid #7c3aed;
}

.btn-toggle-group {
	display: inline-flex;
	gap: 8px;
	align-items: center;
	margin-bottom: 10px;
}

.btn-monthly,
.btn-annually {
	padding: 8px 20px;
	font-size: 14px;
	font-weight: 500;
	border: none;
	border-radius: 20px;
	cursor: pointer;
	background-color: #3918a7;
	transition: all 0.3s ease;
}

.btn:hover {
	background-color: #d1d5db;
}

.btn.active {
	background-color: #8b5cf6;
	color: white;
}

.btn-monthly.active,
.btn-annually.active {
	background: linear-gradient(
		135deg,
		#5f2cff 0%,
		#6b39ff 30%,
		#9641ff 60%,
		#ff65a9 100%
	) !important;
	color: white !important;
}

.btn-trial {
	background: linear-gradient(135deg, #5f2cff 0%, #6b39ff 30%, #9641ff 60%, #ff65a9 100%);
	color: white;
	padding: 16px 32px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(123, 97, 255, 0.4);
}

.btn-trial:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(123, 97, 255, 0.6);
}

.pricing-cards-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	width: 100%;
}

.pricing-card {
	background: white;
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.professional-card.featured {
	background: #18014f;
	box-shadow: 0 8px 24px rgba(24, 1, 79, 0.3);
	color: white;
	transform: scale(1.05);
	border: 2px solid transparent;
	background-clip: padding-box;
	position: relative;
}

.gradient-border {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 16px;
	padding: 2px;
	background: linear-gradient(135deg, #5f2cff 0%, #6b39ff 30%, #9641ff 60%, #ff65a9 100%);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask-composite: exclude;
	z-index: -1;
}

.card-header {
	text-align: center;
	margin-bottom: 20px;
}

.card-header h3 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 8px;
}

.starter-card .card-header h3,
.enterprise-card .card-header h3 {
	color: #1f2937;
}

.price {
	font-size: 2.5rem;
	font-weight: 700;
}

.starter-card .price,
.enterprise-card .price {
	color: #7c3aed;
}

.gradient-text {
	background: linear-gradient(90deg, #d543b2 0%, #9747ff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.period {
	font-size: 1rem;
}

.starter-card .period,
.enterprise-card .period {
	color: #1f2937;
}

.professional-card .period {
	opacity: 0.8;
	-webkit-text-fill-color: white;
}

.description {
	margin-top: 8px;
}

.starter-card .description,
.enterprise-card .description {
	color: #1f2937;
}

.professional-card .description {
	opacity: 0.8;
}

.features-list {
	list-style: none;
	padding: 0;
	margin: 0 0 20px 0;
}

.features-list li {
	display: flex;
	align-items: center;
	margin-bottom: 8px;
	font-size: 0.9rem;
}

.feature-included {
	color: #1f2937;
}

.feature-excluded {
	color: #9ca3af;
}

.feature-available {
	color: #10b981;
}

.feature-partial {
	color: #fbbf24;
}

.bullet {
	color: #7c3aed;
	margin-right: 8px;
}

.bullet-excluded {
	color: #9ca3af;
	margin-right: 8px;
}

.bullet-available {
	color: #10b981;
	margin-right: 8px;
}

.bullet-partial {
	color: #fbbf24;
	margin-right: 8px;
}

.bullet-gradient {
	background: linear-gradient(135deg, #5f2cff 0%, #6b39ff 30%, #9641ff 60%, #ff65a9 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-right: 8px;
}

.card-footer {
	text-align: center;
}

.toggle-link {
	color: #7c3aed;
	text-decoration: underline;
	margin-bottom: 12px;
	display: block;
	cursor: pointer;
}

.professional-toggle {
	color: white;
}

.choose-btn {
	font-family: Inter, sans-serif;
	font-weight: 700;
	font-size: 15px;
	border-radius: 50px;
	height: 60px;
	line-height: 60px;
	width: 100%;
	max-width: 340px;
	margin: 0 auto;
	display: block;
	text-align: center;
	border: none;
	text-decoration: none;
}

.starter-btn {
	background: #fff;
	color: #181028;
	box-shadow: 0 2px 12px 0 #0001;
	justify-content: center;
	align-items: center;
	display: flex;
}

.professional-btn {
	background: linear-gradient(90deg, #d543b2 0%, #9747ff 100%);
	color: #fff;
	justify-content: center;
	align-items: center;
	display: flex;
}

.enterprise-btn {
	background: #7c3aed;
	color: white;
	padding: 12px 24px;
	border-radius: 8px;
	font-weight: 600;
	/* display: inline-block; */
	justify-content: center;
	align-items: center;
	display: flex;
}

.custom-plan-section {
	padding: 80px 0;
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
	align-items: center;
	justify-content: center;
	/* max-width: 1440px; */
	margin: 0 auto;
	position: relative;
	background: linear-gradient(135deg, #1a0d3a 0%, #2d1b69 30%, #4a2c7a 70%, #6b39ff 100%);
	border-radius: 32px;
	box-shadow: 0 8px 48px 0 rgba(80, 0, 180, 0.25);
	overflow: hidden;
	margin: 20px;
}

.background-wave {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 200px;
	opacity: 0.3;
	z-index: 0;
}

.content-wrapper {
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.text-content {
	flex: 1 1 420px;
	min-width: 50%;
	max-width: 100%;
	margin: 20px;
}

.section-labels {
	font-size: 1rem;
	font-weight: 600;
	background: linear-gradient(90deg, #d543b2 0%, #9747ff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 12px;
}

.section-titles {
	font-family: Inter, sans-serif;
	font-weight: 800;
	font-size: 38px;
	color: #fff;
	margin-bottom: 16px;
	line-height: 1.1;
}

.section-descriptions {
	font-size: 1.15rem;
	color: #fff;
	margin-bottom: 24px;
}

.features-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 24px 32px;
	margin-bottom: 24px;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 200px;
}

.feature-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: linear-gradient(90deg, #d543b2 0%, #9747ff 100%);
	color: #fff;
	font-size: 1.2rem;
	font-weight: bold;
}

.feature-text {
	color: #fff;
	font-size: 1.08rem;
	font-weight: 500;
}

.feature-title {
	color: #fff;
}

.cta-button {
	display: inline-block;
	font-family: Inter, sans-serif;
	font-weight: 600;
	font-size: 1.1rem;
	padding: 16px 40px;
	border-radius: 50px;
	background: linear-gradient(90deg, #d543b2 0%, #9747ff 100%);
	color: #fff;
	border: none;
	margin-top: 24px;
	text-decoration: none;
	box-shadow: 0 4px 20px 0 rgba(213, 67, 178, 0.4);
	transition: all 0.3s ease;
	transform: translateY(0);
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px 0 rgba(213, 67, 178, 0.6);
}

.image-wrapper {
	position: relative;
	z-index: 1;
	flex: 1 1 420px;
	min-width: 320px;
	max-width: 520px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 20px;
}

.image-container {
	position: relative;
	padding: 20px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.calculator-image {
	width: 100%;
	max-width: 480px;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
}

.customize-plan-content {
	display: flex;
	gap: 40px;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.left-panel {
	flex: 1;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 16px;
	padding: 32px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.panel-title {
	font-size: 1.8rem;
	font-weight: 700;
	color: #1f2937;
	margin-bottom: 24px;
}

.panel-subtitle {
	color: #6b7280;
	margin-bottom: 32px;
}

.section-container {
	margin-bottom: 32px;
}

.section-title {
	font-size: 1.2rem;
	font-weight: 600;
	color: #374151;
	margin-bottom: 16px;
}

.btn-toggle-group {
	display: flex;
	gap: 12px;
	margin-bottom: 16px;
}

.modules-list {
	max-height: 300px;
	overflow-y: auto;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	padding: 8px;
}

/* Custom Scrollbar for modules-list */
.modules-list::-webkit-scrollbar {
	width: 8px;
}

.modules-list::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 4px;
}

.modules-list::-webkit-scrollbar-thumb {
	background: #7c3aed;
	border-radius: 4px;
}

.modules-list::-webkit-scrollbar-thumb:hover {
	background: #6b2ed6;
}

.module-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 16px;
	border-bottom: 1px solid #f3f4f6;
	cursor: pointer;
	transition: background-color 0.2s;
}

.module-item:hover {
	background-color: #f9fafb;
}

.module-item-last {
	border-bottom: none;
}

.module-info {
	display: flex;
	align-items: center;
}

.module-icon {
	margin-right: 12px;
	font-size: 1.2rem;
}

.module-name {
	font-weight: 500;
	color: #374151;
}

.module-price {
	font-weight: 600;
	color: #7c3aed;
}

.module-price-free {
	font-weight: 600;
	color: #10b981;
}

.hosting-options {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.hosting-option {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px;
	background: #f9fafb;
	border-radius: 8px;
}

.option-title {
	font-weight: 600;
	color: #374151;
}

.option-description {
	font-size: 0.9rem;
	color: #6b7280;
}

.currency-icon-small {
	width: 12px;
	height: 12px;
	vertical-align: middle;
}

/* Toggle Switch Styling */
.toggle-switch {
	position: relative;
	display: inline-block;
	width: 50px;
	height: 26px;
}

.toggle-switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.toggle-slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	transition: 0.4s;
	border-radius: 26px;
}

.toggle-slider:before {
	position: absolute;
	content: "";
	height: 20px;
	width: 20px;
	left: 3px;
	bottom: 3px;
	background-color: white;
	transition: 0.4s;
	border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
	background-color: #7c3aed;
}

.toggle-switch input:focus + .toggle-slider {
	box-shadow: 0 0 1px #7c3aed;
}

.toggle-switch input:checked + .toggle-slider:before {
	transform: translateX(24px);
}

.support-options {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.support-option {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px;
	background: #f9fafb;
	border-radius: 8px;
	cursor: pointer;
	transition: background-color 0.2s;
}

.support-option:hover {
	background-color: #f3f4f6;
}

.support-price-free {
	font-weight: 600;
	color: #10b981;
}

.support-price {
	font-weight: 600;
	color: #7c3aed;
}

.right-panel {
	flex: 0 0 400px;
}

.plan-summary {
	background: white;
	border-radius: 16px;
	padding: 32px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 20px;
}

.summary-title {
	font-size: 1.2rem;
	font-weight: 700;
	color: #1f2937;
	margin-bottom: 20px;
}

.total-price {
	text-align: left;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.currency-icon {
	width: 22px;
	height: 22px;
	vertical-align: middle;
	margin-right: 6px;
}

.price-amount {
	font-size: 2.2rem;
	font-weight: 700;
	background: linear-gradient(90deg, #d543b2 0%, #9747ff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: inline;
	min-width: 120px;
}

.price-period {
	font-size: 1rem;
	color: #6b7280;
	margin-left: 4px;
}

.price-breakdown {
	margin-bottom: 20px;
}

.breakdown-item {
	display: flex;
	justify-content: space-between;
	margin-bottom: 8px;
	min-width: 180px;
}

.breakdown-label {
	color: #6b7280;
	font-size: 0.9rem;
}

.breakdown-value {
	font-weight: 600;
	color: #1f2937;
	display: flex;
	align-items: center;
}

.currency-icon-breakdown {
	width: 14px;
	height: 14px;
	vertical-align: middle;
	margin-right: 4px;
}

.divider {
	border: none;
	border-top: 1px solid #e5e7eb;
	margin: 16px 0;
}

.quote-button {
	background: linear-gradient(90deg, #d543b2 0%, #9747ff 100%);
	color: white;
	font-weight: 600;
	font-size: 1rem;
	border-radius: 8px;
	padding: 14px 24px;
	width: 100%;
	border: none;
	cursor: pointer;
	margin-bottom: 12px;
	transition: transform 0.2s, box-shadow 0.2s;
}

.quote-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(149, 71, 255, 0.4);
}

.trial-info {
	text-align: center;
	font-size: 0.85rem;
	color: #6b7280;
}

@media (max-width: 425px) {
	.pricing-cards-row {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		gap: 24px;
		width: 100%;
	}
	.customize-plan-content {
		display: flex;
		gap: 40px;
		width: 100%;
		max-width: 1200px;
		flex-direction: column;
		margin: 0 auto;
	}
}
