@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ================================================================
   1. CSS VARIABLES & ROOT
   ================================================================ */
:root {
	--amr-bg-deep: #080a0c;
	--amr-bg-card: #121519;
	--amr-bg-card-hover: #1a1f25;
	--amr-accent-mint: #00ffd1;
	--amr-accent-lavender: #a78bfa;
	--amr-text-pearl: #e2e8f0;
	--amr-text-secondary: #64748b;
	--amr-text-dim: #475569;
	--amr-border-subtle: rgba(255, 255, 255, 0.06);
	--amr-border-glow: rgba(0, 255, 209, 0.15);
	--amr-glass-bg: rgba(18, 21, 25, 0.65);
	--amr-glass-border: rgba(255, 255, 255, 0.08);
	--amr-glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
	--amr-gradient-aurora: linear-gradient(135deg, #00ffd1 0%, #a78bfa 100%);
	--amr-gradient-aurora-soft: linear-gradient(
		135deg,
		rgba(0, 255, 209, 0.15) 0%,
		rgba(167, 139, 250, 0.15) 100%
	);
	--amr-gradient-dark: linear-gradient(180deg, #080a0c 0%, #0d1117 100%);
	--amr-font-heading: 'Lexend', sans-serif;
	--amr-font-body: 'Plus Jakarta Sans', sans-serif;
	--amr-radius-sm: 8px;
	--amr-radius-md: 14px;
	--amr-radius-lg: 22px;
	--amr-radius-xl: 32px;
	--amr-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	--amr-transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================================================
   2. RESET & BASE
   ================================================================ */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	font-family: var(--amr-font-body);
	background-color: var(--amr-bg-deep);
	color: var(--amr-text-pearl);
	line-height: 1.7;
	overflow-x: hidden;
	cursor: none;
}

a {
	color: var(--amr-accent-mint);
	text-decoration: none;
	transition: color var(--amr-transition);
}

a:hover {
	color: var(--amr-accent-lavender);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

ul,
ol {
	list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--amr-font-heading);
	font-weight: 600;
	line-height: 1.25;
	color: var(--amr-text-pearl);
}

h1 {
	font-size: clamp(2.2rem, 5vw, 3.6rem);
}
h2 {
	font-size: clamp(1.6rem, 3.5vw, 2.6rem);
}
h3 {
	font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}
h4 {
	font-size: clamp(1rem, 2vw, 1.25rem);
}

p {
	color: var(--amr-text-secondary);
	font-size: 1rem;
	margin-bottom: 1rem;
}

::selection {
	background: rgba(0, 255, 209, 0.25);
	color: var(--amr-text-pearl);
}

/* ================================================================
   3. CUSTOM CURSOR
   ================================================================ */
.amr-cursor {
	position: fixed;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--amr-accent-mint);
	pointer-events: none;
	z-index: 100000;
	mix-blend-mode: screen;
	transition:
		transform 0.15s ease,
		opacity 0.2s ease;
	transform: translate(-50%, -50%);
	box-shadow:
		0 0 20px rgba(0, 255, 209, 0.5),
		0 0 60px rgba(0, 255, 209, 0.2);
}

.amr-cursor.amr-cursor--hover {
	transform: translate(-50%, -50%) scale(2.2);
	background: var(--amr-accent-lavender);
	box-shadow:
		0 0 25px rgba(167, 139, 250, 0.5),
		0 0 70px rgba(167, 139, 250, 0.2);
}

@media (pointer: coarse) {
	.amr-cursor {
		display: none;
	}
	body {
		cursor: auto;
	}
}

/* ================================================================
   4. LAYOUT CONTAINERS
   ================================================================ */
.amr-container {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

.amr-container--wide {
	max-width: 1440px;
}

.amr-container--narrow {
	max-width: 860px;
}

.amr-section {
	padding: 100px 0;
	position: relative;
}

.amr-section--hero {
	padding: 140px 0 100px;
	min-height: 100vh;
	display: flex;
	align-items: center;
}

/* ================================================================
   5. HEADER — Neural Path
   ================================================================ */
.amr-header {
	position: fixed;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 48px);
	max-width: 1280px;
	z-index: 9999;
	background: var(--amr-glass-bg);
	backdrop-filter: blur(20px) saturate(1.4);
	-webkit-backdrop-filter: blur(20px) saturate(1.4);
	border: 1px solid var(--amr-glass-border);
	border-radius: var(--amr-radius-lg);
	padding: 14px 28px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: var(--amr-transition);
	box-shadow: var(--amr-glass-shadow);
}

.amr-header.amr-header--scrolled {
	top: 10px;
	background: rgba(8, 10, 12, 0.92);
	border-color: var(--amr-border-glow);
}

.amr-header__logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--amr-font-heading);
	font-weight: 700;
	font-size: 1.15rem;
	color: var(--amr-text-pearl);
	text-decoration: none;
}

.amr-header__logo-icon {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--amr-gradient-aurora);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.9rem;
	color: var(--amr-bg-deep);
	font-weight: 800;
}

.amr-header__nav {
	display: flex;
	align-items: center;
	gap: 6px;
}

.amr-header__link {
	color: var(--amr-text-secondary);
	font-size: 0.88rem;
	font-weight: 500;
	padding: 8px 16px;
	border-radius: var(--amr-radius-sm);
	transition: var(--amr-transition);
	position: relative;
	text-decoration: none;
}

.amr-header__link:hover,
.amr-header__link.amr-active {
	color: var(--amr-accent-mint);
	background: rgba(0, 255, 209, 0.06);
}

.amr-header__link.amr-active::after {
	content: '';
	position: absolute;
	bottom: 2px;
	left: 50%;
	transform: translateX(-50%);
	width: 20px;
	height: 2px;
	background: var(--amr-accent-mint);
	border-radius: 2px;
}

.amr-header__burger {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}

.amr-header__burger span {
	width: 24px;
	height: 2px;
	background: var(--amr-text-pearl);
	border-radius: 2px;
	transition: var(--amr-transition);
}

.amr-header__burger.amr-open span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.amr-header__burger.amr-open span:nth-child(2) {
	opacity: 0;
}

