:root {
	--se-bg-primary: #121212;
	--se-bg-secondary: #1e1e1e;
	--se-bg-card: #181818;
	--se-accent-purple: #bb86fc;
	--se-accent-teal: #03dac6;
	--se-accent-amber: #ffb74d;
	--se-text-primary: #e0e0e0;
	--se-text-secondary: #b0b0b0;
	--se-text-muted: #808080;
	--se-border: #333333;
	--se-shadow: rgba(187, 134, 252, 0.2);
	--se-glow: rgba(187, 134, 252, 0.4);
	--se-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--se-radius: 12px;
	--se-spacing: 2rem;
}

/* Reset et base */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
		sans-serif;
	background: var(--se-bg-primary);
	color: var(--se-text-primary);
	line-height: 1.6;
	overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 1rem;
}

ul,
ol {
	padding-left: 1.2rem;
}

h1 {
	font-size: 3.5rem;
}
h2 {
	font-size: 2.5rem;
}
h3 {
	font-size: 2rem;
}
h4 {
	font-size: 1.5rem;
}
h5 {
	font-size: 1.25rem;
}
h6 {
	font-size: 1.1rem;
}

p {
	margin-bottom: 1rem;
	color: var(--se-text-secondary);
}

a {
	color: var(--se-accent-purple);
	text-decoration: none;
	transition: var(--se-transition);
}

a:hover {
	color: var(--se-accent-teal);
	text-shadow: 0 0 8px currentColor;
}

/* Container et layout */
.se-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.se-section {
	padding: 5rem 0;
	position: relative;
}

.se-grid {
	display: grid;
	gap: 2rem;
}

.se-grid-1 {
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.se-grid-2 {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.se-grid-3 {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.se-grid-4 {
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Header */
.se-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(30, 30, 30, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	transition: var(--se-transition);
	border-bottom: 1px solid var(--se-border);
}

.se-header.scrolled {
	box-shadow: 0 4px 20px rgba(187, 134, 252, 0.3);
}

.se-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 0;
}

.se-logo {
	font-family: 'Poppins', sans-serif;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--se-accent-purple);
	text-shadow: 0 0 10px var(--se-glow);
	transition: var(--se-transition);
}

.se-logo:hover {
	transform: scale(1.05);
	text-shadow: 0 0 15px var(--se-glow);
}

.se-nav-menu {
	display: flex;
	list-style: none;
}

.se-nav-link {
	color: var(--se-text-primary);
	font-weight: 500;
	padding: 0.5rem 1rem;
	border-radius: 8px;
	transition: var(--se-transition);
	position: relative;
}

.se-nav-link:hover,
.se-nav-link.active {
	color: var(--se-accent-purple);
	background: rgba(187, 134, 252, 0.1);
	box-shadow: 0 0 15px rgba(187, 134, 252, 0.2);
}

.se-social-icons {
	display: flex;
	gap: 1rem;
}

.se-social-icons-link {
	display: flex;
	gap: 1rem;
}

.se-social-icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--se-bg-secondary);
	color: var(--se-accent-teal);
	border: 1px solid var(--se-border);
	transition: var(--se-transition);
}

.se-social-icon:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(3, 218, 198, 0.3);
	background: var(--se-accent-teal);
	color: var(--se-bg-primary);
}

.se-nav-toggle {
	display: none;
	flex-direction: column;
	gap: 4px;
	cursor: pointer;
}

.se-nav-toggle span {
	width: 25px;
	height: 3px;
	background: var(--se-text-primary);
	transition: var(--se-transition);
}

/* Hero Section */
.se-hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	background: linear-gradient(
			135deg,
			rgba(187, 134, 252, 0.2) 0%,
			rgba(3, 218, 198, 0.2) 100%
		),
		radial-gradient(
			circle at 50% 50%,
			rgba(187, 134, 252, 0.1) 0%,
			transparent 70%
		);
	position: relative;
	overflow: hidden;
}

.se-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('assets/se-hero.webp') top/cover;
	background-attachment: fixed;
	opacity: 0.3;
}

