/* ========================================================================== */
/* CSS-Klassen für SWS4INNOVATION-Webseiten                                   */
/* ========================================================================== */

	/* ========================================================================== */
	/* 1. DESIGN SYSTEM & CSS VARIABLES                                           */
	/* ========================================================================== */
	:root {
		--primary-dark: #0F1E36;
		--primary-navy: #1A2B4C;
		--primary-light: #253A60;
		--accent-orange: #E65C00;
		--accent-orange-hover: #FF6B0B;
		--bg-light: #F8FAFC;
		--bg-card: #FFFFFF;
		--text-main: #1E293B;
		--text-muted: #64748B;
		--border-color: #E2E8F0;
		--font-main: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;

		--text-xs:   clamp(0.75rem, 0.72rem + 0.15vw, 0.84rem);
		--text-sm:   clamp(0.92rem, 0.88rem + 0.15vw, 1.00rem);
		--text-base: clamp(1.00rem, 0.98rem + 0.18vw, 1.06rem);
		--text-lg:   clamp(1.14rem, 1.06rem + 0.28vw, 1.28rem);
		--text-xl:   clamp(1.50rem, 1.32rem + 0.45vw, 1.80rem);
		--text-2xl:  clamp(1.95rem, 1.72rem + 0.75vw, 2.35rem);

		--radius-md: 0.5rem;
		--radius-lg: 0.85rem;

		--shadow-sm: 0 1px 2px rgba(21, 46, 92, 0.04);
		--shadow-md: 0 10px 28px rgba(21, 46, 92, 0.06);

		/* Landingpage-Schriftart für alles vereinheitlicht */
		--font-body:	var(--font-main);
		--font-display: var(--font-main);

		/* Wiederherstellung der alten, größeren Content-Breite */
		--content-default: 1280px;
	}

	/* ========================================================================== */
	/* 2. GLOBAL RESETS                                                           */
	/* ========================================================================== */
	*,
	*::before,
	*::after {
		box-sizing: border-box;
		margin: 0;
		padding: 0;
	}

	html {
		sroll-behavior: smooth;
		scroll-padding-top: 3.5rem;  /* sorgt dafür, dass die Sektions-Überschriften beim Aufrufen von Untermenü-Begriffen auch unter der 2-zeiligen Kopfzeile angezeigt werden */
	}

	section[id] {
		scroll-margin-top: 3.5rem;  /* sorgt dafür, dass die Sektions-Überschriften beim Aufrufen von Untermenü-Begriffen auch unter der 2-zeiligen Kopfzeile angezeigt werden */
	}

	body {
		font-family: var(--font-main);
		font-size: var(--text-base);
		line-height: 1.68;
		color: var(--text-main);
		background: var(--bg-light);  /* macht den Body-Hintergrund weiß */
		-webkit-font-smoothing: antialiased;
	}

	img {
		display: block;
		max-width: 100%;
		height: auto;
	}

	a {
		color: inherit;
		text-decoration: none;
	}

	ul {
		list-style: none;
	}

	h1, h2, h3, h4, p {
		margin: 0;
	}

	/* ========================================================================== */
	/* 3. TYPOGRAFIE & ÜBERSCHRIFTEN                                              */
	/* ========================================================================== */
	h1, h2, h3 {
		font-family: var(--font-main);
		font-weight: 700;
		letter-spacing: -0.01em;
		text-wrap: pretty;
		width: 100%;
		text-align: center;
	}

	h1 {
		font-size: var(--text-2xl);
		color: var(--primary-navy);
		line-height: 1.25;
	}

	h2 {
		font-size: var(--text-xl);
		color: var(--primary-navy);
		line-height: 1.3;
	}

	h3 {
		font-size: var(--text-lg);
		color: var(--primary-navy);
		line-height: 1.35;
	}

	.h2-left {
		text-align: left;
	}

	.h2-left-spaced {
		text-align: left;
		margin-top: 0.5em;
	}

	.text-strong {
	  font-weight: 700;
	}

	.text-orange {
		color: var(--accent-orange);
	}

	/* ========================================================================== */
	/* 4. HEADER & NAVIGATION (2-ZEILIG MIT DROPDOWNS) - KOMPAKT GEHALTEN         */
	/* ========================================================================== */
	header {
		position: sticky;
		top: 0;
		background-color: var(--primary-dark);
		color: #FFFFFF;
		z-index: 1000;
		box-shadow: 0 2px 10px rgba(0,0,0,0.2);
	}

	.header-row {
		max-width: 1280px;
		margin: 0 auto;
		padding: 10px 20px;
		display: flex;
		align-items: center;
	}

	.header-top {
		justify-content: flex-end;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		font-size: 0.95rem;
	}

	.header-contact {
		display: flex;
		align-items: center;
		gap: 20px;
	}

	.header-contact a {
		color: #CBD5E1;
		transition: color 0.2s;
	}

	.header-contact a:hover {
		color: #FFFFFF;
	}

	.btn-header {
		background-color: var(--accent-orange);
		color: #FFFFFF !important;
		padding: 6px 14px;
		border-radius: 4px;
		font-weight: 600;
		transition: background 0.2s;
	}

	.btn-header:hover {
		background-color: var(--accent-orange-hover);
	}

	.header-bottom {
		justify-content: space-between;
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.menu-toggle {
		display: none;
	}

	.logo {
		font-size: 1.4rem;
		font-weight: 700;
		letter-spacing: 1px;
		color: #FFFFFF;
		text-decoration: none;
		display: inline-block;
	}

	.logo span {
		color: var(--accent-orange);
	}

	/* Logo-Bildgröße auf Desktop */
	.logo-image {
		height: 30px;
		width: auto;
		max-width: 100%;
	}

	.main-nav > ul {
		display: flex;
		gap: 20px;
		list-style: none;
	}

	.nav-item {
		position: relative;
	}

	.nav-link {
		color: #E2E8F0;
		font-size: 0.95rem;
		font-weight: 500;
		padding: 8px 4px;
		display: flex;
		align-items: center;
		gap: 5px;
		transition: color 0.2s;
	}

	.nav-link:hover {
		color: var(--accent-orange);
	}

	.nav-link::after {
		content: '▾';
		font-size: 0.75rem;
		color: #94A3B8;
	}

	.nav-link:hover::after {
		color: var(--accent-orange);
	}

	.nav-link.is-active {
	  color: var(--accent-orange);  /* färbt den Menübegriff der aktuellen Seite orange */
	}

	.nav-link.is-active::after {
	  color: var(--accent-orange);  /* färbt den Menübegriff der aktuellen Seite orange */
	}

	.dropdown-menu {
		display: none;
		position: absolute;
		top: 100%;
		right: 0;
		background-color: var(--primary-navy);
		min-width: 200px;
		box-shadow: 0 8px 16px rgba(0,0,0,0.3);
		border-radius: 4px;
		border-top: 3px solid var(--accent-orange);
		padding: 8px 0;
		z-index: 1001;
	}

	.dropdown-menu li a {
		display: block;
		padding: 8px 16px;
		color: #CBD5E1;
		font-size: 0.88rem;
		white-space: nowrap;
		transition: background 0.2s, color 0.2s;
	}

	.dropdown-menu li a:hover {
		background-color: var(--primary-light);
		color: #FFFFFF;
	}

	.nav-item:hover .dropdown-menu {
		display: block;
	}

	/* ========================================================================== */
	/* 5. LAYOUT STRUCTURE & GRIDS (ERWEITERTE CONTENT-BREITE)                    */
	/* ========================================================================== */
	.container,
	.layout-container {
		width: min(calc(100% - 2rem), var(--content-default));
		margin-inline: auto;
		padding: 0px 20px;
	}

	section {
		border-bottom: 1px solid var(--border-color);
	}

	.layout-section {
		padding: clamp(3rem, 6vw, 3rem) 0;
	}

	.layout-section-surface {
		background: var(--bg-card);  /* macht den Sektions-Hintergrund hellgrau (der Body ist weiß) */
		border-top: 1px solid var(--border-color);
		border-bottom: 1px solid var(--border-color);
	}

	.section-header {
		display: grid;
		gap: 1rem;
		margin-bottom: 1.5rem;
		width: 100%;
		text-align: center;
		max-width: 1280px;
		margin-left: auto;
		margin-right: auto;
	}

	.section-header h1 {
		font-size: 2.4rem;
		color: var(--primary-dark);
		line-height: 1.25;
		margin-bottom: 20px;
	}

	.section-header p {
		text-align: center;
		max-width: 1280px;
		margin-inline: auto;
		color: var(--text-muted);
	}

	.hero-layout,
	.layout-hero-grid {
		display: grid;
		gap: 1.5rem;
		align-items: center;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin-top: 10px;
	}

	.hero-layout--48-52 {
		grid-template-columns: 48% 52%;
	}

	.hero-layout--40-60 {
		grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
	}

	.layout-visual-grid {
		display: grid;
		gap: 1.25rem;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		align-items: stretch;
	}

	.layout-feature-grid {
		display: grid;
		gap: 1.25rem;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.layout-price-grid {
		display: grid;
		gap: 1.25rem;
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.cards-6-grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 25px;
	}

	.culture-grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 25px;
		margin-top: 30px;
	}

	.steps-default {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1rem 1.25rem;
		margin-bottom: 1.25rem;
	}

	.timeline-5-grid {
		display: grid;
		grid-template-columns: repeat(5, 1fr);
		gap: 15px;
		margin: 30px 0;
	}

	.summary-3-points {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
		margin: 30px 0;
	}

	.bullet-frame-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 20px;
		margin-top: 40px;
	}

	/* ========================================================================== */
	/* 6. CARDS, BOXEN & ELEMENTE                                                 */
	/* ========================================================================== */
	.card-default,
	.card-item,
	.culture-card,
	.bullet-frame,
	.timeline-card,
	.media-video {
		background: var(--bg-card);
		border: 1px solid var(--border-color);
		border-top: 3px solid var(--primary-navy);
		border-radius: 6px;
		box-shadow: 0 2px 5px rgba(0,0,0,0.04);
		transition: transform 0.2s, border-top-color 0.2s;
	}

	.card-default:hover,
	.card-item:hover,
	.bullet-frame:hover,
	.timeline-card:hover {
		transform: translateY(-3px);
		border-top-color: var(--accent-orange);
	}

	.card-default {
		height: 100%;
		padding: 1rem 1rem 1.1rem;
	}

	.card-item {
		padding: 22px;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}

	.card-accent-light {
	  background: #fff1d6;
	  border-color: #f2cf8f;
	}

	.culture-card {
		padding: 25px;
		border-top-color: var(--accent-orange);
	}

	.bullet-frame {
		padding: 20px;
	}

	.timeline-card {
		background-color: var(--bg-light);
		padding: 18px;
	}

	.card-hero-copy {
		background: #fff1d6;
		border: 1px solid var(--border-color);
		border-top: 3px solid var(--primary-navy);
		border-radius: 6px;
		box-shadow: 0 2px 5px rgba(0,0,0,0.04);
		padding: 0.75rem;
		height: 100%;
		display: grid;
		align-content: start;
	}

	.solution-step {
		display: grid;
		grid-template-columns: 1fr 1.2fr;
		gap: 40px;
		align-items: center;
		margin-bottom: 40px;
		background: var(--bg-card);
		border: 1px solid var(--border-color);
		border-left: 5px solid var(--primary-navy);
		padding: 30px;
		border-radius: 6px;
		box-shadow: 0 2px 8px rgba(0,0,0,0.03);
	}

	.step-default {
		position: relative;
		display: grid;
		grid-template-columns: auto 1fr;
		gap: 0.9rem;
		align-items: start;
		padding: 1rem 1.1rem;
		border: 1px solid var(--border-color);
		border-top: 3px solid var(--primary-navy);
		border-radius: 6px;
		background: #ffffff;
		transition: transform 0.2s, border-top-color 0.2s;
	}

	.step-default:hover {
		transform: translateY(-3px);
		border-top-color: var(--accent-orange);
	}

	.step-number {
		width: 2rem;
		height: 2rem;
		border-radius: 999px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		background: var(--accent-orange);
		color: #ffffff;
		font-weight: 700;
		line-height: 1;
		flex: 0 0 2rem;
	}

	.timeline-number {
		background: var(--accent-orange);
		color: #FFFFFF;
		width: 28px;
		height: 28px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-weight: bold;
		font-size: 0.9rem;
		margin-bottom: 12px;
	}

	.summary-box {
		background: #F1F5F9;
		border-left: 4px solid var(--primary-navy);
		padding: 20px;
		border-radius: 4px;
		font-size: 0.92rem;
	}

	.phase-banner-white {
		background: #FFFFFF;
		color: var(--text-main);
		padding: 40px 30px;
		border-radius: 6px;
		margin-top: 40px;
		text-align: center;
		border: 2px solid var(--accent-orange);
		box-shadow: 0 4px 12px rgba(230, 92, 0, 0.08);
	}

	.callout-default {
		padding: 1rem 1.25rem;
		border-radius: 0.75rem;
		border: 1px solid var(--border-color);
		background: #ffffff;
		margin-bottom: 1.25rem;
	}

	.callout-accent {
		background: #fff1d6;
		border-color: #f2cf8f;
	}

	/* ========================================================================== */
	/* 7. BILDER & FIGUREN                                                        */
	/* ========================================================================== */
	.section-image {
		width: 100%;
		height: auto;
		display: block;
		border-radius: 6px;
		border: 1px solid var(--border-color);
		box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
		object-fit: cover;
	}

	.figure-example {
		margin: 0.5rem 0 0.85rem 0;
		height: 380px;
		overflow: hidden;
		border-radius: 0.5rem;
		border: 1px solid var(--border-color);
		background: #ffffff;
		padding: 0.6rem;
	}

	.figure-example-h220 {
		margin: 0.5rem 0 0.85rem 0;
		height: 220px;
		overflow: hidden;
		border-radius: 0.5rem;
		border: 1px solid var(--border-color);
		background: #ffffff;
		padding: 0.6rem;
	}

	.image-example {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: contain;
		object-position: center;
		background: #ffffff;
	}

	/* ========================================================================== */
	/* 8. BUTTONS & BUTTON-GRUPPEN                                                */
	/* ========================================================================== */
	.btn-group {
		display: flex;
		gap: 15px;
		margin-top: 25px;
		flex-wrap: wrap;
	}

	.btn-group.center {
		justify-content: center;
	}

	.hero-button-grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
		margin-top: 1.5rem;
		width: 100%;
	}

	.btn {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		padding: 14px 28px;
		border-radius: 4px;
		font-weight: 600;
		font-size: 1rem;
		cursor: pointer;
		text-align: center;
		transition: all 0.2s ease;
		border: none;
	}

	.btn-orange {
		background-color: var(--accent-orange);
		color: #FFFFFF !important;
		border: 2px solid var(--accent-orange);
	}

	.btn-orange:hover {
		background-color: var(--accent-orange-hover);
		border-color: var(--accent-orange-hover);
	}

	/* ========================================================================== */
	/* 9. LISTEN & AUFZÄHLUNGEN                                                   */
	/* ========================================================================== */
	.list-default {
		padding-left: 1.1rem;
		display: grid;
		gap: 0.5rem;
		margin-top: 0rem;
		margin-bottom: 0.5rem;
	}

	.list-bullet {
		list-style-type: disc;
	}

	.statements-list {
		display: grid;
		gap: 0.75rem;
		margin-top: 1.25rem;
	}

	.statements-item {
		background: var(--bg-card);
		border: 1px solid var(--border-color);
		border-top: 3px solid var(--primary-navy);
		border-radius: 6px;
		box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
		overflow: hidden;
	}

	.statements-item[open] {
		border-top-color: var(--accent-orange);
	}

	.statements-summary {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 1rem;
		padding: 1rem 1.1rem;
		color: var(--primary-navy);
		font-weight: 700;
		cursor: pointer;
		list-style: none;
	}

	.statements-summary::-webkit-details-marker {
		display: none;
	}

	.statements-summary::after {
		content: "▼";
		flex: 0 0 auto;
		color: var(--accent-orange);
		font-size: 1.6rem;
		font-weight: 400;
		line-height: 1;
		transition: transform 0.2s ease;
	}

	.statements-item[open] .statements-summary::after {
		content: "▲";
	}

	.statements-content {
		padding: 0 1.1rem 1.1rem;
		border-top: 1px solid var(--border-color);
	}

	.statements-content ol {
		margin: 0;
		padding-left: 1.35rem;
	}

	.statements-content li {
		margin-top: 0.55rem;
		padding-left: 0.2rem;
	}

	.statements-content li::marker {
		color: var(--accent-orange);
		font-weight: 700;
	}

	/* Zusatzklassen für Projektseite */
	.project-list {
		display: grid;
		gap: 1.5rem;
	}

	.project-record {
		background: var(--bg-card);
		border: 1px solid var(--border-color);
		border-top: 3px solid var(--primary-navy);
		border-radius: 6px;
		box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
		overflow: hidden;
	}

	.project-record[open] {
		border-top-color: var(--accent-orange);
	}

	.project-record > summary {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 1rem;
		padding: 1rem 1.15rem;
		background: #fff1d6;
		color: var(--primary-navy);
		font-size: var(--text-lg);
		font-weight: 700;
		cursor: pointer;
		list-style: none;
	}

	.project-record > summary::-webkit-details-marker {
		display: none;
	}

	.project-record > summary::after {
		content: "▼";
		flex: 0 0 auto;
		color: var(--accent-orange);
		font-size: 1.6rem;
		font-weight: 400;
		line-height: 1;
		transition: transform 0.2s ease;
	}

	.project-record[open] > summary::after {
		content: "▲";
	}

	.project-table-wrap {
		overflow-x: auto;
		border-top: 1px solid #f2cf8f;
	}

	.project-table {
		width: 100%;
		border-collapse: collapse;
		font-size: var(--text-sm);
	}

	.project-table th,
	.project-table td {
		padding: 1rem 1.1rem;
		vertical-align: top;
		text-align: left;
		border-bottom: 1px solid var(--border-color);
	}

	.project-table th {
		width: 16%;
		min-width: 7rem;
		color: var(--primary-navy);
		background: #f8fafc;
		font-weight: 700;
	}

	.project-table td {
		width: 84%;
	}

	.project-table tr:last-child th,
	.project-table tr:last-child td {
		border-bottom: 0;
	}

	.project-table ol {
		margin: 0;
		padding-left: 1.25rem;
	}

	.project-table li + li {
		margin-top: 0.5rem;
	}

	@media (max-width: 650px) {
		.project-record > summary {
			padding: 0.85rem;
			font-size: var(--text-base);
		}

		.project-table th,
		.project-table td {
			padding: 0.85rem;
		}

		.project-table th {
			width: 24%;
			min-width: 6.5rem;
		}

		.project-table td {
			width: 76%;
		}
	}

	/* ========================================================================== */
	/* 10. VIDEO-PLAYER STYLES                                                    */
	/* ========================================================================== */
	.media-video {
		overflow: hidden;
		height: 100%;
	}

	.media-video-progress {
		width: 100%;
		margin-top: 1.8rem;
		height: 6px;
		cursor: pointer;
		accent-color: var(--accent-orange);
	}

	.media-video-stage {
		position: relative;
		background: #fff1d6;
		padding: 0.75rem;
		overflow: hidden;
		cursor: pointer;
		line-height: 0;
	}

	.media-video-player {
		display: block;
		width: 100%;
		height: auto;
		background: transparent;
	}

	.media-video-body {
		background: #fff1d6;
		padding: 1.5rem 1.25rem 1.35rem;
		display: grid;
		gap: 0.25rem;
		justify-items: center;
	}

	.media-video-controls {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		gap: 0.85rem;
		width: 100%;
		text-align: center;
	}

	.media-video-button {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-height: 2.5rem;
		padding: 0.55rem 1.5rem;
		border: 1px solid var(--border-color);
		border-radius: 999px;
		background: #E2E8F0;
		color: var(--primary-navy);
		cursor: pointer;
		font-weight: 600;
	}

	.media-video-button:hover {
		background: #CBD5E1;
		color: var(--accent-orange);
	}

	.media-video-modal[hidden] {
		display: none;
	}

	.media-video-modal {
		position: fixed;
		inset: 0;
		z-index: 9999;
		display: grid;
		place-items: center;
		padding: 0.5rem;
	}

	.media-video-modal-backdrop {
		position: absolute;
		inset: 0;
		background: rgba(0, 0, 0, 0.85);
	}

	.media-video-modal-dialog {
		position: relative;
		z-index: 1;
		width: 98vw;
		max-width: 98vw;
		max-height: 96vh;
		background: #111;
		color: #fff;
		border-radius: 0.5rem;
		padding: 0.85rem;
		box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.media-video-modal-close {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		margin-bottom: 0.5rem;
		padding: 0.5rem 1.2rem;
		border: none;
		border-radius: 999px;
		background: #ffffff;
		color: #111111;
		cursor: pointer;
		font-weight: 600;
		align-self: flex-end;
	}

	.media-video-modal-stage {
		width: 100%;
		display: flex;
		justify-content: center;
	}

	.media-video-modal-player {
		display: block;
		width: 100%;
		max-height: 80vh;
		object-fit: contain;
		background: #000;
	}

	/* ========================================================================== */
	/* 11. FOOTER                                                                 */
	/* ========================================================================== */
	footer {
		background-color: var(--accent-orange);
		color: #FFFFFF;
		padding: 20px 0;
		margin-top: 0;
	}

	.footer-container {
		max-width: 1280px;
		margin: 0 auto;
		padding: 0 20px;
		display: flex;
		justify-content: flex-end;
		align-items: center;
	}

	.footer-nav {
		display: flex;
		gap: 25px;
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.footer-nav a {
		color: #FFFFFF;
		font-size: 0.9rem;
		font-weight: 600;
		text-decoration: none;
		transition: opacity 0.2s ease;
	}

	.footer-nav a:hover {
		opacity: 0.8;
		text-decoration: underline;
	}

	/* ========================================================================== */
	/* 12. RESPONSIVE DESIGN & MEDIA QUERIES                                      */
	/* ========================================================================== */

	@media (max-width: 1100px) {
		.timeline-5-grid {
			grid-template-columns: repeat(3, 1fr);
		}
	}

	@media (max-width: 992px) {
		.cards-6-grid,
		.culture-grid,
		.summary-3-points,
		.layout-hero-grid,
		.layout-visual-grid,
		.layout-feature-grid,
		.layout-price-grid,
		.steps-default {
			grid-template-columns: repeat(2, 1fr);
		}

		.hero-layout,
		.hero-layout--48-52,
		.hero-layout--40-60,
		.solution-step {
			grid-template-columns: 1fr;
		}

		.section-header h1,
		.section-header h2 {
			font-size: var(--text-xl);
			line-height: 1.3;
			margin-bottom: 0;
		}

		/* ---------------------------------------------------------------------- */
		/* Mobiler Kopfbereich für Smartphone und Tablet                          */
		/* ---------------------------------------------------------------------- */

		.header-row {
			gap: 0;
		}

		/* Erste Kopfzeile: Telefon und E-Mail nebeneinander */
		.header-top {
			display: flex;
			flex-direction: row;
			width: 100%;
			align-items: center;
			justify-content: flex-start;
			padding: 6px 12px;
		}

		.header-contact {
			width: 100%;
			flex-direction: row;
			flex-wrap: nowrap;
			align-items: center;
			gap: 0.7rem;
			line-height: 1.20;
			font-size: clamp(0.78rem, 0.72rem + 0.2vw, 0.82rem);
		}

		.header-contact a {
			white-space: nowrap;
		}

		/* Gesprächstermin auf kleinen Bildschirmen ausblenden */
		.header-contact .btn-header {
			display: none;
		}

		/* Zweite Kopfzeile: Logo links, Burger-Button daneben */
		.header-bottom {
			width: 100%;
			display: grid;
			grid-template-columns: auto 44px;
			grid-template-areas:
				"logo menu"
				"navigation navigation";
			column-gap: 0.75rem;
			row-gap: 0;
			align-items: center;
			padding: 8px 12px;
		}

		/* Logo */
		.header-bottom .logo {
			grid-area: logo;
			justify-self: start;
			min-width: 0;
		}

		.header-bottom .logo-image {
			height: 26px;
			width: auto;
			max-width: 100%;
		}

		/* Burger-Button */
		.menu-toggle {
			grid-area: menu;
			display: inline-flex;
			width: 44px;
			height: 44px;
			align-items: center;
			justify-content: center;
			justify-self: end;
			padding: 0;
			border: 1px solid rgba(255, 255, 255, 0.35);
			border-radius: 4px;
			background: transparent;
			color: #ffffff;
			cursor: pointer;
		}

		/* Drei Linien des Burger-Symbols */
		.menu-toggle-icon,
		.menu-toggle-icon::before,
		.menu-toggle-icon::after {
			display: block;
			width: 22px;
			height: 2px;
			background-color: #ffffff;
			transition: transform 0.2s ease, opacity 0.2s ease;
		}

		.menu-toggle-icon {
			position: relative;
		}

		.menu-toggle-icon::before,
		.menu-toggle-icon::after {
			content: "";
			position: absolute;
			left: 0;
		}

		.menu-toggle-icon::before {
			top: -7px;
		}

		.menu-toggle-icon::after {
			top: 7px;
		}

		/* Burger wird beim Öffnen zu einem X */
		.header-bottom.menu-is-open .menu-toggle-icon {
			background-color: transparent;
		}

		.header-bottom.menu-is-open .menu-toggle-icon::before {
			top: 0;
			transform: rotate(45deg);
		}

		.header-bottom.menu-is-open .menu-toggle-icon::after {
			top: 0;
			transform: rotate(-45deg);
		}

		/* Navigation zunächst geschlossen */
		.main-nav {
			grid-area: navigation;
			display: none;
			width: 100%;
			padding-top: 0.5rem;
		}

		/* Navigation nach Klick auf den Burger anzeigen */
		.header-bottom.menu-is-open .main-nav {
			display: block;
		}

		/* Hauptmenüpunkte untereinander */
		.main-nav > ul {
			display: flex;
			flex-direction: column;
			width: 100%;
			gap: 0;
		}

		/* Jeder Hauptmenüpunkt über die volle Breite */
		.main-nav .nav-item {
			width: 100%;
			border-top: 1px solid rgba(255, 255, 255, 0.15);
		}

		/* Hauptmenüpunkt als klickbare Zeile */
		.main-nav .nav-link {
			width: 100%;
			min-height: 44px;
			padding: 10px 4px;
			justify-content: space-between;
		}

		/* Untermenüs auf kleinen Bildschirmen nicht per Hover öffnen */
		.main-nav .nav-item:hover .dropdown-menu {
			display: none;
		}

		/* Untermenüs liegen nicht mehr absolut über der Seite */
		.main-nav .dropdown-menu {
			position: static;
			display: none;
			width: 100%;
			min-width: 0;
			margin: 0;
			padding: 0 0 0.35rem 0.75rem;
			border-top: 0;
			border-radius: 0;
			box-shadow: none;
			background-color: var(--primary-light);
		}

		/* Untermenü nach Klick auf den Hauptmenüpunkt anzeigen */
		.main-nav .nav-item.submenu-is-open > .dropdown-menu {
			display: block;
		}

		/* Untermenüpunkte */
		.main-nav .dropdown-menu li {
			width: 100%;
		}

		.main-nav .dropdown-menu li a {
			min-height: 40px;
			padding: 9px 10px;
			white-space: normal;
			border-top: 1px solid rgba(255, 255, 255, 0.08);
		}

		/* Pfeil des Hauptmenüs drehen, wenn Untermenü geöffnet ist */
		.main-nav .nav-item.submenu-is-open > .nav-link::after {
			transform: rotate(180deg);
		}
	}

	@media (max-width: 650px) {
		.cards-6-grid,
		.culture-grid,
		.timeline-5-grid,
		.summary-3-points,
		.layout-hero-grid,
		.layout-visual-grid,
		.layout-feature-grid,
		.layout-price-grid,
		.steps-default {
			grid-template-columns: 1fr;
		}

		.hero-layout--48-52,
		.hero-layout--40-60 {
			grid-template-columns: 1fr;
		}

		.container,
		.layout-container {
			width: min(calc(100% - 0.75rem), var(--content-default));
			padding: 0 0.75rem;
		}

		.footer-container {
			justify-content: center;
		}

		.footer-nav {
			gap: 15px;
		}

		.figure-example {
			height: 260px;
		}

		.image-example {
			width: 100%;
			height: 100%;
			object-fit: contain;
		}
	}