.amr-header__burger.amr-open span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}

/* ================================================================
   6. HERO SECTION
   ================================================================ */
.amr-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.amr-hero__content {
	position: relative;
	z-index: 2;
}

.amr-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 16px;
	background: rgba(0, 255, 209, 0.08);
	border: 1px solid rgba(0, 255, 209, 0.2);
	border-radius: 50px;
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--amr-accent-mint);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 24px;
}

.amr-hero__badge i {
	font-size: 0.7rem;
}

.amr-hero__title {
	margin-bottom: 24px;
	font-weight: 700;
}

.amr-hero__title span {
	background: var(--amr-gradient-aurora);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.amr-hero__text {
	font-size: 1.05rem;
	line-height: 1.8;
	color: var(--amr-text-secondary);
	margin-bottom: 36px;
	max-width: 520px;
}

.amr-hero__actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.amr-hero__visual {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.amr-hero__image-frame {
	width: 100%;
	max-width: 480px;
	aspect-ratio: 4/5;
	border-radius: var(--amr-radius-xl);
	overflow: hidden;
	border: 1px solid var(--amr-border-subtle);
	background: var(--amr-bg-card);
	position: relative;
}

.amr-hero__image-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.amr-hero__image-frame::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 50%, var(--amr-bg-deep) 100%);
	pointer-events: none;
}

.amr-hero__glow {
	position: absolute;
	width: 350px;
	height: 350px;
	border-radius: 50%;
	background: radial-gradient(
		circle,
		rgba(0, 255, 209, 0.12) 0%,
		transparent 70%
	);
	top: -50px;
	right: -50px;
	pointer-events: none;
	animation: amr-pulse 6s ease-in-out infinite;
}

.amr-hero__glow--lavender {
	background: radial-gradient(
		circle,
		rgba(167, 139, 250, 0.1) 0%,
		transparent 70%
	);
	top: auto;
	bottom: -80px;
	right: auto;
	left: -30px;
	animation-delay: 3s;
}

/* ================================================================
   7. BUTTONS
   ================================================================ */
.amr-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--amr-font-heading);
	font-weight: 600;
	font-size: 0.9rem;
	padding: 14px 30px;
	border-radius: var(--amr-radius-md);
	border: none;
	cursor: pointer;
	transition: var(--amr-transition);
	text-decoration: none;
	position: relative;
	overflow: hidden;
}

.amr-btn--primary {
	background: var(--amr-gradient-aurora);
	color: var(--amr-bg-deep);
}

.amr-btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(0, 255, 209, 0.3);
	color: var(--amr-bg-deep);
}

.amr-btn--ghost {
	background: transparent;
	color: var(--amr-text-pearl);
	border: 1px solid var(--amr-border-subtle);
}

.amr-btn--ghost:hover {
	border-color: var(--amr-accent-mint);
	color: var(--amr-accent-mint);
	background: rgba(0, 255, 209, 0.05);
}

.amr-btn--terminal {
	background: var(--amr-bg-card);
	color: var(--amr-accent-mint);
	border: 1px solid var(--amr-border-glow);
	font-family: 'Courier New', monospace;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 0.82rem;
}

.amr-btn--terminal:hover {
	background: rgba(0, 255, 209, 0.1);
	box-shadow: 0 0 20px rgba(0, 255, 209, 0.15);
}

.amr-btn--terminal:disabled {
	opacity: 0.35;
	cursor: not-allowed;
	pointer-events: none;
}

/* ================================================================
   8. SECTION HEADERS
   ================================================================ */
.amr-section-header {
	text-align: center;
	margin-bottom: 64px;
	position: relative;
}

.amr-section-header__tag {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--amr-accent-lavender);
	margin-bottom: 16px;
}

.amr-section-header__title {
	margin-bottom: 16px;
}

.amr-section-header__line {
	width: 60px;
	height: 2px;
	background: var(--amr-gradient-aurora);
	margin: 0 auto 20px;
	border-radius: 2px;
}

.amr-section-header__desc {
	max-width: 600px;
	margin: 0 auto;
	color: var(--amr-text-secondary);
	font-size: 1rem;
}

/* ================================================================
   9. INTERACTIVE TILES — Архитектура Мысли
   ================================================================ */
.amr-tiles {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.amr-tile {
	background: var(--amr-bg-card);
	border: 1px solid var(--amr-border-subtle);
	border-radius: var(--amr-radius-md);
	padding: 36px 28px;
	transition: var(--amr-transition-slow);
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.amr-tile::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--amr-gradient-aurora);
	opacity: 0;
	transition: var(--amr-transition);
}

.amr-tile:hover {
	border-radius: var(--amr-radius-xl);
	border-color: var(--amr-border-glow);
	background: var(--amr-bg-card-hover);
	transform: translateY(-6px);
	box-shadow:
		0 20px 60px rgba(0, 0, 0, 0.3),
		0 0 30px rgba(0, 255, 209, 0.05);
}

.amr-tile:hover::before {
	opacity: 1;
}

.amr-tile__icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: var(--amr-gradient-aurora-soft);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	font-size: 1.3rem;
	color: var(--amr-accent-mint);
	transition: var(--amr-transition);
}

.amr-tile:hover .amr-tile__icon {
	transform: scale(1.1);
	box-shadow: 0 0 20px rgba(0, 255, 209, 0.2);
}

.amr-tile__title {
	font-size: 1.15rem;
	margin-bottom: 12px;
	font-weight: 600;
}

.amr-tile__text {
	font-size: 0.9rem;
	color: var(--amr-text-secondary);
	line-height: 1.7;
}

.amr-tile__thesis {
	display: none;
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid var(--amr-border-subtle);
	font-size: 0.85rem;
	color: var(--amr-accent-lavender);
	font-style: italic;
}

.amr-tile:hover .amr-tile__thesis {
	display: block;
	animation: amr-fadeUp 0.4s ease forwards;
}

/* ================================================================
   10. VERTICAL ACCORDION — Методологический Стек
   ================================================================ */
