@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

/* ========== CSS RESET ========== */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		sans-serif;
	background-color: #0a0d12;
	color: #e6eef4;
	line-height: 1.7;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* ========== TYPOGRAPHY ========== */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	line-height: 1.2;
	color: #e6eef4;
	margin-bottom: 1rem;
}

h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 800;
	letter-spacing: -0.02em;
}

h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
}

h3 {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 600;
}

h4 {
	font-size: clamp(1.25rem, 2.5vw, 1.5rem);
	font-weight: 600;
}

p {
	margin-bottom: 1rem;
	color: #9aa3ad;
	font-size: 1.05rem;
}

a {
	color: #00c2a8;
	text-decoration: none;
	transition: all 0.28s ease-in-out;
}

a:hover {
	color: #7c5cff;
}

/* ========== CONTAINER & LAYOUT ========== */
.ns-container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 2rem;
}

.ns-container-wide {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 2rem;
}

.ns-section {
	padding: 8rem 0;
	position: relative;
}

.ns-section-alt {
	background-color: #0f151b;
}

/* ========== GRID SYSTEM ========== */
.ns-grid {
	display: grid;
	gap: 2rem;
}

.ns-grid-2 {
	grid-template-columns: repeat(2, 1fr);
}

.ns-grid-3 {
	grid-template-columns: repeat(3, 1fr);
}

.ns-grid-4 {
	grid-template-columns: repeat(4, 1fr);
}

/* ========== BUTTONS ========== */
.ns-btn {
	display: inline-block;
	padding: 1rem 2.5rem;
	font-family: 'Poppins', sans-serif;
	font-size: 1rem;
	font-weight: 600;
	text-align: center;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.28s ease-in-out;
	text-decoration: none;
	position: relative;
	overflow: hidden;
}

.ns-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.ns-btn:hover::before {
	width: 300px;
	height: 300px;
}

.ns-btn-primary {
	background: linear-gradient(135deg, #00c2a8, #00a08c);
	color: #fff;
	box-shadow: 0 4px 16px rgba(0, 194, 168, 0.3);
}

.ns-btn-primary:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 194, 168, 0.5);
}

.ns-btn-secondary {
	background: linear-gradient(135deg, #7c5cff, #6246ea);
	color: #fff;
	box-shadow: 0 4px 16px rgba(124, 92, 255, 0.3);
}

.ns-btn-secondary:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(124, 92, 255, 0.5);
}

.ns-btn-outline {
	background: transparent;
	color: #00c2a8;
	border: 2px solid #00c2a8;
}

.ns-btn-outline:hover {
	background: #00c2a8;
	color: #0a0d12;
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 194, 168, 0.4);
}

/* ========== CARDS ========== */
.ns-card {
	background: rgba(15, 21, 27, 0.6);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(27, 36, 48, 0.8);
	border-radius: 16px;
	padding: 2rem;
	transition: all 0.28s ease-in-out;
	position: relative;
	overflow: hidden;
}

.ns-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #00c2a8, #7c5cff);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.28s ease-in-out;
}

.ns-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 40px rgba(0, 194, 168, 0.2);
	border-color: rgba(0, 194, 168, 0.4);
}

.ns-card:hover::before {
	transform: scaleX(1);
}

.ns-card-featured {
	background: rgba(15, 21, 27, 0.9);
	border: 2px solid rgba(0, 194, 168, 0.3);
	box-shadow: 0 8px 32px rgba(124, 92, 255, 0.2);
}

/* ========== TOP BAR ========== */
.ns-topbar {
	background-color: #0f151b;
	border-bottom: 1px solid #1b2430;
	padding: 0.75rem 0;
	font-size: 0.9rem;
}

.ns-topbar-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.ns-topbar-left {
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
}

.ns-topbar-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #9aa3ad;
}

.ns-topbar-item i {
	color: #00c2a8;
	font-size: 0.85rem;
}

.ns-topbar-item a {
	color: #9aa3ad;
}

