/* ============================================
   CURSOR & INTERACTIVE ELEMENTS
   ============================================ */
a,
a:hover button,
.g-button,
input[type="submit"] {
	cursor: pointer;
}

/* ============================================
   HEADER
   ============================================ */
.header {
	width: 100%;
	position: fixed;
	top: 0;
	background: url("/img/hintergrund-header.svg") no-repeat;
	background-size: cover;
	background-position: top right;
	background-color: transparent;
	height: 130px;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	filter: drop-shadow(0 0 14px rgba(0, 0, 0, 0.25));
	transition: height 0.3s ease;
}

.header::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to right,
		var(--color-white),
		var(--color-wave-dark),
		var(--color-white)
	);
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: -1;
}

.header.scrolled {
	height: 80px;
	box-shadow: 0 0 14px rgba(0, 0, 0, 0.5);
}

.header.scrolled::before {
	opacity: 1;
}

.header-container {
	max-width: 1400px;
	width: 100%;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px;
}

.logo {
	flex: 0 0 auto;
	width: 220px;
	height: auto;
	transition: 0.4s all ease-in-out;
}

.logo-img {
	display: block;
	height: 80px;
	width: auto;
	max-width: 100%;
	object-fit: contain;
	transition: height 0.3s ease-in-out, width 0.3s ease-in-out,
		opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.header.scrolled .logo-img {
	height: 40px;
}

.mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 10px;
	z-index: 1000000;
	position: relative;
}

.mobile-menu-toggle .menu-icon {
	width: 60px;
	height: 60px;
	display: block;
}

.mobile-menu-toggle .menu-icon #Menu-Balken_oben,
.mobile-menu-toggle .menu-icon #Menu-Balken_mitte,
.mobile-menu-toggle .menu-icon #Menu-Balken_unten {
	transform-origin: 117.48px 117.48px;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.mobile-menu-toggle.active .menu-icon #Menu-Balken_oben {
	transform: rotate(45deg) translateY(37px);
}

.mobile-menu-toggle.active .menu-icon #Menu-Balken_mitte {
	opacity: 0;
	transform: scale(0);
}

.mobile-menu-toggle.active .menu-icon #Menu-Balken_unten {
	transform: rotate(-45deg) translateY(-37px);
}

.header-container.menu-active .logo-img {
	z-index: 1000001;
	opacity: 0.3;
	position: relative;
	mix-blend-mode: exclusion;
	transition: mix-blend-mode 0.3s ease;
}

.navigation {
	display: flex;
	gap: 0px;
}

.nav-link {
	color: var(--color-blue-dark-1);
	text-decoration: none;
	font-weight: 500;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 10px 16px;
	transition: color 0.3s ease-in-out;
	position: relative;
}

.nav-link::after {
	content: "";
	position: absolute;
	top: 5px;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 32px);
	height: 2px;
	background-color: var(--color-orange-light);
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}

.nav-link:hover {
	color: var(--color-orange-light);
}

.nav-link.active::after {
	opacity: 1;
}

.nav-link.active {
	color: var(--color-orange-dark);
	padding: 10px 16px;
	border-radius: 4px;
}