.amr-accordion {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.amr-accordion__item {
	background: var(--amr-bg-card);
	border: 1px solid var(--amr-border-subtle);
	border-radius: var(--amr-radius-md);
	overflow: hidden;
	transition: var(--amr-transition);
}

.amr-accordion__item.amr-accordion--open {
	border-color: var(--amr-border-glow);
	box-shadow: 0 4px 20px rgba(0, 255, 209, 0.05);
}

.amr-accordion__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 22px 28px;
	cursor: pointer;
	transition: var(--amr-transition);
	user-select: none;
}

.amr-accordion__header:hover {
	background: rgba(255, 255, 255, 0.02);
}

.amr-accordion__header-left {
	display: flex;
	align-items: center;
	gap: 16px;
}

.amr-accordion__number {
	font-family: var(--amr-font-heading);
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--amr-accent-mint);
	background: rgba(0, 255, 209, 0.08);
	padding: 6px 12px;
	border-radius: 6px;
	min-width: 36px;
	text-align: center;
}

.amr-accordion__title {
	font-size: 1.08rem;
	font-weight: 600;
}

.amr-accordion__icon {
	color: var(--amr-text-secondary);
	transition: var(--amr-transition);
	font-size: 0.9rem;
}

.amr-accordion--open .amr-accordion__icon {
	transform: rotate(180deg);
	color: var(--amr-accent-mint);
}

.amr-accordion__body {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.amr-accordion--open .amr-accordion__body {
	max-height: 1000px;
}

.amr-accordion__content {
	padding: 1rem 28px 28px;
	padding-left: 80px;
	color: var(--amr-text-secondary);
	font-size: 0.95rem;
	line-height: 1.8;
}

/* ================================================================
   11. FACULTY — Коллегия Интеллекта (Hexagonal Frames)
   ================================================================ */
.amr-faculty {
	display: flex;
	justify-content: center;
	gap: 48px;
	flex-wrap: wrap;
}

.amr-faculty__node {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	transition: var(--amr-transition);
}

.amr-faculty__node:hover {
	transform: translateY(-8px);
}

.amr-faculty__hex {
	width: 160px;
	height: 180px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.amr-faculty__hex-inner {
	width: 140px;
	height: 155px;
	clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
	background: var(--amr-bg-card);
	border: none;
	overflow: hidden;
	position: relative;
}

.amr-faculty__hex-inner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.amr-faculty__hex::before {
	content: '';
	position: absolute;
	width: 150px;
	height: 166px;
	clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
	background: var(--amr-gradient-aurora);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
	opacity: 0.6;
	transition: var(--amr-transition);
}

.amr-faculty__node:hover .amr-faculty__hex::before {
	opacity: 1;
	filter: brightness(1.3);
}

.amr-faculty__name {
	font-family: var(--amr-font-heading);
	font-weight: 600;
	font-size: 1rem;
	text-align: center;
}

.amr-faculty__role {
	font-size: 0.82rem;
	color: var(--amr-text-secondary);
	text-align: center;
	margin-top: -12px;
}

.amr-faculty__city {
	font-size: 0.75rem;
	color: var(--amr-accent-lavender);
	margin-top: -14px;
}

/* ================================================================
   12. CAROUSEL — Резонанс Мнений
   ================================================================ */
.amr-carousel {
	position: relative;
	overflow: hidden;
	max-width: 700px;
	margin: 0 auto;
}

.amr-carousel__track {
	display: flex;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.amr-carousel__slide {
	min-width: 100%;
	padding: 48px;
	background: var(--amr-bg-card);
	border: 1px solid var(--amr-border-subtle);
	border-radius: var(--amr-radius-lg);
	text-align: center;
	min-height: 400px;
}

.amr-carousel__quote {
	font-size: 1.1rem;
	line-height: 1.9;
	color: var(--amr-text-pearl);
	margin-bottom: 28px;
	min-height: 100px;
	font-style: italic;
	position: relative;
}

.amr-carousel__quote::before {
	content: '«';
	font-size: 3rem;
	color: var(--amr-accent-mint);
	opacity: 0.3;
	position: absolute;
	top: -20px;
	left: -5px;
	font-style: normal;
}

.amr-carousel__author {
	font-family: var(--amr-font-heading);
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--amr-accent-mint);
}

.amr-carousel__role-text {
	font-size: 0.82rem;
	color: var(--amr-text-secondary);
	margin-top: 4px;
}

.amr-carousel__controls {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-top: 32px;
}

.amr-carousel__btn {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--amr-bg-card);
	border: 1px solid var(--amr-border-subtle);
	color: var(--amr-text-pearl);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: var(--amr-transition);
	font-size: 0.85rem;
}

.amr-carousel__btn:hover {
	border-color: var(--amr-accent-mint);
	color: var(--amr-accent-mint);
	background: rgba(0, 255, 209, 0.08);
}

.amr-carousel__dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 20px;
}

.amr-carousel__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--amr-text-dim);
	border: none;
	cursor: pointer;
	transition: var(--amr-transition);
}

.amr-carousel__dot.amr-active {
	background: var(--amr-accent-mint);
	width: 24px;
	border-radius: 4px;
}

/* ================================================================
   13. FORM — Terminal Style
   ================================================================ */
.amr-form-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
}

.amr-form {
	background: var(--amr-bg-card);
	border: 1px solid var(--amr-border-subtle);
	border-radius: var(--amr-radius-md);
	padding: 36px;
	position: relative;
}

.amr-form__header {
	margin-bottom: 28px;
	padding-top: 16px;
}

.amr-form__title {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 8px;
}

.amr-form__desc {
	font-size: 0.85rem;
	color: var(--amr-text-secondary);
}

.amr-form__group {
	margin-bottom: 20px;
	position: relative;
}

.amr-form__label {
	display: block;
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--amr-text-secondary);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 8px;
	font-family: 'Courier New', monospace;
}

.amr-form__label::before {
	content: '>';
	color: var(--amr-accent-mint);
	margin-right: 6px;
}

.amr-form__input,
.amr-form__textarea {
	width: 100%;
	background: rgba(0, 0, 0, 0.3);
	border: 1px solid var(--amr-border-subtle);
	border-radius: var(--amr-radius-sm);
	padding: 14px 18px;
	color: var(--amr-text-pearl);
	font-family: var(--amr-font-body);
	font-size: 0.92rem;
	transition: var(--amr-transition);
	outline: none;
}

