@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Manrope:wght@400;600&display=swap');

:root {
    --brand-dark: #282A2B;
    --brand-cyan: #00FFD4;
    --brand-purple: #ECACFF;
    --text-light: #ffffff;
    --text-dark: #1a1a1a;
    --bg-light: #f4f5f7;
    --bg-darker: #1e1f20;
    
    --nav-height: 72px;
    --section-padding: 100px 0;
    --container-width: 1280px;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: var(--text-dark);
    background-color: var(--text-light);
    line-height: 1.6;
    padding-top: var(--nav-height);
    -webkit-font-smoothing: antialiased;
    overflow-wrap: break-word;
    word-wrap: break-word;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1, h2 {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
}

h3, h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

h1 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 3vw, 2.75rem);
    position: relative;
    display: inline-block;
}

h3 {
    font-size: 1.5rem;
}

.subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    opacity: 0.9;
    max-width: 800px;
}

.text-cyan { color: var(--brand-cyan); }
.text-purple { color: var(--brand-purple); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--brand-cyan);
    color: var(--brand-dark);
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--brand-cyan);
    color: var(--brand-cyan);
    box-shadow: 0 0 15px rgba(0, 255, 212, 0.4);
}

.btn-outline {
    border-color: var(--brand-cyan);
    color: var(--text-light);
    background-color: transparent;
}

.btn-outline:hover:not(:disabled) {
    background-color: var(--brand-cyan);
    color: var(--brand-dark);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: transparent;
}

.btn-header {
    padding: 10px 20px;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: rgba(40, 42, 43, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 300;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.nav-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 32px;
    transition: opacity 0.3s ease;
}

.logo:hover img {
    opacity: 0.8;
}

nav {
    display: flex;
    gap: clamp(1rem, 2vw, 2rem);
    align-items: center;
}

nav a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

nav a:hover {
    color: var(--brand-cyan);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand-cyan);
    transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

nav a:hover::after {
    width: 100%;
}

/* CTA Banner Component */
.cta-banner-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.5rem 2rem;
    background-color: var(--bg-darker);
    border-left: 4px solid var(--brand-cyan);
    border-radius: 4px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cta-banner-inline.light {
    background-color: var(--text-light);
    border: 1px solid rgba(0,0,0,0.05);
    border-left: 4px solid var(--brand-purple);
}

.cta-banner-inline.transparent {
    background-color: rgba(30, 31, 32, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--brand-cyan);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.cta-text {
    flex: 1;
}

.cta-label {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand-cyan);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cta-banner-inline.light .cta-label {
    color: var(--brand-purple);
}

.cta-banner-inline p {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.4;
}

.cta-banner-inline.light p {
    color: var(--brand-dark);
}

.cta-btn-wrapper {
    flex-shrink: 0;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: calc(100vh - var(--nav-height));
    display: flex;
    align-items: center;
    color: var(--text-light);
    overflow: hidden;
    padding: var(--section-padding) 0;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(40, 42, 43, 0.95) 0%, rgba(30, 31, 32, 0.8) 100%);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid var(--brand-purple);
    color: var(--brand-purple);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Positioning / About */
.positioning {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.positioning-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.highlight-box {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background-color: var(--text-light);
    border-left: 4px solid var(--brand-cyan);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    font-weight: 600;
    color: var(--brand-dark);
}

/* Benefits / Consulting */
.consulting {
    padding: var(--section-padding);
    background-color: var(--text-light);
}

.consulting-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.list-styled {
    list-style: none;
    margin-top: 1.5rem;
}

.list-styled li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: #444;
}

.list-styled li::before {
    content: '■';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--brand-cyan);
    font-size: 0.8rem;
}

/* Products / Use Cases Grid */
.products {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

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

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-cyan), var(--brand-purple));
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.card {
    background-color: var(--text-light);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-color: rgba(0, 255, 212, 0.3);
}

.card-img-wrapper {
    position: relative;
    padding-top: 55%;
    background-color: var(--brand-dark);
    overflow: hidden;
}

.card-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    opacity: 0.9;
}