.se-hero-content {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.se-hero h1 {
	font-size: 4rem;
	margin-bottom: 1.5rem;
	background: linear-gradient(
		135deg,
		var(--se-accent-purple),
		var(--se-accent-teal)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 0 30px rgba(187, 134, 252, 0.5);
}

.se-hero p {
	font-size: 1.3rem;
	margin-bottom: 2.5rem;
	color: var(--se-text-secondary);
}

.se-hero-buttons {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* Buttons */
.se-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	border-radius: var(--se-radius);
	font-weight: 600;
	text-decoration: none;
	transition: var(--se-transition);
	border: 2px solid transparent;
	position: relative;
	overflow: hidden;
}

.se-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transition: left 0.5s;
}

.se-btn:hover::before {
	left: 100%;
}

.se-btn-primary {
	background: linear-gradient(
		135deg,
		var(--se-accent-purple),
		var(--se-accent-teal)
	);
	color: white;
	box-shadow: 0 4px 15px rgba(187, 134, 252, 0.4);
}

.se-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(187, 134, 252, 0.6);
	color: white;
}

.se-btn-secondary {
	background: transparent;
	color: var(--se-accent-purple);
	border-color: var(--se-accent-purple);
}

.se-btn-secondary:hover {
	background: var(--se-accent-purple);
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(187, 134, 252, 0.4);
}