.amr-form__input:focus,
.amr-form__textarea:focus {
	border-color: var(--amr-accent-mint);
	box-shadow: 0 0 0 3px rgba(0, 255, 209, 0.1);
}

.amr-form__input.amr-invalid,
.amr-form__textarea.amr-invalid {
	border-color: #ef4444;
}

.amr-form__textarea {
	min-height: 120px;
	resize: vertical;
}

.amr-form__error {
	font-size: 0.75rem;
	color: #ef4444;
	margin-top: 6px;
	display: none;
	font-family: 'Courier New', monospace;
}

.amr-form__error.amr-visible {
	display: block;
}

.amr-form__submit {
	width: 100%;
	margin-top: 8px;
}

/* ================================================================
   14. MAP
   ================================================================ */
.amr-map-container {
	border-radius: var(--amr-radius-md);
	overflow: hidden;
	border: 1px solid var(--amr-border-subtle);
	height: 100%;
	min-height: 400px;
	position: relative;
}

.amr-map {
	height: 100%;
	min-height: 300px;
	width: 100%;
	filter: invert(0.92) hue-rotate(180deg) saturate(0.6) brightness(0.7);

	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.amr-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.amr-contact-map {
	position: relative;
	height: 100%;
	/* min-height: 300px; */

	/* flex: 1; */

	/* margin-top: 2rem; */
	/* border-radius: 10px; */
	/* overflow: hidden; */
}

.amr-map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;

	height: 100%;
	border-radius: 1rem;

	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1;
	cursor: pointer;
}

.amr-map-container::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(0, 255, 209, 0.05) 0%,
		transparent 50%
	);
	pointer-events: none;
}

/* ================================================================
   15. FOOTER
   ================================================================ */
.amr-footer {
	background: var(--amr-bg-card);
	border-top: 1px solid var(--amr-border-subtle);
	padding: 64px 0 0;
}

.amr-footer__grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 48px;
}

.amr-footer__brand-text {
	font-size: 0.88rem;
	color: var(--amr-text-secondary);
	line-height: 1.8;
	margin-top: 16px;
}

.amr-footer__heading {
	font-size: 0.82rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--amr-text-pearl);
	margin-bottom: 20px;
}

.amr-footer__links {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.amr-footer__link {
	color: var(--amr-text-secondary);
	font-size: 0.88rem;
	transition: var(--amr-transition);
	text-decoration: none;
}

.amr-footer__link:hover {
	color: var(--amr-accent-mint);
	padding-left: 6px;
}

.amr-footer__contact-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 14px;
	font-size: 0.88rem;
	color: var(--amr-text-secondary);
}

.amr-footer__contact-item i {
	color: var(--amr-accent-mint);
	margin-top: 4px;
	width: 16px;
}

.amr-footer__contact-item a {
	color: var(--amr-text-secondary);
}

.amr-footer__contact-item a:hover {
	color: var(--amr-accent-mint);
}

.amr-footer__socials {
	display: flex;
	gap: 10px;
	margin-top: 20px;
}

.amr-footer__social {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--amr-border-subtle);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--amr-text-secondary);
	transition: var(--amr-transition);
	text-decoration: none;
	font-size: 0.9rem;
}

.amr-footer__social:hover {
	border-color: var(--amr-accent-mint);
	color: var(--amr-accent-mint);
	background: rgba(0, 255, 209, 0.08);
}

.amr-footer__bottom {
	border-top: 1px solid var(--amr-border-subtle);
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.78rem;
	color: var(--amr-text-dim);
}

.amr-footer__legal-links {
	display: flex;
	gap: 20px;
}

.amr-footer__legal-links a {
	color: var(--amr-text-dim);
	font-size: 0.78rem;
}

.amr-footer__legal-links a:hover {
	color: var(--amr-accent-mint);
}

/* ================================================================
   16. COOKIE POPUP
   ================================================================ */
.amr-cookie {
	position: fixed;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%) translateY(120%);
	width: calc(100% - 48px);
	max-width: 680px;
	z-index: 10000;
	background: var(--amr-glass-bg);
	backdrop-filter: blur(24px) saturate(1.5);
	-webkit-backdrop-filter: blur(24px) saturate(1.5);
	border: 1px solid var(--amr-glass-border);
	border-radius: var(--amr-radius-lg);
	padding: 24px 32px;
	display: flex;
	align-items: center;
	gap: 20px;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.amr-cookie.amr-cookie--visible {
	transform: translateX(-50%) translateY(0);
}

.amr-cookie__text {
	font-size: 0.85rem;
	color: var(--amr-text-secondary);
	flex: 1;
	line-height: 1.6;
}

.amr-cookie__text a {
	color: var(--amr-accent-mint);
	text-decoration: underline;
}

.amr-cookie__actions {
	display: flex;
	gap: 10px;
	flex-shrink: 0;
}

.amr-cookie__accept {
	padding: 10px 22px;
	background: var(--amr-accent-mint);
	color: var(--amr-bg-deep);
	border: none;
	border-radius: var(--amr-radius-sm);
	font-family: var(--amr-font-heading);
	font-weight: 600;
	font-size: 0.82rem;
	cursor: pointer;
	transition: var(--amr-transition);
}

.amr-cookie__accept:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 15px rgba(0, 255, 209, 0.3);
}

/* ================================================================
   17. INFOGRAPHIC TABLE
   ================================================================ */
.amr-table-wrap {
	overflow-x: auto;
	border-radius: var(--amr-radius-md);
	border: 1px solid var(--amr-border-subtle);
}

.amr-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9rem;
}

.amr-table thead {
	background: rgba(0, 255, 209, 0.06);
}

.amr-table th {
	padding: 16px 20px;
	text-align: left;
	font-weight: 600;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--amr-accent-mint);
	border-bottom: 1px solid var(--amr-border-subtle);
}

.amr-table td {
	padding: 14px 20px;
	border-bottom: 1px solid var(--amr-border-subtle);
	color: var(--amr-text-secondary);
}

