* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

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

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		sans-serif;
	background-color: #0e0e0e;
	color: #ededed;
	line-height: 1.6;
	overflow-x: hidden;
}

/* ========================================
   TYPOGRAPHY
======================================== */
.am-heading-primary {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 3.5rem;
	line-height: 1.2;
	color: #ffc107;
	text-shadow: 0 0 20px rgba(41, 182, 246, 0.3);
	margin-bottom: 1.5rem;
}

.am-heading-secondary {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 2.5rem;
	line-height: 1.3;
	color: #ededed;
	margin-bottom: 1rem;
}

.am-heading-tertiary {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 1.8rem;
	line-height: 1.4;
	color: #fdd835;
	margin-bottom: 0.8rem;
}

.am-text-large {
	font-size: 1.25rem;
	color: #ededed;
	opacity: 0.9;
	margin-bottom: 1rem;
}

.am-text-regular {
	font-size: 1rem;
	color: #ededed;
	opacity: 0.8;
	line-height: 1.7;
}

.am-text-small {
	font-size: 0.875rem;
	color: #ededed;
	opacity: 0.7;
}

/* ========================================
   LAYOUT UTILITIES
======================================== */
.am-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.am-container-wide {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
}

.am-section {
	padding: 80px 0;
}

.am-section-large {
	padding: 120px 0;
}

.am-grid-2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

.am-grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.am-grid-4 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.am-flex-center {
	display: flex;
	justify-content: center;
	align-items: center;
}

.am-flex-between {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.am-text-center {
	text-align: center;
}

/* ========================================
   BUTTONS
======================================== */
.am-btn {
	display: inline-block;
	padding: 12px 30px;
	border: none;
	border-radius: 8px;
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	font-size: 1rem;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.am-btn-primary {
	background: linear-gradient(135deg, #ffc107, #1e88e5);
	color: #ffffff;
	box-shadow: 0 4px 20px rgba(41, 182, 246, 0.3);
}

.am-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(41, 182, 246, 0.4);
}

.am-btn-secondary {
	background: transparent;
	color: #fdd835;
	border: 2px solid #fdd835;
}

.am-btn-secondary:hover {
	background: #fdd835;
	color: #0e0e0e;
	transform: translateY(-2px);
}

.am-btn-accent {
	background: linear-gradient(135deg, #ab47bc, #8e24aa);
	color: #ffffff;
	box-shadow: 0 4px 20px rgba(171, 71, 188, 0.3);
}

.am-btn-accent:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(171, 71, 188, 0.4);
}

/* ========================================
   HEADER
======================================== */
.am-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(14, 14, 14, 0.95);
	backdrop-filter: blur(20px);
	z-index: 1000;
	padding: 1rem 0;
	transition: all 0.3s ease;
}

.am-header.am-scrolled {
	background: rgba(14, 14, 14, 0.98);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.am-header-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.am-logo {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 2rem;
	color: #ffc107;
	text-decoration: none;
	text-shadow: 0 0 20px rgba(41, 182, 246, 0.3);
	transition: all 0.3s ease;
}

.am-logo:hover {
	text-shadow: 0 0 30px rgba(41, 182, 246, 0.5);
	transform: scale(1.05);
}

.am-nav {
	display: flex;
	gap: 2rem;
}

.am-nav-link {
	color: #ededed;
	text-decoration: none;
	font-weight: 500;
	padding: 0.5rem 1rem;
	border-radius: 6px;
	transition: all 0.3s ease;
	position: relative;
}

.am-nav-link:hover {
	color: #ffc107;
	background: rgba(41, 182, 246, 0.1);
}

.am-nav-link::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 50%;
	width: 0;
	height: 2px;
	background: #ffc107;
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

.am-nav-link:hover::after {
	width: 80%;
}

/* Mobile Menu */
.am-mobile-menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	position: absolute;
	right: 2rem;
	top: 50%;
	transform: translateY(-50%);
}

.am-mobile-menu-toggle span {
	width: 25px;
	height: 3px;
	background: #ffc107;
	margin: 3px 0;
	transition: all 0.3s ease;
}

.am-mobile-nav {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: rgba(14, 14, 14, 0.98);
	backdrop-filter: blur(20px);
	padding: 2rem;
	flex-direction: column;
	gap: 1rem;
}

.am-mobile-nav.am-active {
	display: flex;
}

/* ========================================
   HERO SECTION
======================================== */
.am-hero {
	height: 100vh;
	background: linear-gradient(rgba(14, 14, 14, 0.6), rgba(14, 14, 14, 0.7)),
		url('assets/am-hero.webp');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.am-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 30% 40%,
			rgba(41, 182, 246, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 70% 60%,
			rgba(253, 216, 53, 0.1) 0%,
			transparent 50%
		);
}

@keyframes am-float {
	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}
	50% {
		transform: translateY(-20px) rotate(1deg);
	}
}