/* Cards */
.se-card {
	background: var(--se-bg-secondary);
	border-radius: var(--se-radius);
	padding: 2rem;
	border: 1px solid var(--se-border);
	transition: var(--se-transition);
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.se-card-link {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.se-card-link a {
	margin-top: auto !important;
}

.se-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(
		90deg,
		var(--se-accent-purple),
		var(--se-accent-teal)
	);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.se-card:hover::before {
	transform: scaleX(1);
}

.se-card div img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.se-card:hover {
	transform: translateY(-5px);
	border-color: var(--se-accent-purple);
	box-shadow: 0 10px 30px rgba(187, 134, 252, 0.3);
}

.se-card-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(
		135deg,
		var(--se-accent-purple),
		var(--se-accent-teal)
	);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	font-size: 1.5rem;
	color: white;
}

.se-card-title {
	color: var(--se-text-primary);
	margin-bottom: 1rem;
}

.se-card-text {
	color: var(--se-text-secondary);
	line-height: 1.6;
}

/* Section Titles */
.se-section-title {
	text-align: center;
	margin-bottom: 1rem;
	color: var(--se-text-primary);
	position: relative;
}

.se-section-title::after {
	content: '';
	width: 80px;
	height: 3px;
	background: linear-gradient(
		90deg,
		var(--se-accent-purple),
		var(--se-accent-teal)
	);
	display: block;
	margin: 1rem auto;
	border-radius: 2px;
}

.se-section-subtitle {
	text-align: center;
	color: var(--se-text-secondary);
	font-size: 1.2rem;
	margin-bottom: 3rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* Timeline */
.se-timeline {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
}

.se-timeline::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(
		180deg,
		var(--se-accent-purple),
		var(--se-accent-teal)
	);
	transform: translateX(-50%);
}

.se-timeline-item {
	position: relative;
	margin-bottom: 3rem;
	width: 50%;
}

.se-timeline-item:nth-child(odd) {
	left: 0;
	padding-right: 2rem;
}

.se-timeline-item:nth-child(even) {
	left: 50%;
	padding-left: 2rem;
}

.se-timeline-content {
	background: var(--se-bg-secondary);
	padding: 1.5rem;
	border-radius: var(--se-radius);
	border: 1px solid var(--se-border);
	position: relative;
	transition: var(--se-transition);
}

.se-timeline-content:hover {
	border-color: var(--se-accent-purple);
	box-shadow: 0 5px 20px rgba(187, 134, 252, 0.2);
}

.se-timeline-content::before {
	content: '';
	position: absolute;
	top: 20px;
	width: 0;
	height: 0;
	border: 10px solid transparent;
}

.se-timeline-item:nth-child(odd) .se-timeline-content::before {
	right: -20px;
	border-left-color: var(--se-border);
}

.se-timeline-item:nth-child(even) .se-timeline-content::before {
	left: -20px;
	border-right-color: var(--se-border);
}

.se-timeline-year {
	color: var(--se-accent-purple);
	font-weight: 700;
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
}

.se-timeline-title {
	color: var(--se-text-primary);
	margin-bottom: 0.5rem;
}

.se-timeline-text {
	color: var(--se-text-secondary);
	line-height: 1.5;
}

/* Pricing */
.se-pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.se-pricing-card {
	background: var(--se-bg-secondary);
	border-radius: var(--se-radius);
	padding: 2.5rem;
	border: 1px solid var(--se-border);
	text-align: center;
	position: relative;
	transition: var(--se-transition);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.se-pricing-card.featured {
	border-color: var(--se-accent-purple);
	box-shadow: 0 10px 30px rgba(187, 134, 252, 0.3);
	transform: scale(1.05);
}

.se-pricing-card:hover {
	transform: translateY(-10px) scale(1.02);
	border-color: var(--se-accent-teal);
	box-shadow: 0 15px 40px rgba(3, 218, 198, 0.3);
}

.se-pricing-title {
	color: var(--se-text-primary);
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.se-pricing-price {
	color: var(--se-accent-purple);
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.se-pricing-currency {
	vertical-align: top;
}

.se-pricing-features {
	list-style: none;
	margin: 2rem 0;
	text-align: left;
}

.se-pricing-features li {
	padding: 0.5rem 0;
	color: var(--se-text-secondary);
	position: relative;
	padding-left: 2rem;
}

.se-pricing-features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--se-accent-teal);
	font-weight: bold;
}

/* Forms */
.se-form {
	max-width: 600px;
	margin: 0 auto;
}

.se-form-group {
	margin-bottom: 1.5rem;
}

.se-form-label {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--se-text-primary);
	font-weight: 500;
}

.se-form-input,
.se-form-textarea,
.se-form-select {
	width: 100%;
	padding: 1rem;
	background: var(--se-bg-secondary);
	border: 1px solid var(--se-border);
	border-radius: 8px;
	color: var(--se-text-primary);
	font-size: 1rem;
	transition: var(--se-transition);
}

.se-form-input:focus,
.se-form-textarea:focus,
.se-form-select:focus {
	outline: none;
	border-color: var(--se-accent-purple);
	box-shadow: 0 0 0 3px rgba(187, 134, 252, 0.1);
}

.se-form-textarea {
	min-height: 120px;
	resize: vertical;
}

.se-form-error {
	color: #ff6b6b;
	font-size: 0.875rem;
	margin-top: 0.25rem;
	display: none;
}

.se-form-success {
	background: rgba(3, 218, 198, 0.1);
	border: 1px solid var(--se-accent-teal);
	border-radius: 8px;
	padding: 1rem;
	color: var(--se-accent-teal);
	text-align: center;
	margin-bottom: 1rem;
	display: none;
}

/* Chart Container */
.se-chart-container {
	background: var(--se-bg-secondary);
	border-radius: var(--se-radius);
	padding: 2rem;
	border: 1px solid var(--se-border);
}

.se-chart-container canvas {
	width: 100% !important;
	max-height: 730px;
	height: 100% !important;
	object-fit: cover !important;
}

.se-chart-title {
	text-align: center;
	color: var(--se-text-primary);
	margin-bottom: 1.5rem;
}

/* Footer */
.se-footer {
	background: var(--se-bg-card);
	border-top: 1px solid var(--se-border);
	padding: 3rem 0 1rem;
}

.se-footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.se-footer-section h4 {
	color: var(--se-text-primary);
	margin-bottom: 1rem;
	font-size: 1.2rem;
}

.se-footer-links {
	list-style: none;
	padding-left: 0;
}

.se-footer-links li {
	margin-bottom: 0.5rem;
}

.se-footer-links a {
	color: var(--se-text-secondary);
	transition: var(--se-transition);
}

.se-footer-links a:hover {
	color: var(--se-accent-purple);
}

.se-footer-bottom {
	border-top: 1px solid var(--se-border);
	padding-top: 1rem;
	text-align: center;
	color: var(--se-text-muted);
}

/* Cookie Popup */
.se-cookie-popup {
	display: none;
	position: fixed;
	bottom: 2rem;
	left: 2rem;
	right: 2rem;
	background: var(--se-bg-secondary);
	border: 1px solid var(--se-border);
	border-radius: var(--se-radius);
	padding: 1.5rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	z-index: 10000;
	transform: translateY(100px);
	opacity: 0;
	transition: var(--se-transition);
}

.se-cookie-popup.show {
	transform: translateY(0);
	opacity: 1;
	display: block;
}

.se-cookie-content {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.se-cookie-text {
	flex: 1;
	color: var(--se-text-secondary);
}

.se-cookie-text a {
	color: var(--se-accent-purple);
}

.se-cookie-actions {
	display: flex;
	gap: 1rem;
}

.se-cookie-btn {
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-weight: 500;
	transition: var(--se-transition);
}

.se-cookie-btn.accept {
	background: var(--se-accent-purple);
	color: white;
}

.se-cookie-btn.accept:hover {
	background: var(--se-accent-teal);
}

/* Animations */
@keyframes se-float {
	0% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-20px);
	}
	100% {
		transform: translateY(0px);
	}
}