.amr-table tbody tr {
	transition: var(--amr-transition);
}

.amr-table tbody tr:hover {
	background: rgba(255, 255, 255, 0.02);
}

.amr-table tbody tr:last-child td {
	border-bottom: none;
}

/* ================================================================
   18. TABS
   ================================================================ */
.amr-tabs {
	width: 100%;
}

.amr-tabs__nav {
	display: flex;
	gap: 4px;
	margin-bottom: 32px;
	background: var(--amr-bg-card);
	border-radius: var(--amr-radius-md);
	padding: 6px;
	border: 1px solid var(--amr-border-subtle);
	overflow-x: auto;
}

.amr-tabs__btn {
	padding: 12px 24px;
	background: transparent;
	border: none;
	color: var(--amr-text-secondary);
	font-family: var(--amr-font-heading);
	font-weight: 500;
	font-size: 0.88rem;
	cursor: pointer;
	border-radius: var(--amr-radius-sm);
	transition: var(--amr-transition);
	white-space: nowrap;
}

.amr-tabs__btn:hover {
	color: var(--amr-text-pearl);
}

.amr-tabs__btn.amr-active {
	background: rgba(0, 255, 209, 0.1);
	color: var(--amr-accent-mint);
}

.amr-tabs__panel {
	display: none;
	animation: amr-fadeUp 0.4s ease;
}

.amr-tabs__panel.amr-active {
	display: block;
}

.amr-tabs__panel-content {
	background: var(--amr-bg-card);
	border: 1px solid var(--amr-border-subtle);
	border-radius: var(--amr-radius-md);
	padding: 36px;
}

/* ================================================================
   19. CHART CONTAINER
   ================================================================ */
.amr-chart-wrap {
	background: var(--amr-bg-card);
	border: 1px solid var(--amr-border-subtle);
	border-radius: var(--amr-radius-md);
	padding: 36px;
	margin: 32px 0;
}

.amr-chart-wrap canvas {
	height: 100% !important;
	min-height: 400px;
	width: 100% !important;
	object-fit: contain;
}

/* ================================================================
   20. LONGREAD / PROSE
   ================================================================ */
.amr-prose {
	background: var(--amr-bg-card);
	border: 1px solid var(--amr-border-subtle);
	border-radius: var(--amr-radius-md);
	padding: 40px;
	line-height: 1.9;
}

.amr-prose h3 {
	margin-bottom: 16px;
	color: var(--amr-text-pearl);
}

.amr-prose p {
	margin-bottom: 16px;
	font-size: 0.95rem;
}

.amr-prose strong {
	color: var(--amr-text-pearl);
}

.amr-prose em {
	color: var(--amr-accent-lavender);
}

.amr-prose a {
	color: var(--amr-accent-mint);
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* ================================================================
   21. SLIDE CAROUSEL (Cognitive Habit)
   ================================================================ */
.amr-slides {
	position: relative;
	overflow: hidden;
	border-radius: var(--amr-radius-md);
	border: 1px solid var(--amr-border-subtle);
}

.amr-slides__track {
	display: flex;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.amr-slides__item {
	min-width: 100%;
	padding: 48px;
	background: var(--amr-bg-card);
}

.amr-slides__step {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--amr-accent-mint);
	margin-bottom: 16px;
	padding: 6px 14px;
	background: rgba(0, 255, 209, 0.08);
	border-radius: 6px;
}

.amr-slides__title {
	font-size: 1.4rem;
	margin-bottom: 16px;
}

.amr-slides__text {
	font-size: 0.95rem;
	color: var(--amr-text-secondary);
	line-height: 1.8;
}

.amr-slides__controls {
	display: flex;
	justify-content: center;
	gap: 12px;
	padding: 20px;
	background: var(--amr-bg-card);
	border-top: 1px solid var(--amr-border-subtle);
}

/* ================================================================
   22. CONTACT PAGE — 2x2 Grid
   ================================================================ */
.amr-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
}

.amr-contact-info {
	background: var(--amr-bg-card);
	border: 1px solid var(--amr-border-subtle);
	border-radius: var(--amr-radius-md);
	padding: 36px;
}

.amr-contact-info__item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 24px;
}

.amr-contact-info__icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(0, 255, 209, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--amr-accent-mint);
	flex-shrink: 0;
}

.amr-contact-info__label {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--amr-text-dim);
	margin-bottom: 4px;
}

.amr-contact-info__value {
	font-size: 0.95rem;
	color: var(--amr-text-pearl);
}

.amr-contact-info__value a {
	color: var(--amr-text-pearl);
}

.amr-contact-info__value a:hover {
	color: var(--amr-accent-mint);
}

/* ================================================================
   23. FAQ ACCORDION
   ================================================================ */
.amr-faq .amr-accordion__header {
	padding: 18px 24px;
}

.amr-faq .amr-accordion__title {
	font-size: 0.95rem;
}

.amr-faq .amr-accordion__content {
	padding: 1rem 24px 24px;
	padding-left: 24px;
	font-size: 0.88rem;
}

/* ================================================================
   24. INFOGRAPHIC CARDS
   ================================================================ */
.amr-info-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
}

.amr-info-card {
	background: var(--amr-bg-card);
	border: 1px solid var(--amr-border-subtle);
	border-radius: var(--amr-radius-md);
	padding: 32px;
	text-align: center;
	transition: var(--amr-transition);
}

.amr-info-card:hover {
	border-color: var(--amr-border-glow);
	transform: translateY(-4px);
}

.amr-info-card__number {
	font-family: var(--amr-font-heading);
	font-size: 2.4rem;
	font-weight: 800;
	background: var(--amr-gradient-aurora);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 8px;
}

.amr-info-card__label {
	font-size: 0.85rem;
	color: var(--amr-text-secondary);
}

/* ================================================================
   25. CASE STUDY
   ================================================================ */
.amr-cases {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 24px;
}

.amr-case {
	background: var(--amr-bg-card);
	border: 1px solid var(--amr-border-subtle);
	border-radius: var(--amr-radius-md);
	padding: 32px;
	transition: var(--amr-transition);
}

