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


/* === Tabs capsule for Quick Start / Customize Plan === */
.pricing-tabs-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto 32px;
}

.pricing-tabs-container .toggle-container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background: #ffffff;
  border-radius: 999px;
  padding: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  width: 480px;
  max-width: 100%;
}

.pricing-tabs-container .tab-button {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  border-radius: 999px;
  padding: 18px 40px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  color: #1f2937;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.pricing-tabs-container .tab-button:not(.active):hover {
  background: #f3f4f6;
  color: #111827;
}

.pricing-tabs-container .tab-button.active {
  background: linear-gradient(135deg, #5f2cff 0%, #6b39ff 30%, #9641ff 60%, #ff65a9 100%);
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(94, 92, 255, 0.4);
}

@media (max-width: 768px) {
  .pricing-tabs-container .toggle-container {
    width: 100%;
  }

  .pricing-tabs-container .tab-button {
    padding: 14px 20px;
    font-size: 0.9rem;
  }
}


/* 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%;
}


.plan-price-row {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 16px 0 12px;
}

.starter-card .plan-price,
.professional-card .plan-price,
.enterprise-card .plan-price {
	font-size: 3rem;
	font-weight: 700;
	line-height: 1;
}

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

.professional-card .plan-price {
	color: #f973ff;
}

.plan-currency-icon {
	height: 32px;
	width: auto;
}

.plan-period {
	font-size: 1.1rem;
	color: #6b7280;
}

.professional-card .plan-period {
	color: #e5e7eb;
}

.pricing-card {
	background: white;
	border-radius: 16px;
	padding: 6px 25px 32px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 580px;
}

.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;
}

/* Implementation Fees row */
.implementation-fees-row {
	padding: 16px 24px 18px;
	border-top: 1px solid #e5e7eb;
	background: #f9fafb;
}

.professional-card .implementation-fees-row {
	background: #18014f;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.implementation-label {
	margin: 0 0 4px;
	font-size: 0.9rem;
	color: #6b7280;
}

.professional-card .implementation-label {
	color: #d1d5db;
}

.implementation-amount {
	margin: 0;
	font-size: 1rem;
	font-weight: 600;
	color: #a855f7;
}

.professional-card .implementation-amount {
	color: #f973ff;
}

.implementation-currency {
	margin-right: 4px;
}

.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;
}

/* Base capsule button for all pricing actions */
.choose-btn {
	font-family: Inter, sans-serif;
	font-weight: 700;
	font-size: 15px;
	border-radius: 999px; /* full capsule */
	height: 60px;
	line-height: 60px;
	width: 100%;
	max-width: 340px;
	margin: 0 auto;
	display: block;
	text-align: center;
	border: none;
	text-decoration: none;
	background: linear-gradient(135deg, #5f2cff 0%, #6b39ff 30%, #9641ff 60%, #ff65a9 100%);
	color: #ffffff;
	box-shadow: 0 4px 18px rgba(123, 97, 255, 0.6);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover effect for all capsule buttons */
.choose-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(123, 97, 255, 0.75);
}
/* All plan buttons share the same capsule look */
.starter-btn,
.professional-btn,
.enterprise-btn {
	background: linear-gradient(135deg, #5f2cff 0%, #6b39ff 30%, #9641ff 60%, #ff65a9 100%);
	color: #ffffff;
	justify-content: center;
	align-items: center;
	display: flex;
	border-radius: 999px; /* ensure capsule even if HTML differs */
}

.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: 75px;
	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);
	position: relative;
	overflow: visible;
}

.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;
}

.pricing-details {
	margin-top: 10px;
	color: #9B9B9B;
}

.pricing-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 5px;
	font-size: 0.9rem;
	color: #9B9B9B;
}

.professional-card .pricing-details,
.professional-card .pricing-row {
	color: white !important;
}

.professional-card .features-list li {
	color: white !important;
}

/* Module Container Styles */
.module-container {
	/* Allow the panel to grow with content (no fixed max-height) */
	max-height: none;
	overflow: visible;
	padding-right: 8px;
}

.module-container::-webkit-scrollbar {
	width: 6px;
}

