:root{
    --bg: #f6f3ee;
    --bg-soft: #efe9df;
    --surface: rgba(255, 255, 255, 0.82);
    --surface-strong: #ffffff;
    --surface-dark: #1f2b28;
    --text: #1c2422;
    --text-soft: #55615d;
    --text-light: rgba(255,255,255,0.82);
    --line: rgba(28, 36, 34, 0.10);
    --line-strong: rgba(28, 36, 34, 0.18);
    --primary: #1f4d43;
    --primary-dark: #173b33;
    --accent: #c7a46a;
    --accent-soft: rgba(199, 164, 106, 0.16);
    --success: #2f6b57;
    --shadow-sm: 0 10px 30px rgba(22, 28, 26, 0.06);
    --shadow-md: 0 24px 60px rgba(22, 28, 26, 0.10);
    --shadow-lg: 0 32px 90px rgba(22, 28, 26, 0.14);
    --radius-xs: 12px;
    --radius-sm: 18px;
    --radius-md: 28px;
    --radius-lg: 38px;
    --container: 1180px;
    --header-height: 88px;
    --demo-banner-height: 46px;
}

*,
*::before,
*::after{
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(199,164,106,0.18), transparent 28%),
        radial-gradient(circle at right 20%, rgba(31,77,67,0.08), transparent 26%),
        linear-gradient(180deg, #f8f5ef 0%, #f3eee7 100%);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img{
    max-width: 100%;
    display: block;
}

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

button,
input,
textarea,
select{
    font: inherit;
}

ul{
    margin: 0;
    padding: 0;
}

p,
h1,
h2,
h3,
h4{
    margin-top: 0;
}

p:last-child{
    margin-bottom: 0;
}

::selection{
    background: rgba(31,77,67,0.16);
}

.container{
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}

.section{
    padding: 96px 0;
}

.section--soft{
    background: linear-gradient(180deg, rgba(255,255,255,0.34) 0%, rgba(255,255,255,0.14) 100%);
}

.section--dark{
    color: #fff;
    background:
        radial-gradient(circle at top left, rgba(199,164,106,0.18), transparent 28%),
        linear-gradient(135deg, #1d2a27 0%, #233431 100%);
}

.section__eyebrow{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary);
}

.section__eyebrow::before{
    content: "";
    width: 28px;
    height: 1px;
    background: currentColor;
    opacity: 0.7;
}

.section--dark .section__eyebrow,
.section__header--light .section__eyebrow{
    color: rgba(255,255,255,0.78);
}

.section__header{
    max-width: 760px;
    margin-bottom: 44px;
}