.ns-topbar-item a:hover {
	color: #00c2a8;
}

/* ========== HEADER ========== */
.ns-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	transition: all 0.28s ease-in-out;

	background: transparent;
}

.ns-header.ns-scrolled {
	background: rgba(15, 21, 27, 0.95);
	backdrop-filter: blur(20px);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.ns-header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
}

.ns-logo {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-family: 'Poppins', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: #e6eef4;
	text-decoration: none;
	transition: all 0.28s ease-in-out;
}

.ns-logo-icon {
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, #00c2a8, #7c5cff);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: #fff;
	box-shadow: 0 4px 16px rgba(0, 194, 168, 0.3);
	transition: all 0.28s ease-in-out;
}

.ns-logo:hover .ns-logo-icon {
	transform: rotate(180deg);
	box-shadow: 0 8px 24px rgba(124, 92, 255, 0.5);
}

.ns-nav {
	display: flex;
	gap: 2.5rem;
	align-items: center;
}

.ns-nav-link {
	font-family: 'Poppins', sans-serif;
	font-size: 1rem;
	font-weight: 500;
	color: #e6eef4;
	position: relative;
	padding: 0.5rem 0;
}

.ns-nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #00c2a8, #7c5cff);
	transition: width 0.28s ease-in-out;
}

.ns-nav-link:hover::after,
.ns-nav-link.active::after {
	width: 100%;
}

.ns-nav-link:hover {
	color: #00c2a8;
}

/* ========== MOBILE MENU ========== */
.ns-burger {
	display: none;
	flex-direction: column;
	gap: 6px;
	cursor: pointer;
	padding: 0.5rem;
}

.ns-burger-line {
	width: 28px;
	height: 3px;
	background: #00c2a8;
	border-radius: 2px;
	transition: all 0.28s ease-in-out;
}

.ns-burger.active .ns-burger-line:nth-child(1) {
	transform: rotate(45deg) translate(6px, 5px);
}

.ns-burger.active .ns-burger-line:nth-child(2) {
	opacity: 0;
}

.ns-burger.active .ns-burger-line:nth-child(3) {
	transform: rotate(-45deg) translate(8px, -8px);
}

.ns-mobile-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 320px;
	height: 100vh;
	background: rgba(15, 21, 27, 0.98);
	backdrop-filter: blur(20px);
	padding: 6rem 2rem 2rem;
	transition: right 0.4s ease-in-out;
	z-index: 1005;
	box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
}

.ns-mobile-menu.active {
	right: 0;
}

.ns-mobile-nav {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.ns-mobile-nav-link {
	font-family: 'Poppins', sans-serif;
	font-size: 1.25rem;
	font-weight: 500;
	color: #e6eef4;
	padding: 1rem;
	border-radius: 8px;
	transition: all 0.28s ease-in-out;
}

.ns-mobile-nav-link:hover {
	background: rgba(0, 194, 168, 0.1);
	color: #00c2a8;
	transform: translateX(8px);
}

/* ========== HERO SECTION ========== */
.ns-hero {
	min-height: 125vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding-top: 8rem;
	background: radial-gradient(
		ellipse at center,
		rgba(0, 194, 168, 0.05) 0%,
		transparent 70%
	);
}

.ns-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('assets/ns-hero.webp') center/cover;

	opacity: 0.3;
}

.ns-hero-content {
	max-width: 900px;
	text-align: center;
	position: relative;
	z-index: 1;
}