.am-hero-content {
	text-align: center;
	max-width: 800px;
	z-index: 2;
	position: relative;
	animation: am-fade-in-up 1s ease-out;
}

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

.am-hero-subtitle {
	font-size: 1.3rem;
	color: #ededed;
	opacity: 0.9;
	margin-bottom: 2.5rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

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

/* ========================================
   CARDS
======================================== */
.am-card {
	background: #1a1a1a;
	border-radius: 12px;
	padding: 2rem;
	border: 1px solid rgba(41, 182, 246, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.am-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(41, 182, 246, 0.05),
		rgba(253, 216, 53, 0.05)
	);
	opacity: 0;
	transition: all 0.3s ease;
}

.am-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	border-color: rgba(41, 182, 246, 0.3);
}

.am-card:hover::before {
	opacity: 1;
}

.am-card-content {
	position: relative;
	z-index: 2;
}

.am-card-icon {
	font-size: 3rem;
	color: #ffc107;
	margin-bottom: 1.5rem;
	display: block;
	text-align: center;
}

.am-card-title {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 1.5rem;
	color: #fdd835;
	margin-bottom: 1rem;
	text-align: center;
}

.am-card-description {
	color: #ededed;
	opacity: 0.8;
	line-height: 1.6;
	text-align: center;
}

/* ========================================
   KNOWLEDGE MAPS SECTION
======================================== */
.am-knowledge-maps {
	background: linear-gradient(
		135deg,
		rgba(26, 26, 26, 0.8),
		rgba(14, 14, 14, 0.9)
	);
	padding: 100px 0;
	position: relative;
}

.am-knowledge-maps::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle fill="none" stroke="%2329B6F6" stroke-width="0.5" opacity="0.3" cx="50" cy="50" r="40"/><circle fill="none" stroke="%23FDD835" stroke-width="0.5" opacity="0.2" cx="25" cy="25" r="20"/></svg>');
	background-size: 200px 200px;
	opacity: 0.1;
}

.am-section-header {
	text-align: center;
	margin-bottom: 4rem;
	position: relative;
	z-index: 2;
}

.am-section-subtitle {
	font-size: 1.1rem;
	color: #ab47bc;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 1rem;
	font-weight: 600;
}

/* ========================================
   ACADEMIC OBSERVATORY SECTION
======================================== */
.am-observatory {
	background: #0e0e0e;
	padding: 100px 0;
	position: relative;
}

.am-observatory-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 3rem;
	margin-top: 3rem;
}

