﻿/* MT Chat Portal - Merged CSS with Site Styling */

/* ============================================
   COLOR PALETTE & VARIABLES (from site.css)
   ============================================ */
:root {
	--primary-100: #f321ff; /* Bright magenta */
	--primary-200: #ff5b3d; /* Coral red */
	--primary-300: #3128ff; /* Electric blue */

	--accent-100: #ff9500; /* Vibrant orange */
	--accent-200: #F0A500; /* Darker orange */

	--text-100: #FFFFFF; /* Pure white */
	--text-200: #e0e0e0; /* Light gray */

	--bg-100: #1a1c1e; /* Slightly darker */
	--bg-200: #2a2d30; /* Medium dark */
	--bg-300: #3a3e42; /* Lighter dark */
}

/* ============================================
   BASE HTML/BODY SETUP
   ============================================ */
html {
	font-size: 14px;
	position: relative;
	min-height: 100%;
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
}

@media (min-width: 768px) {
	html {
		font-size: 16px;
	}
}

/* Enhanced gradient background */
html, body {
	background: linear-gradient(135deg, #dee2e6 0%, #ced4da 50%, #adb5bd 100%) !important;
	background-attachment: fixed;
	background-repeat: no-repeat;
	min-height: 100vh;
}

body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;
	margin-bottom: 60px;
}

/* Make main content grow to fill available space */
main {
	flex: 1;
	background: transparent;
}

/* Ensure footer sticks to bottom */
footer {
	margin-top: auto;
	flex-shrink: 0;
}

/* ============================================
   NAVIGATION STYLES (enhanced from site.css)
   ============================================ */
.navbar {
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	background-color: rgba(255, 255, 255, 0.95) !important;
	backdrop-filter: blur(10px);
	z-index: 1050;
	position: relative;
}

.navbar-brand {
	font-size: 1.5rem;
	background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-200) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 700;
}

	.navbar-brand img {
		margin-right: 8px;
	}

.navbar .btn-primary {
	background: var(--primary-200) !important;
	border: none !important;
	font-weight: 600;
	border-radius: 25px;
	transition: all 0.3s ease;
}

	.navbar .btn-primary:hover {
		background: var(--accent-100) !important;
		transform: translateY(-2px);
		box-shadow: 0 5px 15px rgba(255, 149, 0, 0.3);
	}

.nav-link:hover {
	font-weight: 700 !important;
	color: inherit !important;
}

.navbar-light .navbar-nav .nav-link:hover {
	color: #212529 !important;
	font-weight: 700 !important;
}

/* Dropdown menu z-index fixes */
.navbar .dropdown-menu {
	z-index: 9999 !important;
}

#userDropdown + .dropdown-menu {
	z-index: 9999 !important;
}

.dropdown-menu.show {
	z-index: 9999 !important;
}

/* ============================================
   FOOTER STYLES (from site.css)
   ============================================ */
.footer {
	background: var(--bg-100) !important;
	padding: 1rem 0;
	margin-top: auto;
	border-top: 1px solid #e9ecef;
	backdrop-filter: blur(5px);
}

footer h5, footer h6 {
	color: var(--text-100);
}

footer p {
	color: var(--text-200);
}

footer a {
	text-decoration: none;
	transition: color 0.3s ease;
	color: var(--text-200);
}

	footer a:hover {
		color: var(--accent-100) !important;
	}

.social-links a {
	display: inline-block;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--bg-200);
	text-align: center;
	line-height: 40px;
	transition: background 0.3s ease, transform 0.3s ease;
	color: var(--text-100);
}

	.social-links a:hover {
		background: var(--accent-100);
		color: var(--bg-100) !important;
		transform: translateY(-2px);
	}

footer hr {
	border-color: var(--bg-200);
}

.text-white-50 {
	color: var(--text-200) !important;
}

/* ============================================
   FOCUS STATES & FORM CONTROLS
   ============================================ */
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus {
	box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem var(--primary-200) !important;
}

.form-check-input:focus {
	border-color: var(--primary-200) !important;
	box-shadow: 0 0 0 0.25rem rgba(255, 91, 61, 0.25) !important;
}