.card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    color: var(--brand-dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.quote-box {
    margin-top: 1.5rem; 
    padding: 1rem 1.25rem; 
    background-color: rgba(0, 255, 212, 0.05);
    border-left: 3px solid var(--brand-cyan); 
    font-style: italic; 
    color: var(--brand-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

/* DMF Suite Section (Dark/Technical) */
.dmf-section {
    padding: var(--section-padding);
    background-color: var(--brand-dark);
    color: var(--text-light);
    position: relative;
}

.dmf-section h2::after {
    background: var(--brand-cyan);
}

.modern-diagram {
    background-color: var(--bg-darker);
    border: 1px solid rgba(0, 255, 212, 0.2);
    padding: 4rem 2rem;
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.modern-diagram::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 0;
}

.diagram-node {
    background: linear-gradient(135deg, rgba(40, 42, 43, 0.95), rgba(30, 31, 32, 0.95));
    border: 1px solid rgba(236, 172, 255, 0.2);
    border-left: 4px solid var(--brand-cyan);
    padding: 1.5rem 2rem;
    width: 100%;
    max-width: 500px;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: var(--transition);
}

.diagram-node:hover {
    transform: translateY(-2px);
    border-color: rgba(236, 172, 255, 0.5);
    box-shadow: 0 15px 40px rgba(0, 255, 212, 0.1);
}

.node-title {
    color: var(--brand-cyan);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    letter-spacing: 0.05em;
}

.node-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    opacity: 0.9;
}

.diagram-connection {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    width: 100%;
    max-width: 800px;
    height: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.connection-lines {
    display: flex;
    justify-content: center;
    gap: 20px;
    height: 100%;
    padding: 5px 0;
}

.line {
    width: 2px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.line::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--bg-darker);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    z-index: 2;
}

.line.down::before { top: 0; }

.line::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    z-index: 2;
    bottom: 0;
    border-top: 6px solid rgba(255, 255, 255, 0.3);
}

.particle {
    position: absolute;
    width: 100%;
    height: 60%;
    z-index: 1;
    background: linear-gradient(to bottom, transparent, var(--brand-cyan));
    top: -60%;
    animation: flowDown 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes flowDown {
    0% { top: -60%; }
    100% { top: 100%; }
}

.connection-label {
    font-family: monospace;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.label-right {
    padding-left: 1.5rem;
    text-align: left;
}

/* Checklist Section */
.checklist-section {
    padding: var(--section-padding);
    background-color: var(--text-light);
}

.table-responsive {
    overflow-x: auto;
    margin-top: 3rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--text-light);
}

th, td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid #eaeaea;
}

th {
    background-color: var(--brand-dark);
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
}

tr:hover td {
    background-color: var(--bg-light);
}

td:nth-child(2), td:nth-child(3) {
    text-align: center;
}

.check-container {
    display: inline-block;
    position: relative;
    cursor: pointer;
    width: 24px;
    height: 24px;
    user-select: none;
    vertical-align: middle;
}

.check-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    background-color: var(--text-light);
    border: 2px solid #ccc;
    border-radius: 50%;
    transition: var(--transition);
}

.check-container:hover input ~ .checkmark {
    border-color: var(--brand-dark);
}

.check-container.radio-yes input:checked ~ .checkmark {
    background-color: var(--brand-cyan);
    border-color: var(--brand-cyan);
}

.check-container.radio-no input:checked ~ .checkmark {
    background-color: var(--brand-purple);
    border-color: var(--brand-purple);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.check-container input:checked ~ .checkmark:after {
    display: block;
}

.check-container.radio-yes .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid var(--brand-dark);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.check-container.radio-no .checkmark:after {
    content: "+";
    color: var(--brand-dark);
    font-size: 24px;
    line-height: 24px;
    font-weight: 400;
    left: 0;
    top: -1px;
    width: 100%;
    text-align: center;
    transform: rotate(45deg);
}

.action-cell {
    transition: var(--transition);
}

tr:has(input[value="no"]:checked) .action-cell,
tr.selected-no .action-cell {
    color: var(--brand-dark);
    font-weight: 600;
    background-color: var(--bg-light);
    box-shadow: inset 4px 0 0 var(--brand-purple);
}

tr:has(input[value="yes"]:checked) .action-cell,
tr.selected-yes .action-cell {
    opacity: 0.3;
    text-decoration: line-through;
}

/* Services Grid (Produktivität) */
.services {
    padding: var(--section-padding);
    background-color: var(--bg-darker);
    color: var(--text-light);
}

.services h2 {
    text-align: center;
    display: block;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    border: 1px solid rgba(255,255,255,0.1);
    padding: 3rem 2rem;
    transition: var(--transition);
    text-align: center;
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 100%);
}