.ns-hero-title {
	background: linear-gradient(135deg, #e6eef4, #00c2a8);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 1.5rem;
}

.ns-hero-subtitle {
	font-size: 1.25rem;
	color: #9aa3ad;
	margin-bottom: 3rem;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.ns-hero-cta {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	margin-bottom: 4rem;
	flex-wrap: wrap;
}

/* ========== HERO FILTER ========== */
.ns-hero-filter {
	background: rgba(15, 21, 27, 0.6);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(27, 36, 48, 0.8);
	border-radius: 16px;
	padding: 2rem;
	margin-top: 3rem;
}

.ns-hero-filter-title {
	font-size: 1rem;
	font-weight: 600;
	color: #9aa3ad;
	margin-bottom: 1rem;
	text-align: center;
}

.ns-filter-tags {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.ns-filter-tag {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	background: rgba(27, 36, 48, 0.5);
	border: 1px solid #1b2430;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.28s ease-in-out;
	font-size: 0.95rem;
	color: #9aa3ad;
}

.ns-filter-tag input[type='checkbox'] {
	width: 18px;
	height: 18px;
	cursor: pointer;
	accent-color: #00c2a8;
}

.ns-filter-tag:hover {
	border-color: #00c2a8;
	background: rgba(0, 194, 168, 0.1);
	color: #00c2a8;
}

.ns-filter-tag.active {
	background: rgba(0, 194, 168, 0.15);
	border-color: #00c2a8;
	color: #00c2a8;
}

/* ========== AKADEMISCHE PFADE SECTION ========== */
.ns-pfade {
	background-color: #0f151b;
}

.ns-pfade-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
}

.ns-pfade-menu {
	background: rgba(10, 13, 18, 0.6);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(27, 36, 48, 0.8);
	border-radius: 16px;
	padding: 2rem;
	height: fit-content;
	position: sticky;
	top: 120px;
}

.ns-pfade-menu-title {
	font-size: 1.25rem;
	margin-bottom: 1.5rem;
	color: #e6eef4;
}

.ns-pfade-menu-item {
	padding: 1rem 1.5rem;
	margin-bottom: 0.5rem;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.28s ease-in-out;
	color: #9aa3ad;
	font-weight: 500;
	border-left: 3px solid transparent;
}

.ns-pfade-menu-item:hover,
.ns-pfade-menu-item.active {
	background: rgba(0, 194, 168, 0.1);
	color: #00c2a8;
	border-left-color: #00c2a8;
}

.ns-pfade-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
}

.ns-pfade-card {
	background: rgba(10, 13, 18, 0.6);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(27, 36, 48, 0.8);
	border-radius: 16px;
	padding: 2.5rem;
	transition: all 0.28s ease-in-out;
	position: relative;
	overflow: hidden;
}

.ns-pfade-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #00c2a8, #7c5cff);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.28s ease-in-out;
}

.ns-pfade-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 40px rgba(0, 194, 168, 0.2);
	border-color: rgba(0, 194, 168, 0.4);
}

.ns-pfade-card:hover::before {
	transform: scaleX(1);
}

.ns-pfade-icon {
	width: 64px;
	height: 64px;
	background: linear-gradient(135deg, #00c2a8, #7c5cff);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: #fff;
	margin-bottom: 1.5rem;
}

.ns-pfade-card-title {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #e6eef4;
}

.ns-pfade-meta {
	display: flex;
	gap: 1.5rem;
	margin-bottom: 1rem;
	flex-wrap: wrap;
}

.ns-pfade-meta-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #9aa3ad;
	font-size: 0.9rem;
}

.ns-pfade-meta-item i {
	color: #00c2a8;
}