.form-check-input:checked {
	background-color: var(--primary-200) !important;
	border-color: var(--primary-200) !important;
}

	.form-check-input:checked:focus {
		border-color: var(--primary-200) !important;
		box-shadow: 0 0 0 0.25rem rgba(255, 91, 61, 0.25) !important;
	}

.form-floating > .form-control:focus {
	border-color: var(--primary-200);
	box-shadow: 0 0 0 0.25rem rgba(255, 91, 61, 0.25);
}

/* ============================================
   BUTTON STYLES (enhanced from site.css)
   ============================================ */
.btn-primary {
	background: var(--primary-200) !important;
	border-color: var(--primary-200) !important;
	color: var(--text-100) !important;
	transition: all 0.3s ease;
}

	.btn-primary:hover {
		background: var(--accent-100) !important;
		border-color: var(--accent-100) !important;
		color: var(--text-100) !important;
		transform: translateY(-2px);
		box-shadow: 0 5px 15px rgba(255, 149, 0, 0.3);
	}

	.btn-primary:focus,
	.btn-primary:active {
		background: var(--accent-200) !important;
		border-color: var(--accent-200) !important;
		color: var(--text-100) !important;
	}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.container, .container-fluid {
	background: transparent;
}

.container-fluid {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

/* ============================================
   CARD STYLING (enhanced with site.css colors)
   ============================================ */
.card {
	border: none;
	box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
	border-radius: 0.5rem;
	margin-bottom: 1.5rem;
	background-color: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

	.card:hover {
		transform: translateY(-2px);
		box-shadow: 0 15px 30px rgba(255, 197, 153, 0.2);
	}

.card-header {
	background-color: rgba(248, 249, 250, 0.8);
	border-bottom: 1px solid #e3e6f0;
	padding: 1rem 1.25rem;
}

	.card-header h6 {
		font-weight: 600;
		margin: 0;
		color: var(--bg-100);
	}

/* Border Cards with updated colors */
.border-left-primary {
	border-left: 0.25rem solid var(--primary-200) !important;
}

.border-left-success {
	border-left: 0.25rem solid #1cc88a !important;
}

.border-left-info {
	border-left: 0.25rem solid var(--primary-300) !important;
}

.border-left-warning {
	border-left: 0.25rem solid var(--accent-100) !important;
}

.border-left-danger {
	border-left: 0.25rem solid var(--primary-200) !important;
}

/* ============================================
   WELCOME SECTION
   ============================================ */
#welcomeSection h2 {
	color: var(--bg-100);
	font-weight: 600;
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

#welcomeSection .text-muted {
	font-size: 1.2rem;
	color: var(--bg-200);
}

#currentDate, #currentTime {
	font-size: 0.875rem;
	line-height: 1.2;
	color: var(--bg-200);
}

/* ============================================
   ACTIVITY TIMELINE (enhanced styling)
   ============================================ */
.activity-timeline {
	position: relative;
	padding-left: 2.5rem;
}

	.activity-timeline::before {
		content: '';
		position: absolute;
		left: 1.25rem;
		top: 0;
		bottom: 0;
		width: 2px;
		background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-200) 100%);
	}

.activity-item {
	position: relative;
	padding-bottom: 1.5rem;
	display: flex;
	align-items: flex-start;
	margin-bottom: 1.5rem;
}

	.activity-item:not(:last-child)::after {
		content: '';
		position: absolute;
		left: 16px;
		top: 40px;
		width: 2px;
		height: calc(100% + 0.5rem);
		background-color: #e3e6f0;
	}

.activity-icon {
	position: absolute;
	left: -2.5rem;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-200) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
	flex-shrink: 0;
	color: var(--text-100);
}

.activity-content {
	background-color: rgba(255, 255, 255, 0.95);
	border-radius: 0.5rem;
	padding: 1rem;
	box-shadow: 0 0.15rem 0.5rem rgba(58, 59, 69, 0.10);
	flex: 1;
	min-width: 0;
	border-left: 3px solid var(--accent-100);
}

.activity-header {
	margin-bottom: 0.5rem;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--bg-100);
}

.activity-description {
	color: var(--bg-200);
	font-size: 0.9rem;
	line-height: 1.6;
}

/* ============================================
   NOTICES (enhanced styling)
   ============================================ */