.amr-case:hover {
	border-color: var(--amr-border-glow);
}

.amr-case__tag {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--amr-accent-lavender);
	margin-bottom: 14px;
	padding: 4px 12px;
	background: rgba(167, 139, 250, 0.1);
	border-radius: 4px;
}

.amr-case__title {
	font-size: 1.1rem;
	margin-bottom: 12px;
}

.amr-case__text {
	font-size: 0.9rem;
	color: var(--amr-text-secondary);
	line-height: 1.8;
}

/* ================================================================
   26. ANIMATIONS
   ================================================================ */
@keyframes amr-fadeUp {
	from {
		opacity: 0;
		transform: translateY(24px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes amr-fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes amr-pulse {
	0%,
	100% {
		opacity: 0.5;
		transform: scale(1);
	}
	50% {
		opacity: 0.8;
		transform: scale(1.1);
	}
}

@keyframes amr-slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-40px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes amr-slideInRight {
	from {
		opacity: 0;
		transform: translateX(40px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes amr-scaleIn {
	from {
		opacity: 0;
		transform: scale(0.92);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes amr-typewriter-blink {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
}

.amr-typing-cursor::after {
	content: '▌';
	color: var(--amr-accent-mint);
	animation: amr-typewriter-blink 0.8s step-end infinite;
	margin-left: 2px;
}

/* Scroll reveal */
.amr-reveal {
	opacity: 0;
	transform: translateY(30px);
	transition:
		opacity 0.7s ease,
		transform 0.7s ease;
}

.amr-reveal.amr-revealed {
	opacity: 1;
	transform: translateY(0);
}

.amr-reveal--delay-1 {
	transition-delay: 0.1s;
}
.amr-reveal--delay-2 {
	transition-delay: 0.2s;
}
.amr-reveal--delay-3 {
	transition-delay: 0.3s;
}
.amr-reveal--delay-4 {
	transition-delay: 0.4s;
}

/* ================================================================
   27. PAGE HERO (Inner Pages)
   ================================================================ */
.amr-page-hero {
	padding: 160px 0 80px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.amr-page-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 600px;
	height: 400px;
	background: radial-gradient(
		ellipse,
		rgba(0, 255, 209, 0.08) 0%,
		transparent 70%
	);
	pointer-events: none;
}

.amr-page-hero__title {
	margin-bottom: 16px;
	position: relative;
}

.amr-page-hero__subtitle {
	max-width: 600px;
	margin: 0 auto;
	font-size: 1.05rem;
	color: var(--amr-text-secondary);
}

.amr-page-hero__breadcrumb {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-bottom: 24px;
	font-size: 0.82rem;
	color: var(--amr-text-dim);
}

.amr-page-hero__breadcrumb a {
	color: var(--amr-text-dim);
}

.amr-page-hero__breadcrumb a:hover {
	color: var(--amr-accent-mint);
}

.amr-page-hero__breadcrumb span {
	color: var(--amr-accent-mint);
}

/* ================================================================
   28. GLOW DECORATIONS
   ================================================================ */
.amr-glow-orb {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	filter: blur(80px);
}

.amr-glow-orb--mint {
	background: rgba(0, 255, 209, 0.06);
}

.amr-glow-orb--lavender {
	background: rgba(167, 139, 250, 0.06);
}

/* ================================================================
   29. DIVIDERS
   ================================================================ */
.amr-divider {
	height: 1px;
	background: var(--amr-border-subtle);
	margin: 0;
	border: none;
}

.amr-divider--glow {
	background: var(--amr-gradient-aurora);
	opacity: 0.2;
}

/* ================================================================
   30. BADGE / TAG
   ================================================================ */
.amr-tag {
	display: inline-block;
	padding: 4px 14px;
	font-size: 0.72rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	border-radius: 50px;
	background: rgba(0, 255, 209, 0.08);
	color: var(--amr-accent-mint);
	border: 1px solid rgba(0, 255, 209, 0.15);
}

.amr-tag--lavender {
	background: rgba(167, 139, 250, 0.08);
	color: var(--amr-accent-lavender);
	border-color: rgba(167, 139, 250, 0.15);
}

/* ================================================================
   31. GLASSMORPHISM CARD
   ================================================================ */
.amr-glass {
	background: var(--amr-glass-bg);
	backdrop-filter: blur(16px) saturate(1.3);
	-webkit-backdrop-filter: blur(16px) saturate(1.3);
	border: 1px solid var(--amr-glass-border);
	border-radius: var(--amr-radius-md);
	box-shadow: var(--amr-glass-shadow);
}

/* ================================================================
   32. GRID PATTERNS (Background decoration)
   ================================================================ */
.amr-grid-bg {
	position: relative;
}

.amr-grid-bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
	background-size: 60px 60px;
	pointer-events: none;
	mask-image: radial-gradient(
		ellipse 60% 50% at 50% 50%,
		black 0%,
		transparent 100%
	);
	-webkit-mask-image: radial-gradient(
		ellipse 60% 50% at 50% 50%,
		black 0%,
		transparent 100%
	);
}

/* ================================================================
   35. UTILITY CLASSES
   ================================================================ */
.amr-text-gradient {
	background: var(--amr-gradient-aurora);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.amr-text-center {
	text-align: center;
}
.amr-text-left {
	text-align: left;
}
.amr-mt-0 {
	margin-top: 0;
}
.amr-mt-sm {
	margin-top: 16px;
}
.amr-mt-md {
	margin-top: 32px;
}
.amr-mt-lg {
	margin-top: 64px;
}
.amr-mb-0 {
	margin-bottom: 0;
}
.amr-mb-sm {
	margin-bottom: 16px;
}
.amr-mb-md {
	margin-bottom: 32px;
}
.amr-mb-lg {
	margin-bottom: 64px;
}
.amr-pt-0 {
	padding-top: 0;
}
.amr-pb-0 {
	padding-bottom: 0;
}

.amr-flex {
	display: flex;
}
.amr-flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
}
.amr-flex-between {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.amr-gap-sm {
	gap: 12px;
}
.amr-gap-md {
	gap: 24px;
}

.amr-hidden {
	display: none;
}
.amr-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

/* ================================================================
   36. SCROLLBAR
   ================================================================ */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: var(--amr-bg-deep);
}

::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.08);
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: rgba(255, 255, 255, 0.14);
}

/* ================================================================
   37. PRINT STYLES
   ================================================================ */
@media print {
	.amr-header,
	.amr-cookie,
	.amr-cursor {
		display: none !important;
	}

	body {
		background: #fff;
		color: #000;
	}
}

/* ================================================================
   38. DECORATIVE NEURAL LINES
   ================================================================ */
.amr-neural-line {
	position: absolute;
	width: 1px;
	height: 200px;
	background: linear-gradient(
		180deg,
		transparent,
		rgba(0, 255, 209, 0.15),
		transparent
	);
	pointer-events: none;
}

.amr-neural-dot {
	position: absolute;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--amr-accent-mint);
	opacity: 0.3;
	pointer-events: none;
	animation: amr-pulse 4s ease-in-out infinite;
}

/* ================================================================
   39. PLACEHOLDER IMAGES
   ================================================================ */
.amr-placeholder-img {
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		var(--amr-bg-card) 0%,
		rgba(0, 255, 209, 0.05) 50%,
		var(--amr-bg-card) 100%
	);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--amr-text-dim);
	font-size: 2rem;
}

:root {
	/* Color Palette */
	--amr-legal-bg-primary: #080a0c;
	--amr-legal-bg-secondary: #121519;
	--amr-legal-accent-cyan: #00ffd1;
	--amr-legal-accent-lavender: #a78bfa;
	--amr-legal-text-primary: #e2e8f0;
	--amr-legal-text-secondary: #64748b;
	--amr-legal-border: rgba(0, 255, 209, 0.15);
	--amr-legal-glow: rgba(0, 255, 209, 0.3);

	/* Typography */
	--amr-legal-font-base:
		-apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu',
		'Cantarell', sans-serif;
	--amr-legal-font-heading:
		'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

	/* Spacing */
	--amr-legal-spacing-xs: 0.5rem;
	--amr-legal-spacing-sm: 1rem;
	--amr-legal-spacing-md: 1.5rem;
	--amr-legal-spacing-lg: 2rem;
	--amr-legal-spacing-xl: 3rem;
	--amr-legal-spacing-2xl: 4rem;

	/* Border Radius */
	--amr-legal-radius-sm: 8px;
	--amr-legal-radius-md: 12px;
	--amr-legal-radius-lg: 16px;

	/* Transitions */
	--amr-legal-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.amr-legal-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 120px 20px;
	position: relative;
}

/* === Header === */
.amr-legal-header {
	text-align: center;
	margin-bottom: var(--amr-legal-spacing-2xl);
	position: relative;
	padding-bottom: var(--amr-legal-spacing-lg);
}

.amr-legal-header::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 120px;
	height: 2px;
	background: linear-gradient(
		90deg,
		transparent,
		var(--amr-legal-accent-cyan),
		var(--amr-legal-accent-lavender),
		transparent
	);
	box-shadow: 0 0 12px var(--amr-legal-glow);
}

.amr-legal-title {
	font-family: var(--amr-legal-font-heading);
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: var(--amr-legal-spacing-sm);
	background: linear-gradient(
		135deg,
		var(--amr-legal-accent-cyan),
		var(--amr-legal-accent-lavender)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

@media (max-width: 768px) {
	.amr-legal-title {
		font-size: 2rem;
	}
}

.amr-legal-subtitle {
	font-size: 0.95rem;
	color: var(--amr-legal-text-secondary);
	font-weight: 400;
	letter-spacing: 0.03em;
}

/* === Content Area === */
.amr-legal-content {
	display: flex;
	flex-direction: column;
	gap: var(--amr-legal-spacing-xl);
}

/* === Section === */
.amr-legal-section {
	background: var(--amr-legal-bg-secondary);
	border: 1px solid var(--amr-legal-border);
	border-radius: var(--amr-legal-radius-lg);
	padding: var(--amr-legal-spacing-lg);
	position: relative;
	overflow: hidden;
	transition: var(--amr-legal-transition);
}

.amr-legal-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		var(--amr-legal-accent-cyan),
		transparent
	);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.amr-legal-section:hover::before {
	opacity: 1;
}

.amr-legal-section:hover {
	border-color: rgba(0, 255, 209, 0.3);
	box-shadow: 0 8px 32px rgba(0, 255, 209, 0.08);
	transform: translateY(-2px);
}

@media (max-width: 768px) {
	.amr-legal-section {
		padding: var(--amr-legal-spacing-md);
	}
}

/* === Section Header === */
.amr-legal-section-header {
	display: flex;
	align-items: center;
	gap: var(--amr-legal-spacing-md);
	margin-bottom: var(--amr-legal-spacing-md);
	padding-bottom: var(--amr-legal-spacing-sm);
	border-bottom: 1px solid rgba(100, 116, 139, 0.2);
}

.amr-legal-section-number {
	font-family: var(--amr-legal-font-heading);
	font-size: 2rem;
	font-weight: 700;
	color: var(--amr-legal-accent-cyan);
	line-height: 1;
	min-width: 60px;
	text-align: center;
	background: linear-gradient(
		135deg,
		rgba(0, 255, 209, 0.1),
		rgba(167, 139, 250, 0.1)
	);
	border-radius: var(--amr-legal-radius-sm);
	padding: var(--amr-legal-spacing-xs);
	text-shadow: 0 0 20px rgba(0, 255, 209, 0.4);
}

.amr-legal-section-title {
	font-family: var(--amr-legal-font-heading);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--amr-legal-text-primary);
	letter-spacing: -0.01em;
	line-height: 1.3;
	flex: 1;
}

@media (max-width: 768px) {
	.amr-legal-section-header {
		gap: var(--amr-legal-spacing-sm);
	}

	.amr-legal-section-number {
		font-size: 1.5rem;
		min-width: 50px;
	}

	.amr-legal-section-title {
		font-size: 1.25rem;
	}
}

/* === Section Body === */
.amr-legal-section-body {
	display: flex;
	flex-direction: column;
	gap: var(--amr-legal-spacing-md);
}

.amr-legal-text {
	color: var(--amr-legal-text-primary);
	line-height: 1.8;
	font-size: 1rem;
}

.amr-legal-text strong {
	color: var(--amr-legal-accent-lavender);
	font-weight: 600;
}

/* === Lists === */
.amr-legal-list {
	display: flex;
	flex-direction: column;
	gap: var(--amr-legal-spacing-sm);
}

.amr-legal-list-item {
	display: flex;
	align-items: flex-start;
	gap: var(--amr-legal-spacing-sm);
	color: var(--amr-legal-text-primary);
	line-height: 1.7;
}

.amr-legal-bullet {
	width: 6px;
	height: 6px;
	background: var(--amr-legal-accent-cyan);
	border-radius: 50%;
	margin-top: 0.6em;
	flex-shrink: 0;
	box-shadow: 0 0 8px rgba(0, 255, 209, 0.5);
}

/* === Cookie-specific Styles === */
.amr-legal-cookie-type,
.amr-legal-cookie-duration,
.amr-legal-cookie-control {
	background: rgba(18, 21, 25, 0.5);
	border-left: 3px solid var(--amr-legal-accent-cyan);
	padding: var(--amr-legal-spacing-md);
	border-radius: var(--amr-legal-radius-sm);
	margin-top: var(--amr-legal-spacing-md);
}

.amr-legal-cookie-type-title {
	font-family: var(--amr-legal-font-heading);
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--amr-legal-accent-cyan);
	margin-bottom: var(--amr-legal-spacing-sm);
	letter-spacing: -0.01em;
}

