:root {
    --primary: rgb(0, 52, 32);
    --primary-light: #0b6b46;
    --accent: #f5e6c8;
    --accent-strong: #f0c96a;
    --text-light: #fdfaf2;
    --text-muted: #c6d3c8;
    --card-bg: rgba(0, 0, 0, 0.15);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: var(--primary);
    color: var(--text-light);
    line-height: 1.6;
}

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

header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(10px);
    background: rgba(0, 52, 32, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo {
    height: 120px;
    width: auto;
}

.nav-title {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.nav-title span:first-child {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.03em;
}

.nav-title span:last-child {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

.nav-links {
    display: flex;
    gap: 1.25rem;
    font-size: 0.9rem;
}

.nav-links a {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
    opacity: 0.85;
}

.nav-links a:hover {
    opacity: 1;
}

main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2.5rem 1.25rem 3.5rem;
}

/* HERO */

.hero {
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.5fr);
    gap: 2.5rem;
    align-items: center;
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    background: radial-gradient(circle at top left, rgba(245, 230, 200, 0.16), transparent 55%), var(--card-bg);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.hero h1 {
    margin: 0 0 0.75rem;
    font-size: clamp(2.1rem, 4vw, 2.6rem);
}

.hero p.lead {
    margin: 0 0 1.5rem;
    color: var(--text-muted);
    max-width: 32rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

/* Buttons */

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent-strong);
    color: #1e200f;
}

.btn-primary:hover {
    filter: brightness(1.05);
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border: 1px solid rgba(245, 230, 200, 0.5);
}

.btn-secondary:hover {
    background: rgba(0, 0, 0, 0.2);
}

.hero-meta {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* HERO RIGHT */

.hero-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-logo-wrapper {
    padding: 0;
    border-radius: 0;
    background: none;
    border: none;
    text-align: left; 
}

.hero-logo-wrapper img {
    max-width: 240px;
    width: 100%;
    height: auto;
}

.hero-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
}

.hero-phone {
    padding: 1rem 1.1rem;
    border-radius: 1.25rem;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.8rem;
}

.hero-phone h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.pill {
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    border: 1px solid rgba(245, 230, 200, 0.3);
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* SECTIONS */

section {
    margin-top: 3rem;
}

h2.section-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.section-intro {
    color: var(--text-muted);
    max-width: 38rem;
    margin-bottom: 1.6rem;
}

/* GRIDS & CARDS */

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.card {
    padding: 1.4rem;
    border-radius: 1rem;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.card h3 {
    margin-top: 0;
    margin-bottom: 0.4rem;
    font-size: 1rem;
}

.card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.card-tag {
    display: inline-flex;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    border: 1px solid rgba(245, 230, 200, 0.32);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

/* STEPS */

.steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.step-number {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(245, 230, 200, 0.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

/* FAQ */

.faq-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    margin: 0 0 0.35rem;
    font-size: 0.95rem;
}

.faq-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* CONTACT */

.contact {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.4fr);
    gap: 2rem;
    align-items: start;
}

.contact-box {
    padding: 1.4rem;
    border-radius: 1rem;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.9rem;
}

.contact-box h3 {
    margin-top: 0;
    margin-bottom: 0.6rem;
}

.contact ul {
    padding-left: 1.1rem;
    margin: 0.3rem 0 0;
    color: var(--text-muted);
}

.contact li {
    margin-bottom: 0.3rem;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.newsletter-form input[type="email"] {
    flex: 1 1 160px;
    padding: 0.55rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(245, 230, 200, 0.35);
    background: rgba(0, 0, 0, 0.3);
    color: var(--text-light);
    font-size: 0.9rem;
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

.newsletter-note {
    margin-top: 0.6rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* FOOTER */

footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.2rem 1.25rem 1.8rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

footer .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-links {
    display: flex;
    gap: 0.8rem;
}

.footer-links a {
    text-decoration: underline;
    text-underline-offset: 0.15em;
    text-decoration-thickness: 1px;
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 1.8rem 1.4rem;
    }

    .hero-right {
        order: -1;
    }

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

    .nav-links {
        display: none; /* einfaches Mobile-Layout */
    }

    main {
        padding-top: 2rem;
    }
}
