:root {
    --landing-bg: #efe7dd;
    --landing-bg-2: #f8f4ee;
    --landing-surface: #fffdf8;
    --landing-text: #1f1b17;
    --landing-muted: #5e554d;
    --landing-line: #d8cfc3;
    --landing-accent: #0b6b5f;
    --landing-accent-hover: #09574d;
    --landing-accent-contrast: #ffffff;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Gill Sans", sans-serif;
    background: linear-gradient(145deg, var(--landing-bg) 0%, var(--landing-bg-2) 55%, #fff8ee 100%);
    color: var(--landing-text);
    padding: 22px 14px;
}

.landing {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    background: var(--landing-surface);
    border: 1px solid var(--landing-line);
    border-radius: 18px;
    padding: 30px 30px 22px;
    box-shadow: 0 24px 60px rgba(31, 27, 23, 0.12);
}

.landing-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.brand {
    display: inline-flex;
    align-items: center;
    color: var(--landing-text);
    text-decoration: none;
}

.brand img {
    display: block;
    width: auto;
    max-width: 300px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-nav-link {
    color: var(--landing-accent);
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
}

.header-nav-link:hover {
    text-decoration: underline;
}

.header-nav a {
    color: var(--landing-accent);
    text-decoration: none;
    font-weight: 700;
}

.header-nav a:hover {
    text-decoration: underline;
}

.header-nav a.header-login-btn {
    margin-top: 0;
    color: var(--landing-accent-contrast);
    text-decoration: none;
}

.header-nav a.header-login-btn:hover {
    text-decoration: none;
    background: var(--landing-accent-hover);
}

.mobile-login-menu {
    display: none;
    position: relative;
}

.mobile-login-dropdown {
    position: relative;
}

.mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    list-style: none;
    border: 1px solid var(--landing-line);
    border-radius: 8px;
    background: #f2ebe1;
    color: var(--landing-text);
    cursor: pointer;
    font-size: 26px;
    line-height: 1;
    user-select: none;
}

.mobile-menu-toggle:hover {
    background: #e9dfd2;
}

.mobile-menu-toggle::-webkit-details-marker {
    display: none;
}

.mobile-menu-toggle::marker {
    content: "";
}

.mobile-login-dropdown-panel {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 30;
    min-width: 168px;
    padding: 8px;
    border: 1px solid var(--landing-line);
    border-radius: 10px;
    background: var(--landing-surface);
    box-shadow: 0 14px 28px rgba(31, 27, 23, 0.14);
}

.mobile-login-dropdown[open] .mobile-login-dropdown-panel {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-link {
    display: block;
    padding: 8px 10px;
    border-radius: 8px;
    color: var(--landing-text);
    text-decoration: none;
    font-weight: 700;
}

.mobile-nav-link:hover {
    background: #f2ebe1;
    text-decoration: none;
}

.mobile-login-link {
    margin-top: 0;
    width: 100%;
    justify-content: center;
}

.mobile-login-dropdown-panel {
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    transform: translateY(-8px);
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
}

.mobile-login-dropdown[open] .mobile-login-dropdown-panel {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0s;
}

.mobile-login-dropdown[data-nav-enhanced="1"] .mobile-login-dropdown-panel {
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    transform: translateY(-8px);
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
}

.mobile-login-dropdown[data-nav-enhanced="1"][open].is-open .mobile-login-dropdown-panel {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0s;
}

.hero {
    margin-top: 24px;
    padding: 34px;
    border-radius: 18px;
    border: 1px solid #d2c4b3;
    background:
        radial-gradient(circle at 85% 18%, rgba(11, 107, 95, 0.2), transparent 42%),
        radial-gradient(circle at 18% 78%, rgba(214, 146, 46, 0.16), transparent 36%),
        linear-gradient(130deg, #fff6ea 0%, #f4ece3 100%);
}

.hero-content h1 {
    margin: 0;
    max-width: 800px;
    font-size: 44px;
    line-height: 1.08;
}

.hero-content p {
    margin: 16px 0 0;
    max-width: 620px;
    font-size: 20px;
    color: var(--landing-muted);
}

.cta-btn {
    display: inline-flex;
    margin-top: 22px;
    padding: 12px 18px;
    border-radius: 10px;
    background: var(--landing-accent);
    color: var(--landing-accent-contrast);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.cta-btn:hover {
    background: var(--landing-accent-hover);
}

.section {
    margin-top: 24px;
    padding: 24px;
    border: 1px solid var(--landing-line);
    border-radius: 14px;
    background: #fffdf9;
}

.section h2 {
    margin: 0;
    font-size: 30px;
}

.steps {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.step {
    border: 1px solid var(--landing-line);
    border-radius: 12px;
    background: #ffffff;
    padding: 16px;
    gap: 5px;
    display: flex;
    align-items: baseline;
}

.step span {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #f0ebe4;
    color: #6a4f2f;
    font-weight: 800;
}

.step h3 {
    margin: 10px 0 0;
    font-size: 18px;
}

.pricing .price-line {
    margin: 14px 0 0;
    font-size: 24px;
    font-weight: 800;
}

.pricing ul {
    margin: 14px 0 0;
    padding-left: 18px;
    line-height: 1.7;
}

.faq article + article {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px dashed var(--landing-line);
}

.faq h3 {
    margin: 0;
    font-size: 20px;
}

.faq p {
    margin: 6px 0 0;
    color: var(--landing-muted);
}

.lang-switch {
    font-size: 13px;
    color: var(--landing-muted);
}

.lang-switch a {
    color: var(--landing-accent);
    text-decoration: none;
    margin-left: 6px;
}

.lang-switch a:hover {
    text-decoration: underline;
}

.hedoben {
text-align: center;
}

.hedoben h2{
margin: 30px 0px 0px 0px;
}




@media (max-width: 900px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-nav-links {
        display: none;
    }

    .header-login-desktop {
        display: none;
    }

    .mobile-login-menu {
        display: block;
    }
}

@media (max-width: 640px) {
    body {
        padding: 10px;
    }

    .landing {
        padding: 18px 14px;
    }

    .landing-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .hero {
        padding: 22px 16px;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .section {
        padding: 16px;
    }

    .section h2 {
        font-size: 24px;
    }

    .pricing .price-line {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
   
    .brand img {
        max-width: 260px;
    }
}