.notice-item {
	margin-bottom: 1rem;
	padding: 1rem;
	border-radius: 0.5rem;
	background: rgba(255, 255, 255, 0.95);
	border-left: 4px solid var(--accent-100);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

	.notice-item h6 {
		margin-bottom: 0.5rem;
		font-weight: 600;
		color: var(--bg-100);
	}

	.notice-item p {
		margin-bottom: 0;
		font-size: 0.9rem;
		color: var(--bg-200);
		line-height: 1.6;
	}

/* ============================================
   PLAN CARDS (enhanced with site.css styling)
   ============================================ */
.plan-card {
	border: 2px solid #e3e6f0;
	border-radius: 12px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.95);
}

	.plan-card:hover {
		border-color: var(--primary-200);
		box-shadow: 0 15px 30px rgba(255, 197, 153, 0.2);
		transform: translateY(-5px);
	}

	.plan-card.current-plan {
		border-color: #28a745;
		background: linear-gradient(135deg, #f8fff9 0%, rgba(255, 255, 255, 0.95) 100%);
	}

	.plan-card.recommended {
		border-color: var(--primary-200);
		background: linear-gradient(135deg, rgba(243, 33, 255, 0.1) 0%, rgba(255, 255, 255, 0.95) 100%);
	}

/* Plan Badges with updated colors */
.plan-badge {
	position: absolute;
	top: -1px;
	right: -1px;
	padding: 0.25rem 0.75rem;
	border-radius: 0 12px 0 12px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	z-index: 2;
}

.current-badge {
	background: linear-gradient(135deg, #28a745, #20c997);
	color: white;
}

.recommended-badge {
	background: linear-gradient(135deg, var(--primary-100), var(--primary-200));
	color: var(--text-100);
}

/* Price Display */
.price-display {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--bg-100);
	margin-bottom: 1rem;
}

.price-period {
	font-size: 1rem;
	font-weight: 400;
	color: var(--bg-200);
}

/* Feature List */
.feature-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

	.feature-list li {
		display: flex;
		align-items: center;
		padding: 0.5rem 0;
		border-bottom: 1px solid #f8f9fa;
	}

		.feature-list li:last-child {
			border-bottom: none;
		}

		.feature-list li i {
			color: var(--accent-100);
			margin-right: 0.75rem;
			width: 16px;
			flex-shrink: 0;
		}

/* Card Enhancements */
.plan-card .card-body {
	padding: 2rem;
}

.plan-card .card-title {
	font-weight: 600;
	color: var(--bg-100);
	margin-bottom: 1rem;
}

.plan-card .card-text {
	font-size: 0.95rem;
	line-height: 1.5;
	color: var(--bg-200);
}

/* ============================================
   SEARCH FUNCTIONALITY (enhanced styling)
   ============================================ */
.search-container {
	background: rgba(255, 255, 255, 0.95);
	padding: 2rem 0;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	backdrop-filter: blur(10px);
}

.search-box {
	max-width: 600px;
	margin: 0 auto;
	position: relative;
	padding: 0 1rem;
}

.search-input {
	width: 100%;
	padding: 1rem 3rem 1rem 1rem;
	border: 2px solid #e9ecef;
	border-radius: 50px;
	font-size: 1.1rem;
	outline: none;
	transition: all 0.3s ease;
}

	.search-input:focus {
		border-color: var(--primary-200);
		box-shadow: 0 0 0 3px rgba(255, 91, 61, 0.1);
	}

.search-icon {
	position: absolute;
	right: 2rem;
	top: 50%;
	transform: translateY(-50%);
	color: var(--bg-200);
	font-size: 1.2rem;
}

/* ============================================
   MAIN CONTAINER & LAYOUT
   ============================================ */
.main-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem 1rem;
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 2rem;
}

.sidebar {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 12px;
	padding: 1.5rem;
	height: fit-content;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
	position: sticky;
	top: 2rem;
	backdrop-filter: blur(10px);
}

	.sidebar h3 {
		margin-bottom: 1rem;
		color: var(--bg-100);
		font-size: 1.1rem;
		font-weight: 600;
	}

.category-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.category-item {
	margin-bottom: 0.5rem;
}