.ns-pfade-description {
	color: #9aa3ad;
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.ns-pfade-level {
	display: inline-block;
	padding: 0.5rem 1rem;
	background: rgba(124, 92, 255, 0.15);
	border: 1px solid #7c5cff;
	border-radius: 6px;
	color: #7c5cff;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	width: 100%;
	text-align: center;
}

/* ========== STUDIEN SECTION ========== */
.ns-studien-layout {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 3rem;
}

.ns-studien-featured {
	background: rgba(15, 21, 27, 0.8);
	backdrop-filter: blur(20px);
	border: 2px solid rgba(0, 194, 168, 0.3);
	border-radius: 16px;
	padding: 3rem;
	height: fit-content;
	position: sticky;
	top: 120px;
}

.ns-studien-badge {
	display: inline-block;
	padding: 0.5rem 1rem;
	background: linear-gradient(135deg, #00c2a8, #7c5cff);
	border-radius: 6px;
	color: #fff;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
}

.ns-studien-featured-title {
	font-size: 1.75rem;
	margin-bottom: 1rem;
	color: #e6eef4;
}

.ns-studien-meta {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}

.ns-studien-meta-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: #9aa3ad;
	font-size: 0.95rem;
}

.ns-studien-meta-item i {
	color: #00c2a8;
	width: 20px;
}

.ns-studien-description {
	color: #9aa3ad;
	margin-bottom: 1.5rem;
	line-height: 1.7;
}

.ns-studien-price {
	background: rgba(124, 92, 255, 0.1);
	border: 1px solid rgba(124, 92, 255, 0.3);
	border-radius: 12px;
	padding: 1.5rem;
	margin-bottom: 1.5rem;
}

.ns-studien-price-label {
	color: #9aa3ad;
	font-size: 0.9rem;
	margin-bottom: 0.5rem;
}

.ns-studien-price-value {
	font-size: 2rem;
	font-weight: 700;
	color: #7c5cff;
}

.ns-studien-list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.ns-studien-card {
	background: rgba(15, 21, 27, 0.6);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(27, 36, 48, 0.8);
	border-radius: 16px;
	padding: 2rem;
	transition: all 0.28s ease-in-out;
}

.ns-studien-card:hover {
	transform: translateX(8px);
	box-shadow: 0 8px 24px rgba(124, 92, 255, 0.2);
	border-color: rgba(124, 92, 255, 0.4);
}

.ns-studien-card-title {
	font-size: 1.25rem;
	margin-bottom: 0.75rem;
	color: #e6eef4;
}

.ns-studien-card-description {
	color: #9aa3ad;
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 1rem;
}

.ns-studien-tags {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	margin-bottom: 2rem;
}

.ns-studien-tag {
	padding: 0.4rem 0.75rem;
	background: rgba(0, 194, 168, 0.1);
	border: 1px solid rgba(0, 194, 168, 0.3);
	border-radius: 6px;
	color: #00c2a8;
	font-size: 0.8rem;
	font-weight: 500;
}

/* ========== BEWERTUNGEN TIMELINE ========== */
.ns-bewertungen {
	background-color: #0f151b;
}

.ns-timeline {
	position: relative;
	max-width: 1000px;
	margin: 0 auto;
	padding: 2rem 0;
}

.ns-timeline::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(
		180deg,
		transparent,
		#00c2a8,
		#7c5cff,
		transparent
	);
	transform: translateX(-50%);
}

.ns-timeline-item {
	display: grid;
	grid-template-columns: 1fr 80px 1fr;
	gap: 2rem;
	margin-bottom: 4rem;
	align-items: center;
}

.ns-timeline-content {
	background: rgba(10, 13, 18, 0.6);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(27, 36, 48, 0.8);
	border-radius: 16px;
	padding: 2rem;
	transition: all 0.28s ease-in-out;
}

.ns-timeline-content:hover {
	transform: scale(1.05);
	box-shadow: 0 12px 32px rgba(0, 194, 168, 0.2);
	border-color: rgba(0, 194, 168, 0.4);
}

.ns-timeline-item:nth-child(even) .ns-timeline-content {
	grid-column: 3;
}

.ns-timeline-item:nth-child(odd) .ns-timeline-content {
	grid-column: 1;
}

.ns-timeline-marker {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #00c2a8, #7c5cff);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
	color: #fff;
	position: relative;
	z-index: 1;
	box-shadow: 0 4px 16px rgba(0, 194, 168, 0.4);
	grid-column: 2;
}

.ns-timeline-author {
	font-size: 1.1rem;
	font-weight: 600;
	color: #e6eef4;
	margin-bottom: 0.5rem;
}

.ns-timeline-role {
	color: #00c2a8;
	font-size: 0.9rem;
	font-weight: 500;
	margin-bottom: 1rem;
}