.am-news-card {
	background: linear-gradient(135deg, #1a1a1a, #1f1f1f);
	border-radius: 16px;
	padding: 2.5rem;
	border: 1px solid rgba(253, 216, 53, 0.2);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.am-news-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #ffc107, #fdd835, #ab47bc);
	animation: am-gradient-shift 3s ease-in-out infinite;
}

@keyframes am-gradient-shift {
	0%,
	100% {
		transform: translateX(-100%);
	}
	50% {
		transform: translateX(100%);
	}
}

.am-news-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.am-news-date {
	color: #ab47bc;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.am-news-title {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 1.4rem;
	color: #fdd835;
	margin-bottom: 1.5rem;
	line-height: 1.4;
}

.am-news-content {
	color: #ededed;
	opacity: 0.9;
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.am-stats {
	display: flex;
	gap: 2rem;
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.am-stat {
	text-align: center;
}

.am-stat-number {
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffc107;
	display: block;
}

.am-stat-label {
	font-size: 0.8rem;
	color: #ededed;
	opacity: 0.7;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */
.am-testimonials {
	background: linear-gradient(
		135deg,
		rgba(171, 71, 188, 0.1),
		rgba(14, 14, 14, 0.9)
	);
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}

.am-testimonials::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(
		circle,
		rgba(41, 182, 246, 0.05) 0%,
		transparent 70%
	);
	animation: am-rotate 20s linear infinite;
}

@keyframes am-rotate {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.am-testimonial-card {
	background: rgba(26, 26, 26, 0.8);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 2.5rem;
	border: 1px solid rgba(41, 182, 246, 0.2);
	text-align: center;
	transition: all 0.4s ease;
	position: relative;
	z-index: 2;
}

.am-testimonial-card:hover {
	transform: translateY(-15px) rotateY(5deg);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
	border-color: rgba(253, 216, 53, 0.4);
}

.am-testimonial-avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ffc107, #ab47bc);
	margin: 0 auto 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	font-weight: 700;
	color: #ffffff;
	border: 3px solid rgba(253, 216, 53, 0.3);
}

.am-testimonial-avatar img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}

.am-testimonial-quote {
	font-style: italic;
	color: #ededed;
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 1.5rem;
	position: relative;
}

.am-testimonial-quote::before {
	content: '"';
	font-size: 4rem;
	color: #ffc107;
	position: absolute;
	top: -1rem;
	left: -1rem;
	opacity: 0.3;
}

.am-testimonial-author {
	font-weight: 600;
	color: #fdd835;
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
}

.am-testimonial-role {
	color: #ab47bc;
	font-size: 0.9rem;
	opacity: 0.8;
}

/* ========================================
   COMMUNITY SECTION
======================================== */
.am-community {
	background: #0e0e0e;
	padding: 100px 0;
	position: relative;
}

.am-community-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem;
	margin-top: 3rem;
}

.am-community-card {
	background: linear-gradient(145deg, #1a1a1a, #141414);
	border-radius: 16px;
	padding: 2.5rem;
	text-align: center;
	border: 2px solid transparent;
	background-clip: padding-box;
	position: relative;
	transition: all 0.4s ease;
}

.am-community-card::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(45deg, #ffc107, #fdd835, #ab47bc, #ffc107);
	border-radius: 18px;
	z-index: -1;
	opacity: 0;
	transition: all 0.4s ease;
}

.am-community-card:hover::before {
	opacity: 1;
}

.am-community-card:hover {
	transform: translateY(-10px) scale(1.05);
}

.am-community-icon {
	font-size: 3.5rem;
	background: linear-gradient(135deg, #ffc107, #ab47bc);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 1.5rem;
}

/* ========================================
   PRICING SECTION
======================================== */
.am-pricing {
	background: linear-gradient(
		135deg,
		rgba(26, 26, 26, 0.8),
		rgba(14, 14, 14, 0.9)
	);
	padding: 100px 0;
	position: relative;
}

.am-pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 3rem;
}

.am-pricing-card {
	background: #1a1a1a;
	border-radius: 20px;
	padding: 3rem 2rem;
	text-align: center;
	border: 2px solid rgba(41, 182, 246, 0.1);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.am-pricing-link {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.am-pricing-link a {
	margin-top: auto;
}

.am-pricing-card.am-featured {
	border-color: #fdd835;
	transform: scale(1.05);
	background: linear-gradient(135deg, #1a1a1a, #1f1f1f);
}

.am-pricing-card.am-featured::before {
	content: 'POPULAR';
	position: absolute;
	top: 23px;
	right: -42px;
	background: #ab47bc;
	color: #fff;
	padding: 0.5rem 3rem;
	font-weight: 700;
	font-size: 0.8rem;
	transform: rotate(45deg);
	letter-spacing: 1px;
}

.am-pricing-card:hover {
	transform: translateY(-10px);
	border-color: #ffc107;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.am-pricing-card.am-featured:hover {
	transform: translateY(-10px) scale(1.05);
}

.am-pricing-title {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 1.5rem;
	color: #fdd835;
	margin-bottom: 1rem;
}

.am-pricing-price {
	font-size: 3rem;
	font-weight: 700;
	color: #ffc107;
	margin-bottom: 0.5rem;
}

.am-pricing-period {
	color: #ededed;
	opacity: 0.7;
	margin-bottom: 2rem;
}

.am-pricing-features {
	list-style: none;
	margin-bottom: 2rem;
}

.am-pricing-features li {
	padding: 0.75rem 0;
	color: #ededed;
	opacity: 0.8;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.am-pricing-features li:last-child {
	border-bottom: none;
}

.am-pricing-features li::before {
	content: '✓';
	color: #ffc107;
	font-weight: bold;
	margin-right: 1rem;
}

/* ========================================
   CONTACT FORM
======================================== */
.am-contact {
	background: linear-gradient(
		135deg,
		rgba(14, 14, 14, 0.9),
		rgba(26, 26, 26, 0.8)
	);
	padding: 100px 0;
	position: relative;
}

.am-contact-container {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 2rem;
}

.am-form {
	background: rgba(26, 26, 26, 0.8);
	backdrop-filter: blur(20px);
	border-radius: 20px;
	padding: 3rem;
	border: 1px solid rgba(41, 182, 246, 0.2);
	margin-top: 3rem;
}

.am-form-group {
	margin-bottom: 2rem;
}

.am-form-label {
	display: block;
	color: #fdd835;
	font-weight: 600;
	margin-bottom: 0.5rem;
	font-size: 1rem;
}

.am-form-input,
.am-form-textarea {
	width: 100%;
	padding: 1rem 1.5rem;
	background: rgba(14, 14, 14, 0.8);
	border: 2px solid rgba(41, 182, 246, 0.3);
	border-radius: 10px;
	color: #ededed;
	font-size: 1rem;
	transition: all 0.3s ease;
	font-family: 'Inter', sans-serif;
}

.am-form-input:focus,
.am-form-textarea:focus {
	outline: none;
	border-color: #ffc107;
	box-shadow: 0 0 20px rgba(41, 182, 246, 0.3);
	background: rgba(14, 14, 14, 0.9);
}

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

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

.am-form-group.am-error .am-form-input,
.am-form-group.am-error .am-form-textarea {
	border-color: #ff6b6b;
	box-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
}

.am-form-group.am-error .am-form-error {
	display: block;
}

.am-form-submit {
	width: 100%;
	padding: 1.2rem;
	font-size: 1.1rem;
	font-weight: 600;
	margin-top: 1rem;
}

/* ========================================
   FOOTER
======================================== */
.am-footer {
	background: #1a1a1a;
	padding: 80px 0 20px;
	border-top: 1px solid rgba(41, 182, 246, 0.2);
}

.am-footer-content {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 3rem;
	margin-bottom: 3rem;
}

.am-footer-section h3 {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: #fdd835;
	margin-bottom: 1.5rem;
	font-size: 1.2rem;
}

.am-footer-section p a {
	color: #ab47bc;
	text-decoration: none;
}

.am-footer-logo {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 1.8rem;
	color: #ffc107;
	text-decoration: none;
	display: block;
	margin-bottom: 1rem;
}

.am-footer-slogan {
	color: #ededed;
	opacity: 0.8;
	line-height: 1.6;
	font-style: italic;
}

.am-footer-nav {
	list-style: none;
}

.am-footer-nav li {
	margin-bottom: 0.8rem;
}

.am-footer-nav a {
	color: #ededed;
	text-decoration: none;
	opacity: 0.8;
	transition: all 0.3s ease;
}

.am-footer-nav a:hover {
	color: #ffc107;
	opacity: 1;
	transform: translateX(5px);
}

.am-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 2rem;
	text-align: center;
	color: #ededed;
	opacity: 0.7;
}

/* ========================================
   COOKIE POPUP
======================================== */
.am-cookie-popup {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(26, 26, 26, 0.95);
	backdrop-filter: blur(20px);
	padding: 2rem;
	border-top: 2px solid rgba(41, 182, 246, 0.3);
	z-index: 10000;
	transform: translateY(100%);
	transition: all 0.4s ease;
}

.am-cookie-popup.am-show {
	transform: translateY(0);
}

.am-cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.am-cookie-text {
	color: #ededed;
	opacity: 0.9;
	flex: 1;
}

.am-cookie-text a {
	color: #ffc107;
	text-decoration: none;
}

.am-cookie-text a:hover {
	text-decoration: underline;
}

.am-cookie-buttons {
	display: flex;
	gap: 1rem;
}

/* ========================================
   ANIMATIONS
======================================== */
.am-fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease;
}

.am-fade-in.am-visible {
	opacity: 1;
	transform: translateY(0);
}

.am-slide-in-left {
	opacity: 0;
	transform: translateX(-50px);
	transition: all 0.6s ease;
}

.am-slide-in-left.am-visible {
	opacity: 1;
	transform: translateX(0);
}

.am-slide-in-right {
	opacity: 0;
	transform: translateX(50px);
	transition: all 0.6s ease;
}

.am-slide-in-right.am-visible {
	opacity: 1;
	transform: translateX(0);
}

.am-scale-in {
	opacity: 0;
	transform: scale(0.8);
	transition: all 0.6s ease;
}

.am-scale-in.am-visible {
	opacity: 1;
	transform: scale(1);
}

/* ========================================
   PAGE-SPECIFIC STYLES
======================================== */

/* Privacy, Terms, Cookies Pages */
.am-legal-page {
	background: #0e0e0e;
	min-height: 100vh;
	padding-top: 150px;
	padding-bottom: 80px;
}

.am-legal-content {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 2rem;
}

.am-legal-title {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 2.5rem;
	color: #ffc107;
	text-align: center;
	margin-bottom: 3rem;
}

.am-legal-section {
	background: rgba(26, 26, 26, 0.8);
	border-radius: 12px;
	padding: 2.5rem;
	margin-bottom: 2rem;
	border: 1px solid rgba(41, 182, 246, 0.1);
}

.am-legal-section h2 {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 1.5rem;
	color: #fdd835;
	margin-bottom: 1.5rem;
}

.am-legal-section h3 {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 1.2rem;
	color: #ab47bc;
	margin-bottom: 1rem;
	margin-top: 1.5rem;
}

.am-legal-section p {
	color: #ededed;
	line-height: 1.7;
	margin-bottom: 1rem;
	opacity: 0.9;
}

.am-legal-section ul {
	color: #ededed;
	opacity: 0.9;
	margin-left: 2rem;
	margin-bottom: 1rem;
}

.am-legal-section ul li {
	margin-bottom: 0.5rem;
	line-height: 1.6;
}

.am-legal-contact {
	background: linear-gradient(135deg, #ffc107, #ab47bc);
	border-radius: 12px;
	padding: 2rem;
	text-align: center;
	margin-top: 3rem;
}

.am-legal-contact h3 {
	color: #ffffff;
	margin-bottom: 1rem;
}

.am-legal-contact p {
	color: #ffffff;
	opacity: 0.9;
}

.am-legal-contact a {
	color: #fdd835;
	text-decoration: none;
	font-weight: 600;
}

.am-legal-contact a:hover {
	text-decoration: underline;
}

/* Back to top button */
.am-back-to-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #ffc107, #ab47bc);
	border: none;
	border-radius: 50%;
	color: #ffffff;
	font-size: 1.2rem;
	cursor: pointer;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.3s ease;
	z-index: 1000;
	box-shadow: 0 4px 20px rgba(41, 182, 246, 0.3);
}

.am-back-to-top.am-visible {
	opacity: 1;
	transform: translateY(0);
}

.am-back-to-top:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(41, 182, 246, 0.4);
}

/* Loading animation */
.am-loading {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 3px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	border-top-color: #ffc107;
	animation: am-spin 1s ease-in-out infinite;
}

@keyframes am-spin {
	to {
		transform: rotate(360deg);
	}
}

/* Success message */
.am-success-message {
	background: linear-gradient(135deg, #4caf50, #45a049);
	color: #ffffff;
	padding: 1rem 2rem;
	border-radius: 8px;
	margin-top: 1rem;
	text-align: center;
	opacity: 0;
	transform: translateY(-10px);
	transition: all 0.3s ease;
}

.am-success-message.am-show {
	opacity: 1;
	transform: translateY(0);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1024px) {
	.am-grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.am-pricing-grid {
		grid-template-columns: repeat(2, 1fr);
	}

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

	.am-footer-content {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.am-container {
		padding: 0 1rem;
	}

	.am-heading-primary {
		font-size: 2.5rem;
	}

	.am-heading-secondary {
		font-size: 2rem;
	}

	.am-nav {
		display: none;
	}

	.am-mobile-menu-toggle {
		display: flex;
	}

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

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

	.am-observatory-grid {
		grid-template-columns: 1fr;
	}

	.am-pricing-grid {
		grid-template-columns: 1fr;
	}

	.am-footer-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.am-community-grid {
		grid-template-columns: 1fr 1fr;
	}

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

	.am-form {
		padding: 2rem 1.5rem;
	}

	.am-header-content {
		align-items: flex-start;
	}
}

@media (max-width: 480px) {
	.am-heading-primary {
		font-size: 2rem;
	}

	.am-community-grid {
		grid-template-columns: 1fr;
	}

	.am-hero-subtitle {
		font-size: 1.1rem;
	}

	.am-section {
		padding: 60px 0;
	}

	.am-card {
		padding: 1.5rem;
	}

	.am-form {
		padding: 1.5rem;
	}

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

	.am-legal-content {
		padding: 0 1rem;
	}
	.am-legal-title {
		font-size: 1.5rem;
	}
}