.service-card:hover {
    border-color: var(--brand-cyan);
    background: linear-gradient(180deg, rgba(0,255,212,0.05) 0%, transparent 100%);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Manrope', sans-serif;
    line-height: 1;
}

/* Form Section */
.form-section {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.form-box {
    background-color: var(--text-light);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border-top: 4px solid var(--brand-cyan);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--brand-dark);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.form-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--brand-cyan);
    box-shadow: 0 0 0 3px rgba(0, 255, 212, 0.15);
    background-color: var(--text-light);
}

.form-submit {
    width: 100%;
    margin-top: 1rem;
    padding: 16px;
    font-size: 1rem;
}

/* Footer */
footer {
    background-color: var(--brand-dark);
    color: var(--text-light);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 80px;
    mix-blend-mode: screen;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: flex-end;
    align-items: center;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--brand-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.875rem;
    opacity: 0.6;
}

/* Modal Component (Pure CSS with Checkbox Hack + JS backing) */
.modal-toggle {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 31, 32, 0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--nav-height) + 24px) 24px 24px 24px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-toggle:checked + .modal {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--text-light);
    width: 100%;
    max-width: 500px;
    padding: 3rem;
    border-radius: 8px;
    position: relative;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border-top: 4px solid var(--brand-cyan);
    color: var(--text-dark);
}

.modal-toggle:checked + .modal .modal-content {
    transform: translateY(0);
}

.modal-bg-click {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    line-height: 1;
    color: var(--text-dark);
    opacity: 0.4;
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
}

.modal-close:hover {
    opacity: 1;
    color: var(--brand-cyan);
}

/* GDPR disclaimer checkbox style */
.gdpr-checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 1rem;
    cursor: pointer;
    font-size: 0.8rem;
    color: #666;
}

.gdpr-checkbox-container input {
    width: auto;
    margin-top: 3px;
    cursor: pointer;
}

/* Success View inside Modal */
.download-success-view {
    display: none;
    text-align: center;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 0.5s ease forwards;
}

.success-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(0, 255, 212, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-cyan);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.manual-download-link {
    margin-top: 1.5rem;
    color: var(--brand-dark);
    text-decoration: underline;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
}