.section__header h2{
    margin-bottom: 14px;
    font-size: clamp(2rem, 3.6vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.section__header p{
    color: var(--text-soft);
    font-size: 1.05rem;
}

.section__header--light p{
    color: rgba(255,255,255,0.74);
}

.btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    font-size: 0.98rem;
    line-height: 1;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
    cursor: pointer;
}

.btn:hover{
    transform: translateY(-1px);
}

.btn--primary{
    color: #fff;
    background: linear-gradient(135deg, var(--primary) 0%, #295f53 100%);
    box-shadow: 0 18px 38px rgba(31,77,67,0.18);
}

.btn--primary:hover{
    background: linear-gradient(135deg, var(--primary-dark) 0%, #214c43 100%);
}

.btn--secondary{
    color: var(--text);
    background: rgba(255,255,255,0.78);
    border-color: rgba(255,255,255,0.56);
    backdrop-filter: blur(12px);
}

.btn--secondary:hover{
    background: rgba(255,255,255,0.95);
}

.btn--ghost{
    color: var(--primary);
    background: transparent;
    border-color: rgba(31,77,67,0.20);
}

.btn--ghost:hover{
    background: rgba(31,77,67,0.06);
}

.text-link{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary);
    transition: gap 0.2s ease, opacity 0.2s ease;
}

.text-link::after{
    content: "?";
    font-size: 1rem;
}

.text-link:hover{
    gap: 14px;
}

.skip-link{
    position: absolute;
    left: -9999px;
    top: 0;
}

.skip-link:focus{
    left: 16px;
    top: 16px;
    z-index: 9999;
    background: #fff;
    color: var(--text);
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

/* Demo Banner */
.demo-banner{
    position: sticky;
    top: 0;
    z-index: 90;
    min-height: var(--demo-banner-height);
    display: flex;
    align-items: center;
    background: #16201d;
    color: rgba(255,255,255,0.86);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.demo-banner__inner{
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    font-size: 0.92rem;
}

.demo-banner__label{
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(199,164,106,0.18);
    color: #f1d7ab;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.72rem;
}

/* Header */
.header{
    position: sticky;
    top: var(--demo-banner-height);
    z-index: 80;
    padding: 18px 0;
    backdrop-filter: blur(16px);
    background: rgba(246,243,238,0.72);
    border-bottom: 1px solid rgba(28,36,34,0.06);
}

.header__inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo{
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
}

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

.nav a{
    min-height: 44px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 500;
    color: var(--text-soft);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.nav a:hover{
    color: var(--text);
    background: rgba(255,255,255,0.64);
}

.nav .btn{
    min-height: 46px;
    padding: 0 22px;
}

/* Hero */
.hero{
    padding-top: 72px;
    padding-bottom: 88px;
}

.hero__grid{
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
    gap: 42px;
    align-items: stretch;
}

.hero__content{
    padding-right: 16px;
}

.hero h1{
    margin-bottom: 22px;
    font-size: clamp(3rem, 6vw, 5.4rem);
    line-height: 0.96;
    letter-spacing: -0.055em;
    max-width: 12ch;
}

.hero__text{
    max-width: 62ch;
    margin-bottom: 30px;
    font-size: 1.16rem;
    color: var(--text-soft);
}

.hero__actions{
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 34px;
}

.hero__facts{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 760px;
}

.hero__facts > div{
    padding: 18px 18px 16px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.58);
    border: 1px solid rgba(28,36,34,0.06);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}

.hero__facts strong{
    display: block;
    margin-bottom: 6px;
    font-size: 1rem;
    color: var(--text);
}

.hero__facts span{
    display: block;
    color: var(--text-soft);
    font-size: 0.94rem;
    line-height: 1.5;
}

.hero__panel{
    display: flex;
}

.hero-card{
    position: relative;
    width: 100%;
    padding: 34px;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.78) 100%);
    border: 1px solid rgba(28,36,34,0.08);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(16px);
    overflow: hidden;
}

.hero-card::before{
    content: "";
    position: absolute;
    inset: 0 0 auto auto;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(199,164,106,0.22) 0%, transparent 70%);
    pointer-events: none;
}

.hero-card__label{
    display: inline-flex;
    margin-bottom: 16px;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: #8c6b37;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-card h2{
    margin-bottom: 14px;
    font-size: clamp(1.7rem, 2.5vw, 2.4rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.hero-card p{
    margin-bottom: 22px;
    color: var(--text-soft);
}

.hero-card ul{
    list-style: none;
    margin-bottom: 24px;
    display: grid;
    gap: 12px;
}

.hero-card li{
    position: relative;
    padding-left: 24px;
    color: var(--text);
}

.hero-card li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 5px rgba(199,164,106,0.14);
}

/* Intro */
.intro__grid{
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
    gap: 40px;
    align-items: start;
}

.intro h2,
.team-preview h2,
.cta-box h2{
    margin-bottom: 18px;
    font-size: clamp(2.1rem, 3.2vw, 3.3rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.intro p,
.team-preview p,
.cta-box p{
    color: var(--text-soft);
    font-size: 1.04rem;
}

.quote-box{
    padding: 30px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(28,36,34,0.08);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.quote-box p{
    margin-bottom: 22px;
    font-size: 1.08rem;
    line-height: 1.7;
    color: var(--text);
}

/* Cards */
.cards-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.card{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
    padding: 28px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.76);
    border: 1px solid rgba(28,36,34,0.08);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.card:hover{
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(31,77,67,0.18);
}

.card h3{
    margin-bottom: 12px;
    font-size: 1.35rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.card p{
    margin-bottom: 22px;
    color: var(--text-soft);
}

.section__actions{
    margin-top: 34px;
    display: flex;
    justify-content: flex-start;
}

/* Benefits */
.benefits-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.benefits-grid > div{
    padding: 28px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(12px);
}

.benefits-grid h3{
    margin-bottom: 12px;
    font-size: 1.3rem;
    letter-spacing: -0.02em;
}

.benefits-grid p{
    color: rgba(255,255,255,0.74);
}

/* Team */
.team-preview__grid{
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 400px);
    gap: 38px;
    align-items: center;
}

.profile-card{
    padding: 32px;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.86) 0%, rgba(255,255,255,0.76) 100%);
    border: 1px solid rgba(28,36,34,0.08);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
}

.profile-card > span:first-child{
    display: inline-flex;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(31,77,67,0.10);
    color: var(--primary);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.profile-card h3{
    margin-bottom: 8px;
    font-size: 1.8rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.profile-card p{
    color: var(--text-soft);
}

.profile-card p:nth-of-type(1){
    margin-bottom: 14px;
    font-weight: 600;
    color: var(--text);
}

/* CTA */
.cta-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    padding: 38px;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(31,77,67,0.94) 0%, rgba(36,58,52,0.96) 100%);
    color: #fff;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
}

.cta-box::before{
    content: "";
    position: absolute;
    right: -40px;
    top: -40px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(199,164,106,0.24) 0%, transparent 70%);
    pointer-events: none;
}

.cta-box__content{
    max-width: 720px;
    position: relative;
    z-index: 1;
}

.cta-box .section__eyebrow{
    color: rgba(255,255,255,0.72);
}

.cta-box p{
    color: rgba(255,255,255,0.78);
}

.cta-box__actions{
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cta-box .btn--primary{
    background: #fff;
    color: var(--primary);
    box-shadow: none;
}

.cta-box .btn--primary:hover{
    background: #f4efe7;
}

.cta-box .btn--ghost{
    color: #fff;
    border-color: rgba(255,255,255,0.22);
}

.cta-box .btn--ghost:hover{
    background: rgba(255,255,255,0.08);
}

/* Footer */
.footer{
    padding: 38px 0 44px;
    border-top: 1px solid rgba(28,36,34,0.08);
    background: rgba(255,255,255,0.30);
}

.footer__inner{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.footer p,
.footer a{
    color: var(--text-soft);
    font-size: 0.95rem;
}

.footer a:hover{
    color: var(--primary);
}

/* Mehr-erfahren Seite */
.cta.section{
    min-height: calc(100vh - 240px);
    display: flex;
    align-items: center;
}

.cta.section .cta-box{
    width: 100%;
}

/* Utility */
.hidden{
    display: none !important;
}

/* Responsive */
@media (max-width: 1080px){
    .hero__grid,
    .intro__grid,
    .team-preview__grid{
        grid-template-columns: 1fr;
    }

    .hero__content{
        padding-right: 0;
    }

    .hero__facts,
    .cards-grid,
    .benefits-grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-box{
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 820px){
    :root{
        --demo-banner-height: 56px;
    }

    .section{
        padding: 78px 0;
    }

    .header{
        padding: 14px 0;
    }

    .header__inner{
        flex-direction: column;
        align-items: stretch;
    }

    .logo{
        text-align: center;
    }

    .nav{
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero{
        padding-top: 48px;
        padding-bottom: 72px;
    }

    .hero h1{
        max-width: none;
    }

    .hero__facts,
    .cards-grid,
    .benefits-grid{
        grid-template-columns: 1fr;
    }

    .hero-card,
    .quote-box,
    .card,
    .profile-card,
    .cta-box{
        padding: 26px;
    }

    .cta.section{
        min-height: auto;
    }
}

@media (max-width: 560px){
    .container{
        width: min(var(--container), calc(100% - 28px));
    }

    .section{
        padding: 64px 0;
    }

    .hero__actions,
    .cta-box__actions,
    .section__actions{
        flex-direction: column;
        align-items: stretch;
    }

    .btn{
        width: 100%;
    }

    .nav{
        gap: 8px;
    }

    .nav a{
        width: 100%;
    }

    .demo-banner__inner{
        font-size: 0.84rem;
    }
}