.ns-timeline-text {
	color: #9aa3ad;
	line-height: 1.7;
	font-style: italic;
}

/* ========== VERGLEICHE SECTION ========== */
.ns-vergleiche-tabs {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
}

.ns-tab-btn {
	padding: 1rem 2rem;
	background: rgba(15, 21, 27, 0.6);
	border: 1px solid rgba(27, 36, 48, 0.8);
	border-radius: 8px;
	color: #9aa3ad;
	font-family: 'Poppins', sans-serif;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.28s ease-in-out;
}

.ns-tab-btn:hover {
	border-color: #00c2a8;
	color: #00c2a8;
}

.ns-tab-btn.active {
	background: linear-gradient(135deg, #00c2a8, #7c5cff);
	border-color: transparent;
	color: #fff;
	box-shadow: 0 4px 16px rgba(0, 194, 168, 0.3);
}

.ns-tab-content {
	display: none;
}

.ns-tab-content.active {
	display: block;
	animation: ns-fade-in 0.4s ease-in-out;
}

.ns-comparison-table {
	background: rgba(15, 21, 27, 0.6);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(27, 36, 48, 0.8);
	border-radius: 16px;
	overflow-x: auto;
}

.ns-comparison-header {
	display: grid;
	grid-template-columns: 200px repeat(3, 1fr);
	gap: 1px;
	background: #1b2430;
}

.ns-comparison-header-cell {
	background: #0f151b;
	padding: 1.5rem;
	font-weight: 600;
	color: #e6eef4;
	text-align: center;
}

.ns-comparison-header-cell:first-child {
	text-align: left;
}

.ns-comparison-row {
	display: grid;
	grid-template-columns: 200px repeat(3, 1fr);
	gap: 1px;
	background: #1b2430;
}

.ns-comparison-cell {
	background: #0f151b;
	padding: 1.5rem;
	color: #9aa3ad;
}

.ns-comparison-cell:first-child {
	font-weight: 600;
	color: #00c2a8;
}

.ns-comparison-row:hover .ns-comparison-cell {
	background: rgba(0, 194, 168, 0.05);
}

/* ========== KONTAKT SECTION ========== */
.ns-kontakt {
	background-color: #0f151b;
}

.ns-kontakt-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
}

.ns-kontakt-form {
	background: rgba(10, 13, 18, 0.6);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(27, 36, 48, 0.8);
	border-radius: 16px;
	padding: 3rem;
}

.ns-kontakt-form-title {
	font-size: 2rem;
	margin-bottom: 1rem;
	color: #e6eef4;
}

.ns-kontakt-form-subtitle {
	color: #9aa3ad;
	margin-bottom: 2rem;
}

.ns-form-group {
	margin-bottom: 1.5rem;
}

.ns-form-label {
	display: block;
	margin-bottom: 0.5rem;
	color: #e6eef4;
	font-weight: 500;
}

.ns-form-input,
.ns-form-textarea {
	width: 100%;
	padding: 1rem 1.25rem;
	background: rgba(27, 36, 48, 0.5);
	border: 1px solid #1b2430;
	border-radius: 8px;
	color: #e6eef4;
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	transition: all 0.28s ease-in-out;
}

.ns-form-input:focus,
.ns-form-textarea:focus {
	outline: none;
	border-color: #00c2a8;
	box-shadow: 0 0 0 3px rgba(0, 194, 168, 0.1);
}

.ns-form-input.error,
.ns-form-textarea.error {
	border-color: #ff5252;
}

.ns-form-error {
	color: #ff5252;
	font-size: 0.85rem;
	margin-top: 0.5rem;
	display: none;
}

.ns-form-error.show {
	display: block;
}

.ns-form-textarea {
	min-height: 150px;
	resize: vertical;
}