/* === Contact Info === */
.amr-legal-contact {
	background: rgba(18, 21, 25, 0.7);
	border: 1px solid rgba(0, 255, 209, 0.2);
	border-radius: var(--amr-legal-radius-md);
	padding: var(--amr-legal-spacing-lg);
	margin-top: var(--amr-legal-spacing-md);
	display: flex;
	flex-direction: column;
	gap: var(--amr-legal-spacing-sm);
}

.amr-legal-contact-item {
	display: flex;
	align-items: baseline;
	gap: var(--amr-legal-spacing-sm);
	flex-wrap: wrap;
}

.amr-legal-contact-label {
	font-weight: 600;
	color: var(--amr-legal-accent-lavender);
	min-width: 120px;
	font-size: 0.95rem;
}

.amr-legal-contact-value {
	color: var(--amr-legal-text-primary);
	font-size: 0.95rem;
}

@media (max-width: 768px) {
	.amr-legal-contact-item {
		flex-direction: column;
		gap: 0.25rem;
	}

	.amr-legal-contact-label {
		min-width: auto;
	}
}

/* === Footer === */
.amr-legal-footer {
	margin-top: var(--amr-legal-spacing-2xl);
	padding-top: var(--amr-legal-spacing-lg);
	text-align: center;
	position: relative;
}