.category-link {
	display: block;
	padding: 0.75rem 1rem;
	color: var(--bg-200);
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.3s ease;
	cursor: pointer;
}

	.category-link:hover,
	.category-link.active {
		background: linear-gradient(135deg, var(--accent-100) 0%, var(--accent-200) 100%);
		color: var(--text-100);
		transform: translateX(5px);
	}

.content {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
	backdrop-filter: blur(10px);
}

/* ============================================
   ARTICLE GRID & CARDS
   ============================================ */
.article-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 1.5rem;
	margin-top: 1rem;
}

.article-card {
	border: 1px solid #e9ecef;
	border-radius: 12px;
	padding: 1.5rem;
	transition: all 0.3s ease;
	cursor: pointer;
	background: rgba(255, 255, 255, 0.95);
}

	.article-card:hover {
		transform: translateY(-5px);
		box-shadow: 0 15px 30px rgba(255, 197, 153, 0.2);
		border-color: var(--primary-200);
	}

.article-title {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--bg-100);
}

.article-excerpt {
	color: var(--bg-200);
	font-size: 0.95rem;
	line-height: 1.6;
}

.article-tags {
	margin-top: 1rem;
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.tag {
	background: rgba(255, 149, 0, 0.1);
	color: var(--accent-200);
	padding: 0.25rem 0.75rem;
	border-radius: 20px;
	font-size: 0.8rem;
	border: 1px solid rgba(255, 149, 0, 0.2);
}

/* ============================================
   ARTICLE DETAIL & NAVIGATION
   ============================================ */
.article-detail {
	display: none;
	animation: fadeIn 0.3s ease;
}

	.article-detail.active {
		display: block;
	}

.breadcrumb {
	background: rgba(248, 249, 250, 0.9);
	padding: 1rem;
	border-radius: 8px;
	margin-bottom: 1.5rem;
	font-size: 0.9rem;
}

	.breadcrumb a {
		color: var(--primary-200);
		text-decoration: none;
	}

		.breadcrumb a:hover {
			text-decoration: underline;
			color: var(--accent-100);
		}

.back-btn {
	background: linear-gradient(135deg, var(--accent-100) 0%, var(--accent-200) 100%);
	color: var(--text-100);
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	cursor: pointer;
	font-size: 0.9rem;
	margin-bottom: 1.5rem;
	transition: all 0.3s ease;
}

	.back-btn:hover {
		background: linear-gradient(135deg, var(--primary-200) 0%, var(--accent-100) 100%);
		transform: translateY(-2px);
		box-shadow: 0 5px 15px rgba(255, 149, 0, 0.3);
	}

/* ============================================
   CODE BLOCKS & EMBEDS (enhanced from site.css)
   ============================================ */
pre {
	background-color: var(--bg-100) !important;
	border: 1px solid var(--bg-200);
	font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
	font-size: 0.875rem;
	line-height: 1.4;
	white-space: pre-wrap;
	word-wrap: break-word;
	color: var(--text-200);
	padding: 1.5rem;
	border-radius: 8px;
}

	pre code {
		background: none;
		padding: 0;
		font-size: inherit;
		color: var(--text-100) !important;
	}

code {
	color: var(--text-100) !important;
}

.code-block {
	background: var(--bg-100);
	color: var(--text-200);
	padding: 1.5rem;
	border-radius: 8px;
	font-family: 'Monaco', 'Menlo', monospace;
	position: relative;
	display: inline-block;
	margin-top: 1rem;
	border: 1px solid var(--bg-200);
}

	.code-block code {
		color: var(--text-100) !important;
	}

.copy-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	background: var(--bg-200);
	color: var(--text-100);
	border: none;
	border-radius: 4px;
	padding: 5px 8px;
	cursor: pointer;
	transition: background 0.3s ease;
}

	.copy-btn:hover {
		background: var(--bg-300);
	}

/* ============================================
   UTILITY CLASSES & ANIMATIONS
   ============================================ */
.no-results {
	text-align: center;
	padding: 3rem 1rem;
	color: var(--bg-200);
}

	.no-results i {
		font-size: 3rem;
		margin-bottom: 1rem;
		opacity: 0.5;
	}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/* Loading states */
.plan-card.selecting {
	opacity: 0.7;
	transform: scale(0.98);
	pointer-events: none;
}

