<style>
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html {
    scroll-behavior: smooth;
}
body{
    font-family: "Segoe UI", sans-serif;
    background:
    linear-gradient(
        rgba(8,12,25,0.92),
        rgba(8,12,25,0.97)
    ),
    radial-gradient(
        circle at top,
        #223055,
        #080c19 70%
    );
    color:#f5f5f5;
    line-height:1.8;
}
ul{
    padding-left:0px;
}
li{
    margin-bottom:10px;
}
a{
    color: #d9b76c;
    text-decoration: none;
    border-bottom: 1px dotted rgba(217,183,108,0.6);
    transition: all 0.3s ease;
}
a:hover {
    color: #f0d38f;
    border-bottom: 1px solid #f0d38f;
}
.container{
    width:90%;
    max-width:1000px;
    margin:auto;
}
.hero{
    text-align:center;
    padding-top:35px;
    padding-bottom:70px;
    padding-left:20px;
    padding-right:20px;
}
.hero h1{
    font-size:2.5rem;
    color:#d9b76c;
    margin-bottom:20px;
    font-weight:300;
}
.hero p{
    font-size:1.4rem;
    color:#d6d6d6;
    max-width:800px;
    margin:auto;
}
.quote{
    font-style:italic;
    color:#d9b76c;
    margin-top:50px;
    font-size:1.5rem;
}
.section{
    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(10px);
    border-radius:20px;
    padding:50px;
    margin-bottom:50px;
}
.section h2{
    color:#d9b76c;
    margin-bottom:30px;
    font-size:2rem;
}
.section p{
    margin-bottom:20px;
}
.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}
.card{
    background:rgba(255,255,255,0.06);
    border-radius:15px;
    padding:35px;
}
.card h3{
    color:#d9b76c;
    margin-bottom:10px;
}
.price{
    font-size:2rem;
    margin:20px 0;
    color:#ffffff;
}
.cta{
    text-align:center;
    margin-top:50px;
}
.button{
    display:inline-block;
    background:#d9b76c;
    color:#111;
    text-decoration:none;
    padding:18px 40px;
    border-radius:10px;
    font-weight:bold;
    transition:0.3s;
}
.button:hover{
    background:#f0d38f;
    color:#111;
    transform:translateY(-2px);
    box-shadow:
        0 5px 20px rgba(217,183,108,0.3);
}
.footer{
    text-align:center;
    padding:60px 20px;
    color:#999;
}
.modal{
display:none;
position:fixed;
z-index:1000;
left:0;
top:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.8);
}
.modal-content{
background:#111827;
color:white;
max-width:700px;
margin:8% auto;
padding:40px;
border-radius:20px;
position:relative;
box-shadow:0 0 40px rgba(0,0,0,0.6);
max-height:85vh;
overflow-y:auto;
}
.close{
position:absolute;
top:15px;
right:20px;
font-size:34px;
cursor:pointer;
color:#d9b76c;
}
.modal-content::-webkit-scrollbar {
    width:10px;
}
.modal-content::-webkit-scrollbar-track {
    background:#111827;
}
.modal-content::-webkit-scrollbar-thumb {
    background:#d9b76c;
    border-radius:10px;
}
.modal-content::-webkit-scrollbar-thumb:hover {
    background:#f0d38f;
}
.popup-link {
    color: #d9b76c;
    text-decoration: none;
    border-bottom: 1px dotted rgba(217,183,108,0.6);
    transition: all 0.3s ease;
}
.popup-link:hover {
    color: #f0d38f;
    border-bottom: 1px solid #f0d38f;
}
.navbar{
    position:sticky;
    top:0;
    z-index:100;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 40px;
    background:rgba(8,12,25,0.75);
    backdrop-filter:blur(15px);
    border-bottom:1px solid rgba(217,183,108,0.15);
}
.nav-logo{
    color:#d9b76c;
    font-size:1rem;
    font-weight:300;
    letter-spacing:1px;
}
.nav-menu{
    list-style:none;
    display:flex;
    gap:35px;
}
.nav-menu li{
    margin:0;
}
.nav-menu a{
    color:#e0e0e0;
    text-decoration:none;
    font-size:1rem;
    position:relative;
    transition:all .3s ease;
}
@media(max-width:900px){
.navbar{
    flex-direction:column;
    gap:20px;
}
.nav-menu{
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
}
}
.order-form{
display:flex;
flex-direction:column;
gap:22px;
}
.form-group{
display:flex;
flex-direction:column;
}
.form-group label{
margin-bottom:8px;
font-size:0.95rem;
color:#d9b76c;
}
.form-group input,
.form-group textarea{
padding:14px;
border:none;
border-radius:10px;
background:rgba(255,255,255,0.08);
color:white;
font-size:1rem;
outline:none;
}
.form-group input:focus,
.form-group textarea:focus{
box-shadow:
0 0 0 2px rgba(217,183,108,0.5);
}
textarea::placeholder {
    color: #888;
    opacity: 1;
}
.checkbox{
display:flex;
align-items:flex-start;
gap:12px;
font-size:0.9rem;
line-height:1.5;
}
.checkbox input{
margin-top:4px;
width:18px;
height:18px;
flex-shrink:0;
}
.price-box{
text-align:center;
padding:20px;
margin-bottom:35px;
border-radius:15px;
background:rgba(217,183,108,0.08);
border:1px solid rgba(217,183,108,0.2);
}
.price{
font-size:2rem;
font-weight:bold;
color:#d9b76c;
margin-top:10px;
}
.submit-button{
width:100%;
padding:18px;
border:none;
border-radius:12px;
background:#d9b76c;
color:#111;
font-size:1.1rem;
font-weight:bold;
cursor:pointer;
transition:all .3s ease;
}
.submit-button:hover{
background:#f0d38f;
transform:translateY(-2px);
box-shadow:
0 8px 25px rgba(217,183,108,0.35);
}
.honeypot{
position:absolute;
left:-9999px;
top:-9999px;
}
.dropdown{
    position:relative;
}
.dropdown:hover .dropdown-menu{
display:block;
}
.dropdown-menu li{
    list-style:none;
}
.dropdown-menu a{
	border-left:3px solid transparent;
    display:block;
    padding:6px 12px;
    color:#e0e0e0;
    text-decoration:none;
}
.dropdown-menu a:hover{
	border-left:3px solid #d9b76c;
    background:none;
    color:#d9b76c;
    text-shadow:
        0 0 8px rgba(217,183,108,0.5);
}
.dropdown-menu{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    min-width:250px;
    z-index:999;
    background:#0f1728;
    border-radius:12px;
    box-shadow:
        0 15px 35px rgba(0,0,0,0.45);
}
/* Gemeinsame Abstände */
.chat-ai,
.chat-user,
.reflection,
.quote-box{
    margin-top:30px;
    margin-bottom:30px;
}
/* KI links */
.chat-ai{
    max-width:75%;
    margin-right:auto;
    padding:6px;
    border-radius:20px;
    background:rgba(255,255,255,0.04);
    border-left:4px solid #d9b76c;
    box-shadow:
        0 10px 30px rgba(0,0,0,0.25);
}
.chat-ai p{
    margin:0 0 5px 0;
    line-height:1;
}
/* Mirko rechts */
.chat-user{
    max-width:75%;
    margin-left:auto;
    padding:6px;
    border-radius:20px;
    background:rgba(217,183,108,0.08);
    border-right:4px solid #d9b76c;
    box-shadow:
        0 10px 30px rgba(0,0,0,0.25);
}
.chat-user p{
    margin:0 0 10px 0;
    line-height:1;
}
/* Gedanke mittig */
.reflection{
    max-width:700px;
    margin-left:auto;
    margin-right:auto;
    padding:10px;
    text-align:center;
    border-radius:25px;
    border:1px solid rgba(217,183,108,0.5);
    background:
        rgba(217,183,108,0.05);
    font-style:italic;
    color:#f0e6c8;
}
.reflection p{
    margin:0;
    line-height:1;
}
/* Zitat */
.quote-box{
    max-width:800px;
    margin-left:auto;
    margin-right:auto;
    padding:40px;
    text-align:center;
    font-size:1.3rem;
    line-height:1.8;
    border-top:
        1px solid #d9b76c;
    border-bottom:
        1px solid #d9b76c;
    color:#d9b76c;
}
.quote-box p{
    margin:0;
}
/* Titel */
.dialog-title{
    text-align:center;
    margin-top:70px;
    margin-bottom:50px;
    font-size:2.3rem;
    color:#d9b76c;
    font-weight:300;
    letter-spacing:1px;
}
.dialog-title::after{
    content:"";
    display:block;
    width:80px;
    height:1px;
    background:#d9b76c;
    margin:20px auto 0 auto;
}
</style>