/* ================================================================
   33. RESPONSIVE — Tablet
   ================================================================ */
@media (max-width: 1024px) {
	.amr-hero {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}

	.amr-hero__text {
		max-width: 100%;
	}

	.amr-hero__actions {
		justify-content: center;
	}

	.amr-hero__visual {
		order: -1;
	}

	.amr-hero__image-frame {
		max-width: 360px;
		aspect-ratio: 1;
	}

	.amr-tiles {
		grid-template-columns: repeat(2, 1fr);
	}

	.amr-form-section {
		grid-template-columns: 1fr;
	}

	.amr-footer__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.amr-contact-grid {
		grid-template-columns: 1fr;
	}

	.amr-faculty {
		gap: 32px;
	}

	.amr-hero__glow {
		display: none;
	}

	.amr-header__nav {
		display: none;
		position: absolute;
		top: calc(100% + 12px);
		left: 0;
		right: 0;
		background: rgba(8, 10, 12, 0.96);
		backdrop-filter: blur(20px);
		-webkit-backdrop-filter: blur(20px);
		border: 1px solid var(--amr-border-subtle);
		border-radius: var(--amr-radius-md);
		padding: 16px;
		flex-direction: column;
		gap: 4px;
	}

	.amr-header__nav.amr-open {
		display: flex;
	}

	.amr-header__burger {
		display: flex;
	}
}

/* ================================================================
   34. RESPONSIVE — Mobile
   ================================================================ */
@media (max-width: 640px) {
	.amr-header {
		width: calc(100% - 32px);
		padding: 12px 18px;
	}

	.amr-section {
		padding: 64px 0;
	}

	.amr-section--hero {
		padding: 120px 0 64px;
		min-height: auto;
	}

	.amr-tiles {
		grid-template-columns: 1fr;
	}

	.amr-footer__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.amr-footer__bottom {
		flex-direction: column;
		gap: 12px;
		text-align: center;
	}

	.amr-cookie {
		flex-direction: column;
		text-align: center;
		width: calc(100% - 32px);
	}

	.amr-cookie__actions {
		width: 100%;
	}

	.amr-cookie__accept {
		flex: 1;
	}

	.amr-hero__image-frame {
		max-width: 280px;
	}

	.amr-carousel__slide {
		padding: 32px 24px;
	}

	.amr-faculty__hex {
		width: 120px;
		height: 135px;
	}

	.amr-faculty__hex-inner {
		width: 105px;
		height: 118px;
	}

	.amr-faculty__hex::before {
		width: 113px;
		height: 126px;
	}
}

@media (max-width: 480px) {
	.amr-header__logo {
		font-size: 1rem;
	}

	.amr-accordion__content {
		padding: 2rem;
	}

	.amr-carousel__slide {
		min-height: 700px;
	}

	.amr-form-section {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}

	.amr-page-hero__title {
		font-size: 1.5rem;
	}

	.amr-slides__item {
		padding: 2rem;
	}

	.amr-cases {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}

	.amr-tabs__panel-content h3,
	.amr-prose h3 {
		font-size: 1rem;
	}

	.amr-contact-info,
	.amr-form {
		padding: 2rem;
	}

	.amr-legal-title {
		font-size: 1.3rem;
	}
}