.plan-card .btn.loading {
	position: relative;
	color: transparent;
}

	.plan-card .btn.loading::after {
		content: "";
		position: absolute;
		width: 16px;
		height: 16px;
		top: 50%;
		left: 50%;
		margin-left: -8px;
		margin-top: -8px;
		border: 2px solid #ffffff;
		border-radius: 50%;
		border-top-color: transparent;
		animation: spin 1s linear infinite;
	}

/* Enhanced visual feedback */
.plan-card:active {
	transform: translateY(0);
}

.plan-card.current-plan::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #28a745, #20c997);
	z-index: 1;
}

.plan-card.recommended::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--primary-100), var(--primary-200));
	z-index: 1;
}

/* Toast container positioning */
#globalToastContainer {
	z-index: 11000;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
	/* Welcome Section */
	#welcomeSection h2 {
		font-size: 2rem;
	}

	#welcomeSection .text-muted {
		font-size: 1rem;
	}

	/* Activity Timeline */
	.activity-timeline {
		padding-left: 2rem;
	}

	.activity-icon {
		left: -2rem;
		width: 2rem;
		height: 2rem;
		margin-right: 0.75rem;
	}

	.activity-content {
		padding: 0.75rem;
	}

	.activity-item {
		margin-bottom: 1rem;
	}

		.activity-item:not(:last-child)::after {
			left: 14px;
			top: 36px;
		}

	/* Layout */
	.main-container {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.sidebar {
		position: static;
	}

	.article-grid {
		grid-template-columns: 1fr;
	}

	/* Plan Cards */
	.plan-card .card-body {
		padding: 1.5rem;
	}

	.price-display {
		font-size: 2rem;
	}

	.feature-list li {
		padding: 0.375rem 0;
		font-size: 0.9rem;
	}
}

@media (max-width: 576px) {
	.plan-card {
		margin-bottom: 1.5rem;
	}

	.price-display {
		font-size: 1.75rem;
	}

	.plan-badge {
		font-size: 0.65rem;
		padding: 0.2rem 0.5rem;
	}
}

/* ============================================
   SECTION TITLES & TYPOGRAPHY
   ============================================ */
.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--bg-100);
}

.section-subtitle {
	font-size: 1.2rem;
	color: var(--bg-200);
	max-width: 600px;
	margin: 0 auto;
}

.section-padding {
	padding: 80px 0;
}

/* ============================================
   ADDITIONAL FORM ELEMENTS
   ============================================ */
.field-hint {
	font-size: 0.8rem;
	color: var(--bg-200);
	margin-top: 0.25rem;
}

.form-floating {
	margin-bottom: 1.2rem;
}

/* ============================================
   ALERTS & NOTIFICATIONS
   ============================================ */
.alert {
	animation: fadeIn 0.3s ease forwards;
	border-radius: 8px;
	border: none;
}

.highlight-box {
	background-color: rgba(255, 149, 0, 0.1);
	border-left: 4px solid var(--accent-100);
	padding: 20px;
	margin: 25px 0;
	border-radius: 8px;
}

.warning-box {
	background-color: rgba(255, 149, 0, 0.15);
	border-left: 4px solid var(--accent-100);
	padding: 20px;
	margin: 25px 0;
	border-radius: 8px;
}

.contact-info {
	background-color: rgba(231, 243, 255, 0.9);
	border-radius: 8px;
	padding: 20px;
	margin: 30px 0;
	border-left: 4px solid var(--primary-300);
}

.data-table {
	background-color: rgba(248, 249, 250, 0.9);
	border-radius: 8px;
	padding: 20px;
	margin: 20px 0;
	border: 1px solid #e9ecef;
}

/* ============================================
   BENEFIT ITEMS & STATS (from site.css)
   ============================================ */
.benefit-item {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.benefit-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent-100) 0%, var(--accent-200) 100%);
	color: var(--text-100);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	flex-shrink: 0;
}

.benefit-text h5 {
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--bg-100);
}

.benefit-text p {
	color: var(--bg-200);
	line-height: 1.6;
	margin: 0;
}

.benefits-content h2 {
	color: var(--bg-100);
	margin-bottom: 1rem;
}

.benefits-content .lead {
	color: var(--bg-200);
}

