* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
	width: 100%;
	overflow-x: hidden;
}

body {
    font-family: Arial, sans-serif;
    background: #111111;
    color: #ffffff;
}

.page-frame {
    width: 100%;
	min-height: 100vh;
    padding: 0;
	margin; 0;
    background: #111111;
}

.hero-stage {
    width: 100%;
    max-width: none;
    margin: 0;
	padding: 0;

}

.hero-card {
    position: relative;
   	width: 100vw;
	min-height: 100vh;
    border-radius: 0;
    overflow: hidden;
    background: #181818;
    
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10,10,10,0.40) 0%, rgba(10,10,10,0.15) 35%, rgba(10,10,10,0.45) 100%),
        linear-gradient(180deg, rgba(20,20,20,0.20) 0%, rgba(20,20,20,0.05) 35%, rgba(12,12,12,0.72) 100%);
}

.logo-box {
    position: absolute;
    top: 5px;
    right: 34px;
    z-index: 3;
}

.logo {
    width: 320px;
    max-width: 100%;
    height: auto;
    display: block;
}

.content-panel {
    position: absolute; important;
    top: 150px; important;
    left: 50%; important;
    transform: translateX(-50%); important;
    width: min(92%, 410px);
    z-index: 3;
    padding: 28px 28px 24px;
    background: rgba(20, 20, 20, 0.34);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 14px;
    backdrop-filter: blur(3px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.20);
}

.eyebrow {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.subline {
    margin: 0 0 18px;
    font-size: 12px;
    color: rgba(255,255,255,0.82);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    position: relative;
    display: inline-block;
    padding-right: 56px;
}

.subline::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 42px;
    height: 2px;
    background: #c41d22;
    transform: translateY(-50%);
}

.content-panel h1 {
    margin: 0 0 18px;
    font-size: 30px;
    line-height: 1.05;
    text-transform: uppercase;
}

.services-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.services-list li {
    position: relative;
    margin-bottom: 14px;
    padding-left: 22px;
    color: rgba(255,255,255,0.94);
    font-size: 15px;
    line-height: 1.45;
}

.services-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #d12828;
    font-weight: bold;
}

.contact-box {
    position: absolute;
    left: 30px;
    bottom: 60px; important;
    width: min(92%, 250px);
    z-index: 3;
    padding: 20px 22px 18px;
    border-radius: 12px;
    background: rgba(18,18,18,0.62);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(3px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.22);
}

.contact-box h2 {
    margin: 0 0 14px;
    font-size: 18px;
    text-transform: uppercase;
}

.contact-box p {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.45;
    color: rgba(255,255,255,0.92);
}

.contact-box a {
    color: #ffffff;
    text-decoration: none;
}

.contact-box a:hover {
    text-decoration: underline;
}

.hero-footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    padding: 18px 20px 20px;
    background: linear-gradient(180deg, rgba(15,15,15,0.05) 0%, rgba(15,15,15,0.78) 100%);
    border-top: 1px solid rgba(196,29,34,0.34);
}

.hero-footer a {
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.08em;
}

.hero-footer a:hover {
    color: #d94b4f;
}

.divider {
    width: 24px;
    height: 1px;
    background: rgba(255,255,255,0.52);
    display: inline-block;
}

@media (max-width:768px){

body{
    background:#111111;
}

/* Logo */

.logo-box{
    top:8px;
    right:8px;
}

.logo{
    width:350px;
}

/* Container untereinander */

.hero-card{
    display:flex;
    flex-direction:column;
    align-items:center;
}

/* Dienstleistungen */

.content-panel{
    position:relative;
    width:88%;
    margin:90px auto 160px auto;
    padding:18px;
}

/* Kontakt */

.contact-box{
    position:relative;
    width:70%;
    margin:40px auto 40px auto;
    padding:12px;
}

/* Footer */

.hero-footer{
    position:relative;
    margin-top:20px;
}