* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
}

body {
    background: #f4f6f5;
    color: #1c1c1c;
}

/* HEADER */

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo img {
    height: 50px;
}

.nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: 0.3s;
}

.nav a:hover {
    color: #0f5f2a;
}

/* HERO */

.hero {
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: url("hero.png") center center/cover no-repeat;
    position: relative;
    color: white;
    padding: 20px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.hero-box {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 45px;
    border-radius: 18px;
    max-width: 750px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 15px;
}

.sub {
    font-size: 22px;
    margin-bottom: 10px;
}

.urgent {
    font-size: 18px;
    color: #ffd54f;
    font-weight: bold;
    margin-bottom: 25px;
}

/* BUTTONS */

.buttons {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.primary {
    background: white;
    color: #0f5f2a;
}

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

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background: #20b65a;
}

/* SECTIONS */

.section {
    padding: 80px 20px;
    max-width: 1100px;
    margin: auto;
    text-align: center;

    /* FIX: Sticky Header Abstand */
    scroll-margin-top: 80px;
}

.section h2 {
    color: #0f5f2a;
    margin-bottom: 30px;
    font-size: 34px;
}

/* GRID */

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap: 20px;
}

.card {
    background: white;
    padding: 22px;
    border-radius: 12px;
    text-align: left;
    font-weight: bold;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

/* TRUST */

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 15px;
    margin-top: 25px;
}

.trust-grid div {
    background: white;
    padding: 20px;
    border-left: 5px solid #1fbf4a;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.trust-text {
    margin-top: 25px;
    font-size: 18px;
    color: #555;
}

/* FORM */

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 550px;
    margin: auto;
}

input,
textarea {
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

button {
    padding: 14px;
    background: #0f5f2a;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #17823a;
}

.cta-text {
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 18px;
}

.contact-info {
    margin-top: 25px;
    line-height: 1.8;
}

/* FOOTER */

footer {
    margin-top: 60px;
    background: #0f5f2a;
    color: white;
    text-align: center;
    padding: 30px;
}

footer a {
    color: white;
    text-decoration: none;
    margin-top: 10px;
    display: inline-block;
}

/* FLOAT BUTTONS */

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: white;
    font-size: 28px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    z-index: 999;
}

.call-button {
    position: fixed;
    right: 20px;
    bottom: 95px;
    background: #0f5f2a;
    color: white;
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 30px;
    font-weight: bold;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    z-index: 999;
}

/* MOBILE */

@media (max-width:768px){

.header{
    flex-direction:column;
    gap:15px;
    padding:15px;
}

.nav{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    justify-content:center;
}

.nav a{
    margin:0;
}

.hero h1{
    font-size:38px;
}

.sub{
    font-size:18px;
}

.hero-box{
    padding:30px;
}

.buttons{
    flex-direction:column;
}

.call-button{
    bottom:90px;
    right:15px;
}

.whatsapp-float{
    right:15px;
}

}