	:root {
		--primary-color: #2563eb;
		--primary-light: #3b82f6;
		--primary-dark: #1d4ed8;
		--secondary-color: #6c757d;
		--accent-color: #f59e0b;
		--light-color: #f8f9fa;
		--dark-color: #212529;
		--border-color: #e5e7eb;
		--card-shadow: 0 10px 15px -3px rgba(0,0,0,0.07), 0 4px 6px -2px rgba(0,0,0,0.05);
		--hover-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
	}
	body {
		/*font-family: 'Inter', system-ui, -apple-system, sans-serif;*/
		background-color: #f9fafb;
		color: #374151;
		line-height: 1.6;
	}
	.pricing-header {
		background: linear-gradient(120deg, var(--primary-color), var(--primary-light));
		color: white;
		padding: 80px 0;
		margin-bottom: 50px;
		position: relative;
		overflow: hidden;
	}
	.pricing-header::after {
		content: '';
		position: absolute;
		bottom: -50px;
		left: 0;
		width: 100%;
		height: 100px;
		background: #f9fafb;
		clip-path: ellipse(50% 50% at 50% 50%);
	}
	.pricing-card {
		border-radius: 16px;
		box-shadow: var(--card-shadow);
		transition: transform 0.3s, box-shadow 0.3s;
		overflow: hidden;
		height: 100%;
		background-color: white;
		margin-bottom: 30px;
		border: 1px solid var(--border-color);
		position: relative;
		display: flex;
		flex-direction: column;
	}
	.pricing-card:hover {
		transform: translateY(-10px);
		box-shadow: var(--hover-shadow);
	}
	.pricing-card-header {
		padding: 30px 20px;
		text-align: center;
		border-bottom: 1px solid var(--border-color);
		background-color: #f9fafb;
	}
	.pricing-card-header h5 {
		font-weight: 700;
		color: #111827;
		font-size: 1.25rem;
	}
	.pricing-price {
		padding: 30px 20px;
		text-align: center;
		font-size: 3rem;
		font-weight: 800;
		color: var(--primary-color);
		background: linear-gradient(to right, var(--primary-color), var(--primary-light));
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		background-clip: text;
	}
	.pricing-period {
		font-size: 1rem;
		color: #6b7280;
		font-weight: 500;
		-webkit-text-fill-color: #6b7280;
	}
	.pricing-details {
		padding: 24px;
		border-top: 1px solid var(--border-color);
		flex: 1;
	}
	.pricing-details h6 {
		font-weight: 700;
		color: #111827;
		font-size: 1.1rem;
		margin-bottom: 20px;
	}
	.integration-item, .store-features li {
		padding: 16px;
		display: flex;
		align-items: center;
		border-radius: 12px;
		margin-bottom: 12px;
		background-color: #f9fafb;
		transition: all 0.2s;
	}
	.integration-item:hover, .store-features li:hover {
		background-color: #f3f4f6;
	}
	.integration-item:last-child, .store-features li:last-child {
		margin-bottom: 0;
	}
	.integration-icon, .store-features i {
		width: 48px;
		height: 48px;
		display: flex;
		align-items: center;
		justify-content: center;
		background-color: var(--primary-light);
		color: white;
		border-radius: 12px;
		margin-right: 16px;
		font-size: 1.25rem;
		flex-shrink: 0;
	}
	.store-features i {
		width: 36px;
		height: 36px;
	}
	.integration-name, .store-features span {
		flex-grow: 1;
		font-weight: 600;
		color: #111827;
	}
	.store-features {
		list-style: none;
		padding: 0;
		margin: 0;
	}
	.store-features li {
		border-bottom: none;
	}
	.integration-price {
		font-weight: 700;
		color: var(--primary-color);
		background-color: rgba(37, 99, 235, 0.1);
		padding: 6px 12px;
		border-radius: 20px;
		font-size: 0.875rem;
	}
	.toggle-container {
		display: flex;
		align-items: center;
		justify-content: center;
		margin-bottom: 50px;
		background-color: white;
		padding: 16px;
		border-radius: 50px;
		box-shadow: var(--card-shadow);
		width: fit-content;
		margin-left: auto;
		margin-right: auto;
	}
	.toggle-label {
		font-weight: 600;
		margin: 0 15px;
		color: #111827;
	}
	.discount-badge {
		background-color: var(--accent-color);
		color: white;
		padding: 6px 14px;
		border-radius: 50px;
		font-size: 0.875rem;
		font-weight: 600;
		margin-left: 10px;
	}
	.btn-container {
		padding: 24px;
		margin-top: auto;
		background-color: white;
		border-top: 1px solid var(--border-color);
	}
	.btn-pricing {
		width: 100%;
		padding: 14px;
		border-radius: 12px;
		font-weight: 600;
		transition: all 0.3s;
		background-color: var(--primary-color);
		border: none;
	}
	.btn-pricing:hover {
		background-color: var(--primary-dark);
		transform: translateY(-2px);
		box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
	}
	.more-integrations {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
		gap: 12px;
		padding: 20px 0;
	}
	.more-integrations > a {
		display: block;
		text-decoration: none;
		color: inherit;
		min-width: 0;
	}
	.more-integration-item img {
		display: block;
		width: auto;
		max-width: 36px;
		max-height: 36px;
		height: auto;
		object-fit: contain;
		margin: 0 auto 6px;
	}
	.more-integration-item {
		height: 90px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		background-color: #f9fafb;
		border-radius: 12px;
		font-size: 0.75rem;
		font-weight: 600;
		text-align: center;
		transition: all 0.2s;
		padding: 10px;
		border: 1px solid var(--border-color);
	}
	.more-integration-item:hover {
		background-color: white;
		box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
		transform: translateY(-3px);
	}
	.more-integration-item i {
		font-size: 1.5rem;
		margin-bottom: 8px;
		color: var(--primary-color);
	}
	.section-title {
		text-align: center;
		margin-bottom: 60px;
	}
	.section-title h2 {
		font-weight: 800;
		position: relative;
		display: inline-block;
		margin-bottom: 20px;
		color: #111827;
		font-size: 2.25rem;
	}
	.section-title h2:after {
		content: '';
		position: absolute;
		left: 50%;
		bottom: -15px;
		transform: translateX(-50%);
		width: 80px;
		height: 4px;
		background: linear-gradient(to right, var(--primary-color), var(--primary-light));
		border-radius: 4px;
	}
	.table-responsive {
		border-radius: 16px;
		overflow: hidden;
		box-shadow: var(--card-shadow);
	}
	.table {
		margin-bottom: 0;
	}
	.table th {
		background-color: #f9fafb;
		font-weight: 700;
		color: #111827;
		padding: 16px;
	}
	.table td {
		padding: 16px;
		vertical-align: middle;
	}
	.accordion {
		border-radius: 16px;
		overflow: hidden;
		box-shadow: var(--card-shadow);
	}
	.accordion-item {
		border-color: var(--border-color);
	}
	.accordion-button {
		padding: 20px;
		font-weight: 600;
		color: #111827;
	}
	.accordion-button:not(.collapsed) {
		background-color: rgba(37, 99, 235, 0.05);
		color: var(--primary-color);
	}
	.accordion-body {
		padding: 20px;
		color: #4b5563;
	}
	.cta-section {
		background: linear-gradient(120deg, var(--primary-color), var(--primary-dark));
		color: white;
		padding: 80px 0;
		position: relative;
		overflow: hidden;
	}
	.cta-section::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: radial-gradient(circle at top right, rgba(255,255,255,0.1) 0%, transparent 70%);
	}
	.cta-section h2 {
		font-weight: 800;
		margin-bottom: 30px;
		font-size: 2.5rem;
	}
	.btn-light {
		padding: 14px 30px;
		font-weight: 600;
		border-radius: 50px;
		box-shadow: 0 10px 15px -3px rgba(0,0,0,0.2);
		transition: all 0.3s;
	}
	.btn-light:hover {
		transform: translateY(-3px);
		box-shadow: 0 15px 20px -3px rgba(0,0,0,0.3);
	}
	
	/* Responsive improvements */
	@media (max-width: 992px) {
		.pricing-header {
			padding: 60px 0;
		}
		.pricing-card {
			margin-bottom: 40px;
		}
		.section-title h2 {
			font-size: 2rem;
		}
		.cta-section h2 {
			font-size: 2rem;
		}
	}
	
	@media (max-width: 768px) {
		.pricing-header {
			padding: 40px 0;
		}
		.pricing-header h1 {
			font-size: 2.25rem;
		}
		.toggle-container {
			width: 90%;
			max-width: 320px;
			display: flex;
			flex-direction: column;
			padding: 20px;
			gap: 15px;
			align-items: center;
		}
		.toggle-label {
			margin: 0 0 5px 0;
		}
		.discount-badge {
			margin-left: 0;
			margin-top: 10px;
		}
		.more-integrations {
			grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
		}
		.section-title h2 {
			font-size: 1.75rem;
		}
		.cta-section {
			padding: 60px 0;
		}
		.cta-section h2 {
			font-size: 1.75rem;
		}
	}
	
	@media (max-width: 576px) {
		.pricing-header h1 {
			font-size: 1.75rem;
		}
		.pricing-price {
			font-size: 2.5rem;
		}
		.more-integrations {
			grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
		}
		.integration-item {
			padding: 12px;
		}
		.integration-icon {
			width: 40px;
			height: 40px;
			font-size: 1rem;
		}
		.integration-price {
			padding: 4px 8px;
			font-size: 0.75rem;
		}
		.section-title h2 {
			font-size: 1.5rem;
		}
		
		/* Additional table responsiveness for very small screens */
		.table-comparison {
			font-size: 0.7rem;
		}
		.table-comparison th:first-child {
			padding-right: 5px;
			min-width: 100px;
		}
		.table-comparison th:first-child:before {
			content: attr(data-feature);
			display: none;
		}
		.table-comparison th:first-child[data-feature] {
			position: relative;
		}
		.table-comparison i.fas.fa-check {
			font-size: 0.85rem;
		}
		.table-comparison td {
			padding: 8px 4px;
		}
		
		.table-responsive::after {
			font-size: 1rem;
			bottom: -20px;
		}
	}
	
	@media (max-width: 430px) {
		.table-comparison th {
			min-width: 70px;
			font-size: 0.7rem;
			padding: 8px 4px;
		}
		.table-comparison td {
			padding: 8px 3px;
		}
	}
	
	/* Switch styling */
	.switch {
		position: relative;
		display: inline-block;
		width: 60px;
		height: 34px;
	}
	.switch input {
		opacity: 0;
		width: 0;
		height: 0;
	}
	.slider {
		position: absolute;
		cursor: pointer;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: #cbd5e1;
		transition: .4s;
		border-radius: 34px;
	}
	.slider:before {
		position: absolute;
		content: "";
		height: 26px;
		width: 26px;
		left: 4px;
		bottom: 4px;
		background-color: white;
		transition: .4s;
		border-radius: 50%;
		box-shadow: 0 2px 4px rgba(0,0,0,0.2);
	}
	input:checked + .slider {
		background-color: var(--primary-color);
	}
	input:checked + .slider:before {
		transform: translateX(26px);
	}
	.invisible {
		visibility: hidden;
		opacity: 0;
	}
	.spacer-items {
		margin-top: 20px;
	}
	
	/* Enhanced table responsiveness */
	@media (max-width: 991px) {
		.table-comparison th {
			white-space: normal;
			font-size: 0.9rem;
		}
	}
	
	@media (max-width: 767px) {
		.table-responsive {
			position: relative;
		}
		.table-responsive::after {
			content: '←→';
			position: absolute;
			bottom: -25px;
			left: 50%;
			transform: translateX(-50%);
			color: var(--primary-color);
			font-size: 1.2rem;
			opacity: 0.7;
			animation: scroll-hint 1.5s ease-in-out infinite;
		}
		.table-comparison th {
			min-width: 90px;
			font-size: 0.8rem;
			padding: 10px 5px;
			text-align: center;
		}
		.table-comparison td {
			padding: 10px 5px;
		}
		.table-comparison th:first-child {
			position: sticky;
			left: 0;
			background-color: #f9fafb;
			z-index: 1;
			border-right: 1px solid #dee2e6;
			min-width: 120px;
		}
		.features-section .section-title {
			margin-bottom: 30px;
		}
		
		/* Responsive card layout for small screens */
		.mobile-feature-cards {
			display: block;
		}
		.desktop-feature-table {
			display: none;
		}
		.feature-card {
			margin-bottom: 25px;
			border-radius: 12px;
			overflow: hidden;
			box-shadow: var(--card-shadow);
			display: none;
		}
		.feature-card.active {
			display: block;
		}
		.feature-card-header {
			background-color: #f9fafb;
			padding: 15px;
			text-align: center;
			border-bottom: 1px solid var(--border-color);
		}
		.feature-card-header h4 {
			margin: 0;
			font-weight: 700;
			color: #111827;
		}
		.feature-card-body {
			padding: 0;
		}
		.feature-list {
			list-style: none;
			margin: 0;
			padding: 0;
		}
		.feature-list-item {
			display: flex;
			padding: 12px 15px;
			border-bottom: 1px solid var(--border-color);
			align-items: center;
			background-color: white;
		}
		.feature-name {
			flex-grow: 1;
			font-weight: 500;
		}
		.feature-value {
			font-weight: 600;
			color: var(--primary-color);
		}
		.feature-value i.fas.fa-check {
			color: #10b981;
		}
		.feature-value i.fas.fa-minus {
			color: #cbd5e1;
		}
		
		/* Plan tabs for mobile */
		.plan-tabs {
			display: flex;
			overflow-x: auto;
			margin-bottom: 20px;
			padding-bottom: 10px;
			-webkit-overflow-scrolling: touch;
			scrollbar-width: none; /* Firefox */
		}
		.plan-tabs::-webkit-scrollbar {
			display: none; /* Chrome/Safari */
		}
		.plan-tab {
			flex: 0 0 auto;
			padding: 10px 15px;
			margin-right: 8px;
			background-color: #f3f4f6;
			border-radius: 8px;
			font-weight: 600;
			font-size: 0.9rem;
			cursor: pointer;
			white-space: nowrap;
			border: 1px solid transparent;
			transition: all 0.2s;
		}
		.plan-tab.active {
			background-color: white;
			border-color: var(--primary-color);
			color: var(--primary-color);
		}
		.plan-tab:last-child {
			margin-right: 0;
		}
	}
	
	@media (min-width: 768px) {
		.mobile-feature-cards {
			display: none;
		}
		.desktop-feature-table {
			display: block;
		}
	}
	
	@keyframes scroll-hint {
		0%, 100% { transform: translateX(-50%) translateX(-10px); }
		50% { transform: translateX(-50%) translateX(10px); }
	}
	
	/* Styling for startup card and trial options */
	.startup-card {
		background-color: #f9fafb;
		border: 1px solid var(--border-color);
	}
	
	.startup-card .pricing-card-header {
		background-color: white;
		border-right: 1px solid var(--border-color);
		border-bottom: 0;
		height: 100%;
	}
	
	.startup-card .pricing-details {
		border-top: 0;
		padding: 24px 30px;
	}
	
	.startup-card .pricing-price {
		padding: 20px;
		border-right: 1px solid var(--border-color);
	}
	
	.startup-card .btn-pricing {
		padding: 10px 20px;
		width: auto;
	}
	
	.trial-option {
		border-top: 1px solid var(--border-color);
		padding: 8px 0;
	}
	
	.trial-price {
		font-weight: 700;
		color: var(--accent-color);
		font-size: 1.1rem;
	}
	
	/* Responsive for startup card */
	@media (max-width: 991px) {
		.startup-card .pricing-card-header,
		.startup-card .pricing-price {
			border-right: 0;
			border-bottom: 1px solid var(--border-color);
		}
		
		.startup-card .pricing-price {
			padding: 15px;
		}
	}

	.text-muted {
	--bs-text-opacity: 1;
	color: rgba(33, 37, 41, 0.75) !important;
}
	.mt-12px {
    margin-top: 12px;
  }

/* Load after theme; ensure page background matches live site */
body {
	background-color: #f9fafb !important;
}

/* Keep pricing packages aligned (never wrap randomly) */
.pricing-section .pricing-cards-row {
	display: grid !important;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	align-items: stretch;
}

@media (min-width: 768px) {
	.pricing-section .pricing-cards-row {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

@media (min-width: 992px) {
	.pricing-section .pricing-cards-row {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	}
}

/* Neutralize bootstrap column widths inside the grid */
.pricing-section .pricing-cards-row > [class*="col-"] {
	width: auto !important;
	max-width: none !important;
	flex: initial !important;
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.pricing-section .pricing-cards-row > [class*="col-"] > .pricing-card {
	flex: 1;
	width: 100%;
}