.module-container::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 3px;
}

.module-container::-webkit-scrollbar-thumb {
	background: #7c3aed;
	border-radius: 3px;
}

.module-container::-webkit-scrollbar-thumb:hover {
	background: #6b2ed6;
}


/* Module Wrapper */
.module-wrapper {
	/* Let wrapper expand when dropdown opens */
	position: relative;
	margin-bottom: 16px;
	border-radius: 8px;
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	transition: all 0.2s ease;
	display: flex;
	flex-direction: column;
}

.module-wrapper:hover {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Dropdown should be in normal flow so it pushes modules below it */
.module-wrapper .dropdown-menu {
	position: static;          /* <– key change: remove absolute positioning */
	width: 100%;
	margin: 0;                 /* no gap above/below unless you want one */
	border-top: 1px solid #e5e7eb;
	background: #ffffff;
	border-radius: 0 0 8px 8px;
	max-height: 260px;         /* keep internal scroll if long list */
	overflow-y: auto;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Module Item */
.module {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px;
	cursor: pointer;
	transition: background-color 0.2s;
}

.module:hover {
	background-color: #f3f4f6;
}

/* Module Title */
.module-title {
	font-weight: 600;
	color: #1f2937;
	font-size: 1rem;
	flex: 1;
}

/* Right Side */
.right-side {
	display: flex;
	align-items: center;
	gap: 16px;
}

/* Select Button */
.select-wrapper {
	position: relative;
}

.select-btn {
	background: white;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	padding: 8px 12px;
	font-size: 0.9rem;
	font-weight: 500;
	color: #374151;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: all 0.2s ease;
	min-width: 100px;
	justify-content: space-between;
}

.select-btn:hover {
	border-color: #7c3aed;
	color: #7c3aed;
}

.select-btn.has-selection {
	background: #f3e8ff;
	border-color: #7c3aed;
	color: #7c3aed;
}

.chevron-icon {
	font-size: 0.8rem;
	transition: transform 0.2s ease;
}

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

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

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

.slider:before {
	position: absolute;
	content: "";
	height: 18px;
	width: 18px;
	left: 3px;
	bottom: 3px;
	background-color: white;
	transition: 0.4s;
	border-radius: 50%;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

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

input:checked + .slider:before {
	transform: translateX(20px);
}

.slider.selected {
	background-color: #7c3aed;
}

.slider.selected:before {
	transform: translateX(20px);
}

/* Dropdown Menu */
.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: white;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	max-height: 200px;
	overflow-y: auto;
	display: none;
	margin-top: 4px;
}

.dropdown-menu::-webkit-scrollbar {
	width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 3px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
	background: #7c3aed;
	border-radius: 3px;
}

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

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

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

.dropdown-item.selected {
	background-color: #f3e8ff;
	border-left: 3px solid #7c3aed;
}

/* Option Name */
.option-name {
	font-weight: 500;
	color: #1f2937;
	font-size: 0.9rem;
	flex: 1;
}

/* Option Price */
.option-price {
	font-weight: 600;
	color: #7c3aed;
	font-size: 0.9rem;
	display: flex;
	align-items: center;
	gap: 4px;
}

.riyal-symbol {
	width: 12px;
	height: 12px;
}

/* Select Modules Header */
.select-modules h1 {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1f2937;
	margin-bottom: 24px;
	text-align: center;
}

/* Billing Pill */
.billing-pill {
	display: flex;
	background: #f3f4f6;
	border-radius: 25px;
	padding: 4px;
	margin-bottom: 24px;
}

.pill-option {
	flex: 1;
	padding: 12px 24px;
	border: none;
	border-radius: 21px;
	font-weight: 600;
	font-size: 0.9rem;
	cursor: pointer;
	transition: all 0.3s ease;
	background: transparent;
	color: #6b7280;
}

.pill-option.active {
	background: linear-gradient(135deg, #5f2cff 0%, #6b39ff 30%, #9641ff 60%, #ff65a9 100%);
	color: white;
	box-shadow: 0 2px 8px rgba(123, 97, 255, 0.3);
}

@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;
	}
}