/* Stats */
.benefits-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.stat-card {
	background: rgba(255, 255, 255, 0.95);
	padding: 2rem;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
	border: 1px solid #f0f0f0;
	transition: all 0.3s ease;
}

	.stat-card:hover {
		border-color: var(--primary-300);
		box-shadow: 0 12px 32px rgba(255, 197, 153, 0.2);
		transform: translateY(-2px);
	}

.stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--accent-100);
	margin-bottom: 0.5rem;
}

.stat-label {
	color: var(--bg-200);
	font-weight: 500;
}

/* ============================================
   FEATURE CARDS (from site.css)
   ============================================ */
.feature-card {
	text-align: center;
	padding: 2rem 1.5rem;
	height: 100%;
	border-radius: 12px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	background: rgba(255, 255, 255, 0.95);
	border: 1px solid #f0f0f0;
}

	.feature-card:hover {
		transform: translateY(-5px);
		box-shadow: 0 15px 30px rgba(255, 197, 153, 0.2);
		border-color: var(--primary-300);
	}

.feature-icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent-100) 0%, var(--accent-200) 100%);
	color: var(--text-100);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 2rem;
}

.feature-card h4 {
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--bg-100);
}

.feature-card p {
	color: var(--bg-200);
	line-height: 1.6;
}

/* ============================================
   STEP CARDS & TIMELINE (enhanced)
   ============================================ */
.step-card {
	position: relative;
	padding: 2rem 1rem;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 12px;
	text-align: center;
}

.step-number {
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, var(--accent-100) 0%, var(--accent-200) 100%);
	color: var(--text-100);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.2rem;
}

.step-icon {
	margin: 2rem 0 1.5rem;
}

	.step-icon i {
		font-size: 3rem;
		color: var(--bg-300);
	}

.step-card h4 {
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--bg-100);
}

.step-card p {
	color: var(--bg-200);
	line-height: 1.6;
}

/* Timeline enhancements */
.timeline {
	position: relative;
	padding: 2rem 0;
}

	.timeline::before {
		content: '';
		position: absolute;
		left: 50%;
		top: 0;
		bottom: 0;
		width: 2px;
		background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-200) 100%);
		transform: translateX(-50%);
	}

.timeline-item {
	position: relative;
	margin-bottom: 3rem;
}

.timeline-content {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 16px;
	padding: 2rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	position: relative;
	width: 45%;
	border-left: 4px solid var(--accent-100);
}

.timeline-item:nth-child(odd) .timeline-content {
	margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
	margin-right: auto;
}

.timeline-dot {
	position: absolute;
	left: 50%;
	top: 2rem;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--primary-100);
	transform: translateX(-50%);
	z-index: 2;
}

/* ============================================
   TEAM CARDS (from site.css)
   ============================================ */
.team-card {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 16px;
	padding: 2rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: transform 0.3s ease;
}

	.team-card:hover {
		transform: translateY(-5px);
		box-shadow: 0 15px 30px rgba(255, 197, 153, 0.2);
	}

.team-avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary-100), var(--accent-100));
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 2.5rem;
	color: var(--text-100);
}

/* ============================================
   SUBSCRIPTION & ORDER SUMMARY
   ============================================ */
.subscription-card {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
	background: rgba(255, 255, 255, 0.95);
}

	.subscription-card:hover {
		transform: translateY(-5px);
		box-shadow: 0 10px 20px rgba(0,0,0,0.1);
	}

.card-highlight {
	border: 2px solid var(--primary-100);
	transform: scale(1.05);
	position: relative;
	z-index: 1;
}

.popular-badge {
	position: absolute;
	top: -12px;
	right: 20px;
	background: var(--primary-200) !important;
	border-color: var(--primary-200) !important;
	color: var(--text-100) !important;
	padding: 5px 15px;
	border-radius: 20px;
	font-weight: bold;
	font-size: 0.8rem;
}

.select-plan-btn {
	width: 100%;
	padding: 12px;
	background: var(--primary-200) !important;
	color: var(--text-100) !important;
	border: none;
	border-radius: 8px;
	transition: all 0.3s ease;
}

	.select-plan-btn:hover {
		background: var(--accent-100) !important;
		border-color: var(--accent-100) !important;
		color: var(--text-100) !important;
		transform: translateY(-2px);
		box-shadow: 0 8px 20px rgba(219, 28, 17, 0.3);
	}