@keyframes se-fade-in {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes se-slide-in-left {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes se-slide-in-right {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes se-scale-in {
	from {
		opacity: 0;
		transform: scale(0.8);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

/* Progress Bar */
.se-progress-bar {
	position: fixed;
	top: 0;
	left: 0;
	width: 0%;
	height: 3px;
	background: linear-gradient(
		90deg,
		var(--se-accent-purple),
		var(--se-accent-teal)
	);
	z-index: 10001;
	transition: width 0.1s ease;
}

/* Modal */
.se-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transition: var(--se-transition);
}

.se-modal.active {
	opacity: 1;
	visibility: visible;
}

.se-modal-content {
	background: var(--se-bg-secondary);
	border-radius: var(--se-radius);
	padding: 2rem;
	max-width: 600px;
	width: 90%;
	position: relative;
	transform: scale(0.8);
	transition: var(--se-transition);
}

.se-modal.active .se-modal-content {
	transform: scale(1);
}

.se-modal-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: none;
	border: none;
	color: var(--se-text-secondary);
	font-size: 1.5rem;
	cursor: pointer;
	transition: var(--se-transition);
}

.se-modal-close:hover {
	color: var(--se-accent-purple);
}

/* Tabs */
.se-tabs {
	margin: 2rem 0;
}

.se-tab-nav {
	display: flex;
	border-bottom: 1px solid var(--se-border);
	margin-bottom: 2rem;
	flex-wrap: wrap;
}

.se-tab-btn {
	background: none;
	border: none;
	padding: 1rem 2rem;
	color: var(--se-text-secondary);
	cursor: pointer;
	border-bottom: 2px solid transparent;
	transition: var(--se-transition);
	font-size: 1rem;
}

.se-tab-btn.active,
.se-tab-btn:hover {
	color: var(--se-accent-purple);
	border-bottom-color: var(--se-accent-purple);
}

.se-tab-content {
	display: none;
	animation: se-fade-in 0.5s ease-out;
}

.se-tab-content.active {
	display: block;
}

/* Responsive Design */
@media (max-width: 1040px) {
	.se-nav-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: rgba(30, 30, 30, 0.98);
		flex-direction: column;
		padding: 1rem;
		gap: 2rem;
		border-top: 1px solid var(--se-border);
	}

	.se-nav-menu.active {
		display: flex;
	}

	.se-nav-toggle {
		display: flex;
	}

	.se-nav-toggle.active span:nth-child(1) {
		transform: rotate(45deg) translate(3px, 1px);
	}

	.se-nav-toggle.active span:nth-child(2) {
		opacity: 0;
	}

	.se-nav-toggle.active span:nth-child(3) {
		transform: rotate(-45deg) translate(8px, -8px);
	}
}

@media (max-width: 768px) {
	:root {
		--se-spacing: 1rem;
	}

	.se-container {
		padding: 0 1rem;
	}

	.se-section {
		padding: 3rem 0;
	}

	.se-hero h1 {
		font-size: 2.5rem;
	}

	.se-hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.se-timeline::before {
		left: 20px;
	}

	.se-timeline-item {
		width: 100%;
		left: 0 !important;
		padding-left: 50px !important;
		padding-right: 0 !important;
	}

	.se-timeline-content::before {
		left: -20px !important;
		border-right-color: var(--se-border) !important;
		border-left-color: transparent !important;
	}

	.se-pricing-card.featured {
		transform: none;
	}

	.se-cookie-popup {
		left: 1rem;
		right: 1rem;
		bottom: 1rem;
	}

	.se-cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.se-modal-content {
		width: 95%;
		padding: 1.5rem;
	}

	h1 {
		font-size: 2.5rem;
	}
	h2 {
		font-size: 2rem;
	}
	h3 {
		font-size: 1.5rem;
	}

	.se-grid-1 {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.se-hero h1 {
		font-size: 2rem;
	}

	.se-btn {
		padding: 0.75rem 1.5rem;
		font-size: 0.9rem;
	}

	.se-card {
		padding: 1.5rem;
	}

	.se-grid-3,
	.se-grid-4 {
		grid-template-columns: 1fr;
	}

	.se-social-icons {
		gap: 0.5rem;
	}

	.se-social-icon {
		width: 35px;
		height: 35px;
		font-size: 0.9rem;
	}
}

/* Print Styles */
@media print {
	.se-header,
	.se-cookie-popup,
	.se-modal {
		display: none;
	}

	body {
		background: white;
		color: black;
	}

	.se-section {
		padding: 2rem 0;
	}
}

/* Legal Pages Styles */
.se-legal-hero {
	padding: 8rem 0 4rem;
	background: linear-gradient(
		135deg,
		var(--se-bg-primary) 0%,
		var(--se-bg-secondary) 100%
	);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.se-legal-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
		circle at 50% 50%,
		rgba(187, 134, 252, 0.1) 0%,
		transparent 50%
	);
	pointer-events: none;
}

.se-legal-hero-content {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.se-legal-hero h1 {
	font-size: 3.5rem;
	font-weight: 700;
	color: var(--se-text-primary);
	margin-bottom: 1.5rem;
	background: linear-gradient(
		135deg,
		var(--se-accent-purple),
		var(--se-accent-teal)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.se-legal-hero p {
	font-size: 1.3rem;
	color: var(--se-text-secondary);
	margin-bottom: 2rem;
	line-height: 1.6;
}

.se-legal-meta {
	display: flex;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.se-legal-meta span {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--se-text-muted);
	font-size: 0.95rem;
}

.se-legal-meta i {
	color: var(--se-accent-teal);
}

.se-legal-content {
	padding: 4rem 0;
	background: var(--se-bg-primary);
}

.se-legal-wrapper {
	display: grid;
	grid-template-columns: 250px 1fr;
	gap: 4rem;
	max-width: 1400px;
	margin: 0 auto;
}

.se-legal-navigation {
	position: sticky;
	top: 6rem;
	height: fit-content;
	background: var(--se-bg-secondary);
	padding: 2rem;
	border-radius: var(--se-radius);
	border: 1px solid var(--se-border);
}

.se-legal-navigation h3 {
	color: var(--se-text-primary);
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid var(--se-accent-purple);
}

.se-legal-navigation ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.se-legal-navigation li {
	margin-bottom: 0.75rem;
}

.se-legal-navigation a {
	color: var(--se-text-secondary);
	text-decoration: none;
	font-size: 0.9rem;
	line-height: 1.4;
	transition: var(--se-transition);
	display: block;
	padding: 0.5rem 0;
	border-left: 2px solid transparent;
	padding-left: 1rem;
}

.se-legal-navigation a:hover {
	color: var(--se-accent-purple);
	border-left-color: var(--se-accent-purple);
}

.se-legal-main {
	max-width: 800px;
}

.se-legal-article {
	background: var(--se-bg-secondary);
	border-radius: var(--se-radius);
	border: 1px solid var(--se-border);
	overflow: hidden;
}

.se-legal-section {
	padding: 3rem;
	border-bottom: 1px solid var(--se-border);
}

.se-legal-section:last-child {
	border-bottom: none;
}

.se-legal-section h2 {
	color: var(--se-text-primary);
	font-size: 1.8rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.se-section-number {
	background: linear-gradient(
		135deg,
		var(--se-accent-purple),
		var(--se-accent-teal)
	);
	color: white;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: 700;
	flex-shrink: 0;
}

.se-legal-section p {
	color: var(--se-text-secondary);
	line-height: 1.7;
	margin-bottom: 1.5rem;
	font-size: 1rem;
}

.se-legal-section p:last-child {
	margin-bottom: 0;
}

.se-legal-section ul {
	margin: 1.5rem 0;
	padding-left: 1.5rem;
}

.se-legal-section li {
	color: var(--se-text-secondary);
	line-height: 1.6;
	margin-bottom: 0.75rem;
}

.se-legal-section li strong {
	color: var(--se-text-primary);
	font-weight: 600;
}

.se-legal-section a {
	color: var(--se-accent-purple);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: var(--se-transition);
}

.se-legal-section a:hover {
	color: var(--se-accent-teal);
	border-bottom-color: var(--se-accent-teal);
}

.se-contact-info {
	background: rgba(187, 134, 252, 0.1);
	padding: 2rem;
	border-radius: 8px;
	border: 1px solid rgba(187, 134, 252, 0.2);
	margin: 2rem 0;
}

.se-contact-info p {
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.se-contact-info p:last-child {
	margin-bottom: 0;
}

.se-contact-info strong {
	color: var(--se-accent-purple);
	font-size: 1.1rem;
}

/* Responsive Design for Legal Pages */
@media (max-width: 1024px) {
	.se-legal-wrapper {
		grid-template-columns: 200px 1fr;
		gap: 2rem;
	}

	.se-legal-navigation {
		padding: 1.5rem;
	}

	.se-legal-section {
		padding: 2rem;
	}
}

@media (max-width: 768px) {
	.se-legal-hero h1 {
		font-size: 2.5rem;
	}

	.se-legal-hero p {
		font-size: 1.1rem;
	}

	.se-legal-meta {
		gap: 1rem;
	}

	.se-legal-wrapper {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.se-legal-navigation {
		position: static;
		order: -1;
		padding: 1.5rem;
	}

	.se-legal-navigation h3 {
		margin-bottom: 1rem;
	}

	.se-legal-navigation ul {
		display: flex;
		flex-wrap: wrap;
		gap: 0.5rem;
	}

	.se-legal-navigation li {
		margin-bottom: 0;
	}

	.se-legal-navigation a {
		background: var(--se-bg-primary);
		padding: 0.5rem 1rem;
		border-radius: 20px;
		border: 1px solid var(--se-border);
		font-size: 0.85rem;
		white-space: nowrap;
	}

	.se-legal-section {
		padding: 1.5rem;
	}

	.se-legal-section h2 {
		font-size: 1.5rem;
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
	}

	.se-section-number {
		width: 2.5rem;
		height: 2.5rem;
		font-size: 1rem;
	}

	.se-contact-info {
		padding: 1.5rem;
	}

	.se-contact-info p {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.25rem;
	}
}

@media (max-width: 480px) {
	.se-legal-hero h1 {
		font-size: 1.5rem;
	}

	.se-legal-hero p {
		font-size: 1rem;
	}

	.se-legal-meta {
		flex-direction: column;
		gap: 0.75rem;
	}

	.se-legal-navigation {
		padding: 1rem;
	}

	.se-legal-navigation ul {
		flex-direction: column;
		flex-wrap: nowrap;
	}

	.se-legal-navigation a {
		text-align: center;
	}

	.se-legal-section {
		padding: 1rem;
	}

	.se-social-icons {
		display: none;
	}

	.se-legal-section h2 {
		font-size: 1.3rem;
	}

	.se-legal-section ul {
		padding-left: 1rem;
	}

	.se-contact-info {
		padding: 1rem;
	}

	.se-tab-nav {
		flex-direction: column;
		flex-wrap: nowrap;
	}

	.se-grid-2,
	.se-pricing-grid,
	.se-legal-wrapper {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}

	.se-legal-meta {
		justify-content: center;
		align-items: center;
	}

	.se-pricing-card {
		padding: 2rem;
	}
}