.ns-form-note {
	background: rgba(124, 92, 255, 0.1);
	border: 1px solid rgba(124, 92, 255, 0.3);
	border-radius: 8px;
	padding: 1rem;
	margin-bottom: 1.5rem;
	color: #9aa3ad;
	font-size: 0.9rem;
	line-height: 1.6;
}

.ns-form-note strong {
	color: #7c5cff;
}

.ns-map {
	height: 100%;
	min-height: 400px;

	border-radius: 0.5rem;

	overflow: hidden;
}

@media (max-width: 768px) {
	.ns-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.ns-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 0.5rem;
	/* overflow: hidden; */
}

.ns-map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;

	height: 100%;
	border-radius: 0.5rem;

	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1;
	cursor: pointer;
}

/* ========== FOOTER ========== */
.ns-footer {
	background: #0f151b;
	border-top: 1px solid #1b2430;
	padding: 5rem 0 2rem;
}

.ns-footer-content {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 3rem;
	margin-bottom: 3rem;
}

.ns-footer-column h4 {
	font-size: 1.25rem;
	margin-bottom: 1.5rem;
	color: #e6eef4;
}

.ns-footer-description {
	color: #9aa3ad;
	line-height: 1.7;
	margin-bottom: 1rem;
}

.ns-footer-nav {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.ns-footer-link {
	color: #9aa3ad;
	transition: all 0.28s ease-in-out;
	display: inline-block;
}

.ns-footer-link:hover {
	color: #00c2a8;
	transform: translateX(4px);
}

.ns-footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 1rem;
	color: #9aa3ad;
}

.ns-footer-contact-item i {
	color: #00c2a8;
	margin-top: 0.25rem;
	min-width: 20px;
}

.ns-footer-bottom {
	padding-top: 2rem;
	border-top: 1px solid #1b2430;
	text-align: center;
	color: #9aa3ad;
	font-size: 0.95rem;
}

/* ========== COOKIE POPUP ========== */
.ns-cookie-popup {
	position: fixed;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%) translateY(150%);
	max-width: 600px;
	width: 90%;
	background: rgba(15, 21, 27, 0.98);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(0, 194, 168, 0.3);
	border-radius: 16px;
	padding: 2rem;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
	z-index: 10000;
	transition: transform 0.4s ease-in-out;
}

.ns-cookie-popup.show {
	transform: translateX(-50%) translateY(0);
}

.ns-cookie-title {
	font-size: 1.25rem;
	margin-bottom: 1rem;
	color: #e6eef4;
}