/* Order Summary */
.order-summary {
	background-color: rgba(248, 249, 250, 0.9);
	border-radius: 8px;
	padding: 20px;
}

.summary-item {
	display: flex;
	justify-content: space-between;
	margin-bottom: 12px;
}

.summary-total {
	font-weight: bold;
	border-top: 1px solid #dee2e6;
	padding-top: 12px;
	margin-top: 12px;
}

/* Plan Summary */
.plan-summary {
	background-color: rgba(248, 249, 250, 0.9);
	border-radius: 8px;
	padding: 15px;
	margin-bottom: 20px;
	border-left: 4px solid var(--primary-100);
}

.change-plan-link {
	font-size: 0.85rem;
	color: var(--primary-100);
}

	.change-plan-link:hover {
		color: var(--primary-200);
	}

/* ============================================
   PROGRESS STEPS (from site.css)
   ============================================ */
.progress-step {
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
}

.step-item {
	position: relative;
	text-align: center;
	flex: 1;
	max-width: 200px;
}

.step-circle {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	background-color: #e9ecef;
	color: #6c757d;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 10px auto;
	font-weight: bold;
	z-index: 2;
	position: relative;
}

.step-title {
	font-size: 0.85rem;
	color: #6c757d;
}

.step-item.active .step-circle {
	background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-200) 100%);
	color: var(--text-100);
}

.step-item.active .step-title {
	color: var(--bg-100);
	font-weight: bold;
}

.step-item.completed .step-circle {
	background-color: #28a745;
	color: white;
}

.step-line {
	position: absolute;
	top: 17px;
	height: 2px;
	width: 100%;
	background-color: #e9ecef;
	left: 50%;
	z-index: 1;
}

.step-item:first-child .step-line {
	display: none;
}

/* ============================================
   PAYMENT & SECURITY
   ============================================ */
.payment-card {
	border: 1px solid #dee2e6;
	border-radius: 8px;
	padding: 10px 15px;
	margin-bottom: 20px;
	transition: all 0.2s ease;
	background: rgba(255, 255, 255, 0.95);
}

	.payment-card:hover, .payment-card.active {
		border-color: var(--primary-100);
		background-color: rgba(248, 249, 250, 0.9);
	}

	.payment-card.active {
		box-shadow: 0 0 0 1px var(--primary-100);
	}

.card-logo {
	height: 30px;
	margin-right: 10px;
}

.card-logos {
	margin-bottom: 15px;
}

.security-info {
	display: flex;
	align-items: center;
	margin-top: 20px;
	background-color: rgba(248, 249, 250, 0.9);
	padding: 10px;
	border-radius: 5px;
}

	.security-info i {
		font-size: 1.2rem;
		color: #28a745;
		margin-right: 10px;
	}

/* ============================================
   COOKIE & TOGGLE CONTROLS
   ============================================ */
.toggle-switch {
	position: relative;
	width: 60px;
	height: 34px;
	margin: 0;
}

	.toggle-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: .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%;
	}

input:checked + .slider {
	background-color: var(--primary-200);
}

	input:checked + .slider:before {
		transform: translateX(26px);
	}

.cookie-preference-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
	border-bottom: 1px solid #dee2e6;
}

	.cookie-preference-item:last-child {
		border-bottom: none;
	}

.cookie-preference-info {
	flex: 1;
	margin-right: 1rem;
}

	.cookie-preference-info h6 {
		margin-bottom: 0.25rem;
		color: var(--bg-100);
	}

	.cookie-preference-info small {
		color: var(--bg-200);
	}

/* ============================================
   ADDITIONAL RESPONSIVE BREAKPOINTS
   ============================================ */
@media (max-width: 768px) {
	.timeline::before {
		left: 2rem;
	}

	.timeline-content {
		width: calc(100% - 4rem);
		margin-left: 4rem !important;
		margin-right: 0 !important;
	}

	.timeline-dot {
		left: 2rem;
	}

	.benefits-stats {
		grid-template-columns: 1fr;
	}

	.section-title {
		font-size: 2rem;
	}
}