.manual-download-link:hover {
    color: var(--brand-cyan);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.card-btn {
    width: 100%;
    height: 54px;
    display: inline-flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 16px !important;
    line-height: 1.2;
    text-align: center;
    transition: var(--transition);
}

.card-btn .btn-main-text {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.card-btn .btn-sub-text {
    font-size: 0.68rem;
    font-weight: 400;
    opacity: 0.75;
    text-transform: none;
    margin-top: 2px;
}


/* Responsive Styles */
@media (max-width: 1024px) {
    .positioning-grid, .consulting-grid, .form-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    nav {
        display: none;
    }

    .logo img {
        height: 24px;
    }

    .btn-header {
        padding: 8px 12px;
        font-size: 0.65rem;
        line-height: 1.25;
        width: 130px;
        white-space: normal;
        text-align: center;
        letter-spacing: 0.02em;
    }
    
    h1 {
        font-size: clamp(1.75rem, 8vw, 2.25rem) !important;
    }
    
    h1 br, h2 br {
        display: none;
    }

    h2 {
        font-size: clamp(1.5rem, 6vw, 1.75rem);
    }
    
    .subtitle, 
    .section-header p,
    .cta-banner-inline p,
    .dmf-section h3 + p {
        font-size: 1rem !important;
    }

    .positioning-grid, .consulting-grid, .form-container {
        gap: 2rem;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-banner-inline {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .cta-btn-wrapper {
        width: 100%;
    }
    
    .cta-btn-wrapper .btn {
        width: 100%;
    }

    .diagram-connection {
        grid-template-columns: 60px 1fr;
    }
    
    .empty-col {
        display: none;
    }
    
    .label-right {
        padding-left: 0.75rem;
    }
    
    .form-box, .modal-content {
        padding: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
    
    th, td {
        padding: 1rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .modern-diagram {
        padding: 2rem 1rem;
    }
    
    .diagram-node {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .card-img-wrapper {
        padding-top: 60%; 
    }

    /* Mobile Checklist table transform to cards */
    .checklist-section table, 
    .checklist-section tbody, 
    .checklist-section thead {
        display: block;
        width: 100%;
    }
    
    .checklist-section thead {
        display: none;
    }
    
    .checklist-section tr {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 1.5rem;
        border: 1px solid rgba(0,0,0,0.08);
        border-radius: 8px;
        background-color: var(--text-light);
        box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    }
    
    .checklist-section td {
        display: block;
        width: 100%;
        padding: 1.25rem !important;
        text-align: left !important;
        border-bottom: 1px solid #eaeaea;
        box-sizing: border-box;
    }
    
    .checklist-section td:nth-child(1) {
        font-weight: 600;
        background-color: var(--bg-light);
        color: var(--brand-dark);
        font-size: 0.95rem;
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
    }
    
    .checklist-section td:nth-child(2),
    .checklist-section td:nth-child(3) {
        width: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        text-align: center !important;
    }
    
    .checklist-section td:nth-child(2) {
        border-right: 1px solid #eaeaea;
    }
    
    .checklist-section td:nth-child(2)::before {
        content: "Ja";
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        color: #888;
    }
    
    .checklist-section td:nth-child(3)::before {
        content: "Nein";
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        color: #888;
    }
    
    .checklist-section td:nth-child(4) {
        border-bottom: none;
        background-color: #fafafa;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }
    
    .checklist-section td:nth-child(4)::before {
        content: "Maßnahme bei »Nein«:";
        display: block;
        font-size: 0.7rem;
        font-weight: 700;
        text-transform: uppercase;
        color: var(--brand-purple);
        margin-bottom: 0.5rem;
        letter-spacing: 0.05em;
    }

    .table-responsive {
        overflow-x: visible;
        box-shadow: none;
        background: transparent;
        margin-top: 2rem;
    }

    .modal {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        z-index: 999999 !important;
        overflow-y: auto !important;
        padding: 16px !important;
    }

    .modal-content {
        width: 95% !important;
        max-width: 400px !important;
        margin: auto !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        top: 0 !important;
        transform: none !important;
        box-sizing: border-box !important;
        padding: 2rem 1.5rem !important;
    }
}

/* Trust Elements Styles */
.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0.5;
    filter: grayscale(1);
    transition: filter 0.3s ease, opacity 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.trust-item:hover {
    opacity: 1;
    filter: grayscale(0);
}

.trust-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.trust-item:hover .trust-label {
    color: #00fcd2;
}

.trust-logo {
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.hero-trust-elements {
    margin-top: 3.5rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.hero-trust-logos {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

/* Mobile responsive styles for hero trust elements */
@media (max-width: 768px) {
    .hero-trust-elements {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
        margin-top: 2.5rem;
    }
    
    .hero-trust-logos {
        justify-content: center;
        gap: 2rem;
    }
}

/* Password Protection Overlay Styles */
body.auth-locked {
    overflow: hidden !important;
}

body.auth-locked header,
body.auth-locked main,
body.auth-locked footer,
body.auth-locked .modal-toggle,
body.auth-locked .modal {
    display: none !important;
}

#password-protection {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999999;
    background: radial-gradient(circle at 50% 50%, #16191c 0%, #080a0c 100%);
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    padding: 20px;
    box-sizing: border-box;
}

body.auth-unlocked #password-protection {
    display: none !important;
}

.login-card {
    background: rgba(20, 24, 28, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    width: 100%;
    max-width: 400px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    text-align: center;
    animation: loginFadeIn 0.4s ease-out;
}

@keyframes loginFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.login-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.login-logo img {
    height: 35px;
    filter: invert(1) grayscale(1) brightness(0.9) contrast(20);
    mix-blend-mode: screen;
}

.login-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
    letter-spacing: -0.02em;
}

.login-intro {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.login-card .input-group {
    text-align: left;
    margin-bottom: 1.25rem;
}

.login-card label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.login-card input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 0.95rem;
    color: #fff;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-family: inherit;
}

.login-card input:focus {
    outline: none;
    border-color: #00fcd2;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 2px rgba(0, 252, 210, 0.15);
}

.login-error-msg {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 6px;
    padding: 10px;
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
    text-align: left;
}

.btn-login {
    width: 100%;
    background: #00fcd2;
    color: #121416;
    border: none;
    padding: 14px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.btn-login:hover {
    background: #00e0ba;
    box-shadow: 0 0 16px rgba(0, 252, 210, 0.3);
}

.btn-login:active {
    transform: translateY(1px);
}