.ns-cookie-text {
	color: #9aa3ad;
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.ns-cookie-actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.ns-cookie-link {
	color: #00c2a8;
	text-decoration: underline;
}

/* ========== ANIMATIONS ========== */
@keyframes ns-fade-in {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes ns-fade-up {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes ns-slide-left {
	from {
		opacity: 0;
		transform: translateX(40px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes ns-zoom-in {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.ns-animate-fade-up {
	animation: ns-fade-up 0.8s ease-out;
}

.ns-animate-slide-left {
	animation: ns-slide-left 0.8s ease-out;
}

.ns-animate-zoom-in {
	animation: ns-zoom-in 0.8s ease-out;
}

/* ========== SECTION TITLE ========== */
.ns-section-title {
	text-align: center;
	margin-bottom: 4rem;
}

.ns-section-title h2 {
	background: linear-gradient(135deg, #e6eef4, #00c2a8);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 1rem;
}

.ns-section-subtitle {
	color: #9aa3ad;
	font-size: 1.15rem;
	max-width: 700px;
	margin: 0 auto;
}

/* ========== PRIVACY PAGE ========== */
.ns-legal-page {
	padding-top: 10rem;
	padding-bottom: 5rem;
	min-height: 100vh;
}

.ns-legal-content {
	max-width: 900px;
	margin: 0 auto;
	background: rgba(15, 21, 27, 0.6);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(27, 36, 48, 0.8);
	border-radius: 16px;
	padding: 4rem;
}

.ns-legal-content h1 {
	margin-bottom: 2rem;
}

.ns-legal-content h2 {
	font-size: 1.75rem;
	margin-top: 3rem;
	margin-bottom: 1.5rem;
	color: #00c2a8;
}

.ns-legal-content h3 {
	font-size: 1.35rem;
	margin-top: 2rem;
	margin-bottom: 1rem;
	color: #7c5cff;
}

.ns-legal-content p {
	margin-bottom: 1.5rem;
	line-height: 1.8;
}

.ns-legal-content ul {
	margin-left: 2rem;
	margin-bottom: 1.5rem;
}

.ns-legal-content ul li a {
	word-wrap: break-word;
}

.ns-legal-content li {
	margin-bottom: 0.75rem;
	color: #9aa3ad;
	line-height: 1.7;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
	.ns-pfade-layout {
		gap: 2rem;
	}

	.ns-studien-layout {
		grid-template-columns: 1fr;
	}

	.ns-studien-featured {
		position: relative;
		top: 0;
	}
}

@media (max-width: 992px) {
	.ns-section {
		padding: 5rem 0;
	}

	.ns-nav {
		display: none;
	}

	.ns-burger {
		display: flex;
	}

	.ns-pfade-layout {
		grid-template-columns: 1fr;
	}

	.ns-pfade-menu {
		position: relative;
		top: 0;
	}

	.ns-comparison-header,
	.ns-comparison-row {
		grid-template-columns: 150px repeat(3, 1fr);
	}

	.ns-timeline::before {
		left: 40px;
	}

	.ns-timeline-item {
		grid-template-columns: 80px 1fr;
		gap: 2rem;
	}

	.ns-timeline-marker {
		grid-column: 1;
	}

	.ns-timeline-content {
		grid-column: 2 !important;
	}

	.ns-kontakt-layout {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.ns-footer-content {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.ns-container {
		padding: 0 1.5rem;
	}

	.ns-topbar-content {
		flex-direction: column;
		align-items: flex-start;
	}

	.ns-hero {
		padding-top: 6rem;
	}

	.ns-hero-cta {
		flex-direction: column;
		align-items: stretch;
	}

	.ns-hero-cta .ns-btn {
		width: 100%;
	}

	.ns-grid-2,
	.ns-grid-3,
	.ns-grid-4 {
		grid-template-columns: 1fr;
	}

	.ns-pfade-cards {
		grid-template-columns: 1fr;
	}

	.ns-comparison-header,
	.ns-comparison-row {
		grid-template-columns: 1fr;
	}

	.ns-comparison-header-cell,
	.ns-comparison-cell {
		text-align: left;
	}

	.ns-footer-content {
		grid-template-columns: 1fr;
	}

	.ns-legal-content {
		padding: 2rem;
	}

	.ns-topbar {
		display: none;
	}

	.ns-legal-content h1 {
		font-size: 2rem;
	}
}

@media (max-width: 576px) {
	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.75rem;
	}

	.ns-cookie-popup {
		width: 95%;
		padding: 1.5rem;
	}

	.ns-vergleiche-tabs {
		flex-direction: column;
	}

	.ns-tab-btn {
		width: 100%;
	}

	.ns-logo {
		font-size: 1rem;
	}

	.ns-pfade-card-title {
		font-size: 1.2rem;
		word-wrap: break-word;
	}

	.ns-pfade-description {
		font-size: 0.8rem;
	}

	.ns-studien-layout {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}

	.ns-studien-featured-title {
		font-size: 1rem;
	}

	.ns-studien-card-title {
		font-size: 1rem;
		word-wrap: break-word;
	}

	.ns-studien-description {
		font-size: 0.8rem;
	}

	.ns-studien-featured {
		padding: 2rem;
	}
	.ns-timeline-item {
		gap: 0;
	}

	.ns-timeline-text {
		font-size: 0.7rem;
	}

	.ns-legal-content h1 {
		font-size: 1.1rem;
	}

	.ns-legal-content h2 {
		font-size: 1rem;
	}
}