.header.scrolled .navigation .nav-link:hover {
	color: var(--color-orange-dark);
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero-section {
	position: relative;
	width: 100%;
	height: 700px;
	background-image: url("../img/panorama-tonstudio-hoergut-an-der-buehlot.webp");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.recording-banner {
	position: absolute;
	bottom: 0;
	left: 20%;
	transform: translateX(-20%) translateY(50%);
	width: 80%;
	background: linear-gradient(
		to right,
		rgba(245, 250, 255, 0.9) 0%,
		rgba(220, 235, 250, 0.75) 10%,
		var(--color-wave-dark) 35%,
		var(--color-wave-dark) 65%,
		rgba(220, 235, 250, 0.75) 90%,
		rgba(245, 250, 255, 0.9) 100%
	);
	color: var(--color-white);
	text-align: center;
	padding: 30px 0;
	font-size: clamp(1.5rem, 4vw, 32px);
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 3px;
	border-radius: 20px 100px 20px 100px;
	z-index: 9999 !important;
}

.equipment-hero {
	position: relative;
	width: 100%;
	min-height: 400px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
	margin: 12rem auto 2rem auto;
	padding: 40px 2rem;
	max-width: 1400px;
}

.equipment-hero-image {
	width: 600px;
	height: 400px;
}

.equipment-hero-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.equipment-hero-content {
	text-align: left;
	color: var(--color-black);
	z-index: 2;
	position: relative;
}

.equipment-hero-content h1 {
	color: var(--color-white);
	font-weight: bold;
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.equipment-hero-content p {
	color: var(--color-white);
	opacity: 0.95;
	font-weight: 500;
}

.about-hero,
.leistungen-hero {
	position: relative;
	width: 100%;
	height: 450px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 50px;
	padding: 40px 20px;
	background: linear-gradient(
		to bottom,
		var(--color-blue-dark),
		transparent 100%
	);
}

.about-hero-content,
.leistungen-hero-content {
	text-align: center;
	color: var(--color-white);
	z-index: 2;
	position: relative;
}

.about-hero-content h1,
.leistungen-hero-content h1 {
	font-weight: 700;
	margin-bottom: 16px;
	text-transform: none;
	letter-spacing: -1px;
	font-size: clamp(2.5rem, 6vw, 4rem);
	line-height: 1.1;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
	color: var(--color-white);
}

.about-hero-content p {
	color: var(--color-white);
	opacity: 0.95;
	font-weight: 400;
	font-size: clamp(1.1rem, 2.5vw, 1.5rem);
	letter-spacing: 0.5px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
	margin-top: 8rem;
}

.service-card {
	text-align: center;
	position: relative;
}

.service-card:nth-child(1) {
	border: 5px solid var(--color-blue-dark-1);
}
.service-card:nth-child(2) {
	border: 5px solid var(--color-blue-dark-2);
}
.service-card:nth-child(3) {
	border: 5px solid var(--color-blue-dark-3);
}

.service-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.service-title {
	font-weight: bold;
	margin-bottom: 15px;
	text-transform: uppercase;
}

.service-card:nth-child(1) .service-title {
	color: var(--color-blue-dark-1);
}
.service-card:nth-child(2) .service-title {
	color: var(--color-blue-dark-2);
}
.service-card:nth-child(3) .service-title {
	color: var(--color-blue-dark-3);
}

.service-description {
	color: var(--color-black);
	font-weight: 550;
	line-height: 1.6;
	margin-bottom: 70px;
	opacity: 0.9;
}

/* Gemeinsame Button-Klasse */
.btn-standard {
	background-color: var(--color-orange-light);
	color: var(--color-white);
	padding: 15px 30px;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.2s ease;
	text-decoration: none;
	display: inline-block;
	text-align: center;
}

.btn-standard:hover {
	background-color: var(--color-orange-dark);
	transform: translateY(-2px);
}

.btn-standard:active {
	transform: translateY(0);
}

.service-button {
	position: absolute;
	bottom: 20px;
	left: 50%;
	width: 70%;
	transform: translateX(-50%);
}

.service-button:hover {
	transform: translateX(-50%) translateY(-2px);
}

/* ============================================
   BUNDLE SECTION
   ============================================ */
/* ============================================
   SERVICES DETAILS SECTION
   ============================================ */
.services-details-section {
	padding: 8rem 20px 4rem 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.services-details-container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	margin-bottom: 4rem;
}

.service-detail-card {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 2rem;
	align-items: start;
	padding: 2rem;
	border-radius: calc(1rem - 5px);
}

.service-detail-logo {
	margin: 0;
	flex-shrink: 0;
}

.service-detail-content {
	display: flex;
	flex-direction: column;
}

.service-detail-title {
	font-weight: 700;
	font-size: clamp(1.8rem, 3vw, 2.5rem);
	color: var(--color-blue-dark-1);
	margin-bottom: 1.5rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-align: left;
}

.service-detail-text {
	color: var(--color-black);
	font-weight: 400;
	line-height: 1.8;
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	text-align: left;
	margin: 0;
}

.bundle-section {
	padding: 4rem 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.bundle-container {
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	margin-bottom: 3rem;
}

.bundle-card {
	text-align: center;
	position: relative;
	width: 100%;
	max-width: 400px;
	padding: 2rem;
	border-radius: calc(1rem - 5px);
	overflow: hidden;
}

.bundle-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0.6rem;
	background-color: var(--color-orange-light);
}

.bundle-card::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0.6rem;
	background-color: var(--color-orange-light);
}

.bundle-title {
	font-weight: bold;
	margin-bottom: 10px;
	font-size: clamp(1.5rem, 4vw, 2rem);
	color: var(--color-dark-blue);
	/*background-color: rgb(235, 114, 31, 0.6);
	border-radius: 10px;*/
}

.bundle-price {
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	font-weight: 550;
	color: var(--color-orange-light);
	margin-bottom: 20px;
}

.bundle-list {
	list-style: none;
	padding: 0;
	margin: 0 0 20px 0;
	text-align: left;
}

.bundle-list li {
	padding: 8px 0;
	color: var(--color-black);
	font-weight: 550;
	line-height: 1.6;
	position: relative;
	padding-left: 20px;
}

.bundle-list li::before {
	content: "⦁";
	position: absolute;
	left: 0;
	color: var(--color-orange-light);
	font-weight: bold;
}

.bundle-info {
	text-align: center;
	max-width: 800px;
	margin: 4rem auto 0 auto;
	border-radius: calc(1rem - 5px);
	padding: 2rem;
}

.bundle-description {
	color: var(--color-black);
	font-weight: 500;
	line-height: 1.6;
	margin-bottom: 30px;
	opacity: 0.9;
}

.bundle-button {
	display: inline-block;
	text-align: center;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-container {
	background-color: var(--color-grey-light);
	padding: 4rem 20px;
	max-width: 1200px;
	width: 100%;
	margin: 4rem auto 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	border-radius: calc(1rem - 5px);
}

.cta-content h2 {
	width: fit-content;
	color: var(--color-wave-dark);
	font-size: clamp(1.6rem, 3vw, 2rem);
	font-weight: bold;
	margin-bottom: 60px;
	position: relative;
	padding-bottom: 15px;
}

.cta-content h2 span {
	color: var(--color-orange-light);
	margin-left: 2rem;
}

.cta-content h2::after {
	content: "";
	position: absolute;
	top: 100%;
	bottom: 0;
	left: 15%;
	transform: translateX(-15%);
	width: 80%;
	height: 60px;
	background: url("/img/welle-blau.svg") no-repeat;
	background-size: contain;
	animation: wave 3s ease-in-out infinite;
}

@keyframes wave {
	0%,
	100% {
		transform: scaleX(1);
	}
	50% {
		transform: scaleX(1.1);
	}
}

.cta-description {
	color: var(--color-black);
	line-height: 1.8;
	margin-bottom: 30px;
}

.cta-image {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 8px;
	box-shadow: 0 10px 30px
		color-mix(in srgb, var(--color-black) 10%, transparent);
}

.booking-button {
	position: relative;
	transform: none;
	left: 0;
	margin-top: 60px;
	text-align: center;
}

.booking-button:hover {
	transform: translateY(-2px);
}

.booking-button:active {
	transform: translateY(0);
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-container {
	max-width: 1200px;
	margin: 6rem auto 0 auto;
	padding: 10rem 20px 80px 20px;
}

.contact-container h2 {
	color: var(--color-blue-dark-1);
	font-weight: bold;
	margin-bottom: 20px;
}

.contact-container > p {
	color: var(--color-black);
	margin-bottom: 40px;
}

.contact-form-wrapper {
	margin-top: 4rem;
}

.form-columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	margin-bottom: 30px;
}

.form-column {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.form-group {
	margin-bottom: 25px;
}

.form-group label {
	display: block;
	color: var(--color-blue-dark-1);
	font-weight: 600;
	font-size: 16px;
	margin-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid var(--color-blue-dark-2);
	border-radius: 8px;
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
	color: var(--color-black);
	background-color: rgba(255, 255, 255, 0.75);
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--color-orange-light);
	box-shadow: 0 0 0 3px rgba(235, 114, 31, 0.1);
}

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

.package-selection {
	display: flex;
	flex-direction: column;
}

.package-label {
	color: var(--color-blue-dark-1);
	font-weight: 600;
	font-size: 16px;
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.radio-group {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.radio-option {
	display: flex;
	align-items: center;
	cursor: pointer;
	padding: 15px;
	border: 2px solid var(--color-blue-dark-2);
	border-radius: 8px;
	background-color: rgba(255, 255, 255, 0.75);
	transition: all 0.3s ease;
}

.radio-option:hover {
	border-color: var(--color-orange-light);
	background-color: rgba(235, 114, 31, 0.05);
}

.radio-option input[type="radio"],
.radio-option input[type="checkbox"] {
	margin-right: 12px;
	width: 20px;
	height: 20px;
	cursor: pointer;
	accent-color: var(--color-orange-light);
	flex-shrink: 0;
}

.radio-option input:checked + .radio-text {
	color: var(--color-orange-dark);
	font-weight: 600;
}

.radio-text {
	color: var(--color-black);
	font-size: 16px;
	transition: color 0.3s ease, font-weight 0.3s ease;
}

.recaptcha-group {
	margin: 30px 0;
	display: flex;
	justify-content: flex-start;
}

.checkbox-group {
	margin-bottom: 30px;
}

.checkbox-label {
	display: flex;
	align-items: center;
	cursor: pointer;
	font-size: 16px;
	color: var(--color-black);
}

.checkbox-label input[type="checkbox"] {
	margin-right: 10px;
	width: 18px;
	height: 18px;
	cursor: pointer;
	accent-color: var(--color-orange-light);
}

.checkbox-label a {
	color: var(--color-orange-light);
	text-decoration: underline;
}

.checkbox-label a:hover {
	color: var(--color-orange-dark);
}

.submit-button {
	width: 100%;
	max-width: 300px;
	margin: 0;
	display: block;
}

.form-message {
	padding: 15px 20px;
	border-radius: 8px;
	margin-top: 20px;
	font-size: 16px;
}

.form-message.success {
	background-color: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.form-message.error {
	background-color: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

.form-message.error ul {
	margin: 0;
	padding-left: 20px;
}

.form-message.error li {
	margin-bottom: 5px;
}

/* ============================================
   EQUIPMENT SECTION
   ============================================ */

.equipment-container {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	grid-auto-rows: auto;
}

.equipment-category {
	border-radius: 20px;
	padding: 1rem;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
	border: none;
	transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
		transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	opacity: 0;
	transform: translateY(40px) scale(0.95);
	position: relative;
	overflow: hidden;
	color: var(--color-black);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	align-items: start;
	grid-template-rows: auto 1fr;
}

.equipment-category.animate {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.equipment-category-content {
	display: flex;
	flex-direction: column;
	align-self: start;
}

.equipment-category-image {
	width: 300px;
	height: 200px;
	overflow: hidden;
	margin: auto;
}

.equipment-category-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.category-header {
	grid-column: 1 / -1;
	margin-bottom: 18px;
	padding-bottom: 12px;
	border-bottom: 2px solid rgba(51, 72, 120, 0.2);
	position: relative;
	z-index: 2;
	transition: border-color 0.3s ease;
}

.category-title {
	min-height: auto;
	font-weight: 700;
	font-size: clamp(1.2rem, 2.2vw, 1.6rem);
	color: var(--color-blue-dark-1);
	text-transform: uppercase;
	position: relative;
	letter-spacing: 0.5px;
	line-height: 1.2;
	margin: 0;
}

.equipment-list {
	list-style: none;
	padding: 0;
	margin: 0;
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.equipment-item {
	padding: 10px 0 10px 28px;
	color: var(--color-black);
	line-height: 1.5;
	position: relative;
	font-size: clamp(0.9rem, 1.3vw, 1rem);
	border-radius: 6px;
	margin-left: -8px;
	padding-left: 16px;
}

.equipment-item::before {
	content: "→";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	color: var(--color-orange-light);
	font-size: 20px;
	font-weight: 300;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-container {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 48px;
	align-items: stretch;
	position: relative;
	z-index: 1;
}

.about-card {
	border: 1px solid rgba(51, 72, 120, 0.08);
	backdrop-filter: blur(10px);
	height: 100%;
}

.about-card::after {
	content: "";
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(
		circle,
		rgba(3, 140, 178, 0.03) 0%,
		transparent 70%
	);
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
}

.about-card:nth-child(1)::before {
	background: linear-gradient(
		180deg,
		var(--color-blue-dark-1) 0%,
		var(--color-orange-light) 100%
	);
}

.about-card:nth-child(2)::before {
	background: linear-gradient(
		180deg,
		var(--color-blue-dark-2) 0%,
		var(--color-orange-light) 100%
	);
}

.about-card:nth-child(1)::after {
	background: radial-gradient(
		circle,
		rgba(51, 72, 120, 0.04) 0%,
		transparent 70%
	);
}

.about-card:nth-child(2)::after {
	background: radial-gradient(
		circle,
		rgba(82, 104, 157, 0.04) 0%,
		transparent 70%
	);
}

.about-card.animate::before,
.about-card.animate::after {
	opacity: 1;
}

.about-card-header {
	margin-bottom: 36px;
	padding-bottom: 28px;
	border-bottom: 2px solid rgba(51, 72, 120, 0.08);
	position: relative;
	z-index: 2;
}

.about-card-header::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 60px;
	height: 2px;
	background: linear-gradient(
		90deg,
		var(--color-orange-light) 0%,
		transparent 100%
	);
	transition: width 0.5s ease;
}

.about-card.animate .about-card-header::after {
	width: 120px;
}

.about-card-title {
	font-weight: 700;
	color: var(--color-blue-dark-1);
	text-transform: none;
	letter-spacing: -1px;
	margin: 0 0 14px 0;
	font-size: 2.25rem;
	line-height: 1.15;
	position: relative;
}

.about-card:nth-child(1) .about-card-title {
	color: var(--color-blue-dark-1);
}
.about-card:nth-child(2) .about-card-title {
	color: var(--color-blue-dark-2);
}

.about-card-subtitle {
	color: var(--color-orange-light);
	font-weight: 600;
	font-size: 0.95rem;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 2px;
	position: relative;
	padding-left: 16px;
}

.about-card-subtitle::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	background: var(--color-orange-light);
	border-radius: 50%;
	opacity: 0.8;
}

.about-card-content {
	color: var(--color-black);
	line-height: 1.85;
	flex: 1;
	position: relative;
	z-index: 2;
}

.about-card-content::before {
	content: "\201C";
	position: absolute;
	top: -20px;
	left: -10px;
	font-size: 120px;
	font-family: Georgia, serif;
	color: rgba(51, 72, 120, 0.05);
	line-height: 1;
	z-index: 0;
	pointer-events: none;
}

.about-card-content p {
	margin-bottom: 24px;
	font-size: 1.0625rem;
	color: rgba(42, 42, 42, 0.85);
	position: relative;
	z-index: 1;
}

.about-card-content p:last-child {
	margin-bottom: 0;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
	background: linear-gradient(
		to top,
		var(--color-blue-dark-3),
		var(--color-blue-light)
	);
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: center;
	margin-top: 12rem;
	padding-block: 1rem;
	z-index: 10;
}

.footer-content {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 1rem;
	padding: 2rem 1rem;
	cursor: default !important;
}

footer h3 {
	color: var(--color-black);
	font-size: clamp(1.125rem, 3vw, 1.4rem);
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 1rem;
	border-bottom: 2px solid var(--color-orange-light);
}

footer .col {
	line-height: 2.5;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

footer .col p {
	background-color: transparent !important;
	color: var(--color-white);
	font-weight: 600;
	margin-block: 0;
	padding: 0 !important;
	line-height: 2.5;
	font-size: clamp(1rem, 3vw, 1.2rem);
	font-weight: normal;
}

.footer-legal {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	border-top: 2px solid var(--color-blue-light);
	padding-top: 2rem;
}

.footer-legal p {
	margin-block: 0;
	font-size: clamp(1rem, 3vw, 1.25rem);
	font-weight: normal;
	color: var(--color-white);
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.footer-links a,
.footer-links p {
	color: var(--color-blue-light);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-links a {
	color: var(--color-blue-dark-1) !important;
	font-size: clamp(1rem, 3vw, 1.25rem);
}

.footer-links a:hover {
	color: var(--color-orange-dark) !important;
}

#email-address-footer a {
	color: var(--color-blue-dark-1) !important;
	font-size: clamp(1rem, 3vw, 1.25rem);
	font-weight: 500;
	text-decoration: none !important;
}

.social-icons {
	display: flex;
	justify-content: flex-start;
	gap: 1rem;
	margin-top: 0.5rem;
}

.social-icons a {
	display: inline-block;
	transition: transform 0.2s ease;
}

.social-icons a:hover {
	transform: scale(1.1);
}

.social-icons img {
	width: 32px;
	height: 32px;
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background: transparent;
	border: none;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
	z-index: 9999999 !important;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.scroll-to-top.visible {
	opacity: 1;
	visibility: visible;
}

.scroll-to-top:hover {
	transform: translateY(-5px);
}

.scroll-to-top img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* ============================================
   UTILITY
   ============================================ */
ul {
	list-style: none;
}

ul li {
	margin-bottom: 1rem;
}

.legal-notice {
	margin-top: 15rem !important;
	padding: 0 20px;
}

.site-title {
	margin-bottom: 4rem !important;
	left: -10px !important;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
	.header {
		background: none;
		height: 80px;
	}

	.header::before {
		opacity: 1;
	}

	.header-container {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		gap: 0;
		margin-top: 0px;
	}

	.header .logo {
		width: 150px;
	}

	.mobile-menu-toggle {
		display: block;
	}

	.navigation {
		position: fixed;
		top: 0;
		right: -100%;
		width: 80%;
		max-width: 300px;
		height: 100vh;
		background: linear-gradient(
			to bottom,
			var(--color-white),
			var(--color-wave-dark)
		);
		backdrop-filter: blur(120px);
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		padding: 100px 30px 30px 30px;
		gap: 20px;
		box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
		transition: right 0.6s ease-in-out;
		overflow-y: auto;
	}

	.navigation.active {
		right: 0;
		z-index: 999998 !important;
	}

	.nav-link {
		font-size: 18px;
		padding: 10px 0;
		width: 100%;
		border-bottom: 1px solid rgba(0, 0, 0, 0.2);
		transition: color 0.3s ease, transform 0.3s ease;
	}

	.nav-link:hover {
		color: var(--color-orange-light);
		transform: translateX(10px);
	}

	.nav-link.active {
		background-color: var(--color-orange-light);
		color: var(--color-white);
		padding: 10px 16px;
		border-radius: 4px;
		transform: none;
	}

	.nav-link.active::after {
		display: none;
	}

	@media (max-width: 922px) {
		.nav-link.active {
			color: var(--color-orange-light);
			background-color: transparent;
		}
	}

	.hero-image {
		height: 400px;
	}

	.recording-banner {
		padding: 20px 0;
	}

	.menu-overlay {
		position: fixed;
		top: -250px;
		left: 0;
		bottom: 0;
		right: 0;
		width: 100vw;
		height: 100dvh;
		background: var(--color-black-80-transparent);
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.4s ease, visibility 0.4s ease, top 0.3s ease,
			height 0.3s ease;
		pointer-events: none;
		margin: 0;
		padding: 0;
		z-index: 999990;
	}

	.menu-overlay.active {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		z-index: -1 !important;
	}

	.service-card:nth-child(3) {
		grid-column: 1 / -1;
		justify-self: center;
		width: min(433px, 100%);
	}

	.cta-container {
		grid-template-columns: 1fr;
	}

	.cta-image {
		order: -1;
	}

	.form-columns {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.radio-group {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
		gap: 10px;
	}

	.radio-option {
		width: 100%;
		min-width: 0;
	}

	.contact-container {
		padding: 8rem 20px 40px 20px;
		margin-top: 5vh;
	}

	.equipment-container {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}

	.about-container {
		grid-template-columns: 1fr;
		gap: 40px;
		max-width: 800px;
	}

	.about-card {
		height: 100%;
	}

	.card-logo img,
	.transparent-logo img {
		height: 50px;
		width: 50px;
	}

	.footer-legal {
		flex-direction: column;
		text-align: center;
	}

	.footer-links {
		justify-content: center;
	}

	.footer-content {
		grid-template-columns: 1fr;
		padding: 2rem 1rem;
	}
}

@media (max-width: 768px) {
	body {
		background-size: contain;
	}

	.hero-section {
		position: relative !important;
		top: -5vh !important;
		height: 80vh;
		overflow: visible !important;
		background-attachment: scroll !important;
	}

	.recording-banner {
		position: absolute !important;
		width: calc(100% - 20px);
		left: 50%;
		bottom: 0;
		transform: translateX(-50%) translateY(50%);
		margin: 0 auto;
		border-radius: calc(1rem - 5px);
		height: fit-content;
	}

	.services-details-container {
		gap: 2rem;
	}

	.service-detail-card {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		text-align: center;
	}

	.service-detail-logo {
		margin: 0 auto;
	}

	.service-detail-title {
		text-align: center;
	}

	.service-detail-text {
		text-align: center;
	}

	.card-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.service-card:nth-child(3) {
		width: 100%;
	}

	.radio-group {
		flex-direction: column;
	}

	.radio-option {
		width: 100%;
	}

	.equipment-container {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.equipment-hero {
		grid-template-columns: 1fr;
		gap: 30px;
		padding: 20px;
		margin-top: 120px;
		min-height: auto;
		justify-items: center;
		align-items: center;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.equipment-hero-image {
		width: 100%;
		max-width: 400px;
		height: 250px;
		margin: 0 auto;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.equipment-hero-image img {
		width: 100%;
		height: 100%;
		object-fit: contain;
		margin: 0 auto;
	}

	.equipment-hero-content {
		text-align: center;
		width: 100%;
		max-width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	.equipment-category {
		padding: 1rem;
		grid-template-columns: 1fr;
	}

	.equipment-category-image {
		order: -1;
	}

	.about-hero,
	.leistungen-hero {
		height: 350px;
		margin-top: 50px;
	}

	.card-logo,
	.transparent-logo {
		margin-bottom: 18px;
	}

	.card-logo img,
	.transparent-logo img {
		height: 45px;
		width: 45px;
	}
}

@media (max-width: 1400px) {
	.equipment-container {
		max-width: 1200px;
	}
}

@media (max-width: 1200px) {
	.about-container {
		max-width: 1200px;
		gap: 40px;
	}
}

@media (max-width: 480px) {
	.about-hero,
	.leistungen-hero {
		height: 300px;
	}

	.equipment-hero {
		margin-top: 80px;
		padding: 15px;
		gap: 25px;
	}

	.equipment-hero-image {
		max-width: 100%;
		height: 200px;
	}

	.equipment-hero-content h1 {
		font-size: clamp(1.5rem, 5vw, 2rem);
	}

	.equipment-hero-content p {
		font-size: clamp(0.9rem, 3vw, 1.1rem);
	}
}
