/* ============================================================
   DAF PLANER — Landing Page CSS
   ============================================================ */

:root {
    --lp-ink:    #155043;
    --lp-bg:     #d8f198;
    --lp-dark:   #0d3528;
    --lp-white:  #ffffff;
    --lp-dim:    rgba(21,80,67,.55);
    --lp-rule:   rgba(21,80,67,.15);
    --lp-font:   "DM Sans", system-ui, sans-serif;
    --lp-mono:   "DM Mono", monospace;
    --lp-r:      16px;
    --lp-rr:     24px;
}

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

.lp {
    font-family: var(--lp-font);
    color: var(--lp-ink);
    background: var(--lp-white);
    overflow-x: hidden;
}

p{
    text-wrap: unset;
}

/* ── Buttons ────────────────────────────────────────────── */
.bookingCTA span{
    font-size: 15px; font-weight: 700;
}

.bookingCTA svg path{
    fill: none;
    stroke: var(--dark-green);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 35px;
}

.lp-btn {
    display: inline-flex; align-items: center; gap: 8px;
    height: 52px; padding: 0 28px;
    border-radius: 100px; font-family: var(--lp-font);
    font-size: 15px; font-weight: 700;
    cursor: pointer; text-decoration: none;
    transition: transform .15s, box-shadow .15s, background .15s;
    border: none; white-space: nowrap;
}
.lp-btn--primary {
    background: var(--light-green); color: var(--dark-green);
    box-shadow: 0 4px 20px rgba(21,80,67,.35);
}
.lp-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(21,80,67,.45); }
.lp-btn--ghost {
    background: var(--lp-ink); color: var(--lp-bg);
    box-shadow: 0 4px 20px rgba(21,80,67,.35);
}
.lp-btn--ghost:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(21,80,67,.45); }
.lp-btn--outline {
    background: transparent; color: var(--lp-bg);
    border: 1.5px solid rgba(216,241,152,.4);
}
.lp-btn--outline:hover { background: rgba(216,241,152,.08); }
.lp-btn--full { width: 100%; justify-content: center; }

/* ── Section heads ──────────────────────────────────────── */
.lp-section-head {
 margin-bottom: 56px;
}
.lp-section-head__kicker {
    display: inline-block;
    font-size: 14px; font-weight: 800;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--lp-ink); opacity: 0.5;
    margin-bottom: 12px;
}
.lp-section-head__title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800; letter-spacing: -0.02em;
    line-height: 1.15; color: var(--lp-ink);
    margin-bottom: 16px;
    text-wrap: auto;
}
.lp-section-head__sub {
    font-size: 16px; color: var(--lp-dim);
    line-height: 1.6;
    text-wrap: auto;
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.lp-hero {
    min-height: 100vh;
    background: var(--lp-dark);
    display: grid;
    grid-template-columns: .5fr 1fr;
    align-items: center;
    gap: 40px;
    padding: var(--gapL) 150px 150px var(--gapL);
    position: relative;
    overflow: hidden;
}
@media (max-width: 900px) {
    .lp-hero { grid-template-columns: 1fr; padding: 80px 6vw 60px; text-align: center; }
}

/* Hintergrund-Orbs */
.lp-hero__bg { position: absolute; inset: 0; pointer-events: none; }
.lp-hero__orb {
    position: absolute; border-radius: 50%;
    filter: blur(80px); opacity: 0.18;
}
.lp-hero__orb--1 {
        width: 80vw;
    height: 100vh;
    background: var(--lp-bg);
    top: 0;
    right: -270px;
}

.lp-hero__badge {
    display: inline-flex; align-items: center;
    padding: 6px 14px;
    background: rgba(216,241,152,.1);
    border: 1px solid rgba(216,241,152,.25);
    border-radius: 100px;
    font-size: 12px; font-weight: 600;
    color: var(--lp-bg); letter-spacing: 0.04em;
    margin-bottom: 24px;
}

.lp-hero__title {
    font-size: clamp(36px, 5.5vw, 68px);
    font-weight: 900; letter-spacing: -0.03em;
    line-height: 1.08;
    color: var(--lp-white);
    margin-bottom: 24px;
}
.lp-hero__title em {
    font-style: normal;
    color: var(--lp-bg);
    position: relative;
}

.lp-hero__sub {
    font-size: 17px; line-height: 1.65;
    color: rgba(255,255,255,.65);
    max-width: 480px; margin-bottom: 40px;
}
@media (max-width: 900px) { .lp-hero__sub { margin: 0 auto 40px; } }

.lp-hero__actions {
    display: flex; gap: 12px; flex-wrap: wrap;
}
@media (max-width: 900px) { .lp-hero__actions { justify-content: center; } }

/* ── Perspektivischer Mockup ────────────────────────────── */
.lp-hero__mockup {
    transform: perspective(1200px) rotateY(-18deg) rotateX(8deg);
    transform-style: preserve-3d;
    will-change: transform;
    filter: drop-shadow(0 40px 80px rgba(0,0,0,.5));
}
@media (max-width: 900px) {
    .lp-hero__mockup {
        transform: perspective(1200px) rotateY(0deg) rotateX(8deg) scale(0.85);
        margin-top: 40px;
    }
}

.lp-mockup {
    background: #1a1a2e;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
}
.lp-mockup__chrome {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 16px;
    background: rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.lp-mockup__dots { display: flex; gap: 6px; }
.lp-mockup__dots span {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255,255,255,.2);
}
.lp-mockup__dots span:nth-child(1) { background: #ff5f57; }
.lp-mockup__dots span:nth-child(2) { background: #febc2e; }
.lp-mockup__dots span:nth-child(3) { background: #28c840; }
.lp-mockup__bar {
    flex: 1; height: 22px; background: rgba(255,255,255,.08);
    border-radius: 6px; max-width: 300px;
}
.lp-mockup__screen { overflow: hidden; }
.lp-mockup__img { width: 100%; display: block; height: auto;}

/* ═══════════════════════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════════════════════ */
.lp-features {
    padding: var(--gapXXL) var(--gapXL);
    background: var(--lp-white);
}

.lp-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}
@media (max-width: 1000px) { .lp-features__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .lp-features__grid { grid-template-columns: 1fr; } }

.lp-feature {
    background: rgba(21,80,67,.04);
    border: 1.5px solid var(--lp-rule);
    border-radius: var(--lp-rr);
    padding: 32px 28px;
    opacity: 0; transform: translateY(20px);
    transition: opacity .5s, transform .5s, border-color .2s, background .2s;
}
.lp-feature.lp--visible { opacity: 1; transform: translateY(0); }
.lp-feature:hover {
    border-color: rgba(21,80,67,.3);
    background: rgba(21,80,67,.07);
}
.lp-feature--wide { grid-column: span 2; }
.lp-feature--accent {
    background: var(--lp-ink); color: var(--lp-white);
    border-color: var(--lp-ink);
}
.lp-feature--accent h3 { color: var(--lp-bg); }
.lp-feature--accent p  { color: rgba(216,241,152,.7); }

.lp-feature__icon { font-size: 28px; margin-bottom: 16px; }
.lp-feature h3 {
    font-size: 18px; font-weight: 700; margin-bottom: 10px;
    color: var(--lp-ink);
}
.lp-feature p { font-size: 14px; color: var(--lp-dim); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════ */
.lp-how {
    padding: var(--gapXXL) var(--gapXL);
    background: var(--lp-bg);
}
.lp-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
@media (max-width: 900px) { .lp-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .lp-steps { grid-template-columns: 1fr; } }
 
.lp-step-card {
    background: white;
    border: 1.5px solid var(--lp-rule);
    border-radius: var(--lp-rr);
    padding: 28px 24px;
    display: flex; flex-direction: column; gap: 12px; transform: translateY(16px);
    transition: opacity .5s, transform .5s, box-shadow .2s;
}
.lp-step-card.lp--visible { opacity: 1; transform: translateY(0); }
.lp-step-card:hover {
    box-shadow: 0 8px 32px rgba(21,80,67,.1);
    border-color: rgba(21,80,67,.25);
}
.lp-step-card--highlight {
    background: var(--lp-ink);
    border-color: var(--lp-ink);
}
 
.lp-step-card__num {
    font-size: 36px; font-weight: 900;
    color: var(--lp-ink); opacity: 0.15;
    font-family: var(--lp-mono);
    line-height: 1;
}
.lp-step-card h3 { font-size: 16px; font-weight: 700; color: var(--lp-ink); }
.lp-step-card p  { font-size: 14px; color: var(--lp-dim); line-height: 1.6; }


/* ═══════════════════════════════════════════════════════════
   PFLANZEN
   ═══════════════════════════════════════════════════════════ */
.lp-plants {
    padding: var(--gapXXL) var(--gapXL);
    background: var(--lp-white);
    display: flex;
    gap: var(--gapXXL);
    align-items: center;
}

.lp-plant-chips {
    display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px;
}
.lp-chip {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px;
    background: color-mix(in srgb, var(--c) 12%, white);
    border: 1.5px solid color-mix(in srgb, var(--c) 30%, transparent);
    border-radius: 100px;
    font-size: 14px; font-weight: 600; color: var(--lp-ink);
    cursor: default;
    opacity: 0; transform: scale(0.9);
    transition: opacity .4s, transform .4s, background .2s;
}
.lp-chip.lp--visible { opacity: 1; transform: scale(1); }
.lp-chip:hover {
    background: color-mix(in srgb, var(--c) 20%, white);
    transform: scale(1.04);
}

.lp-plants__layer-badges {
    display: flex; flex-wrap: wrap; gap: 12px;
    margin-top: 32px;
}
.lp-layer-badge {
    padding: 8px 18px;
    background: rgba(21,80,67,.06);
    border-radius: 100px; font-size: 13px;
    font-weight: 600; color: var(--lp-dim);
}

/* ═══════════════════════════════════════════════════════════
   WARTELISTE
   ═══════════════════════════════════════════════════════════ */
.lp-waitlist {
    padding: 100px 8vw;
    background: var(--lp-dark);
    display: flex; justify-content: center;
}
.lp-waitlist__card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(216,241,152,.15);
    border-radius: 32px; padding: 56px;
    max-width: 560px; width: 100%;
    position: relative; overflow: hidden;
}
.lp-waitlist__orb {
    position: absolute; width: 400px; height: 400px;
    border-radius: 50%; background: var(--lp-bg);
    filter: blur(120px); opacity: 0.06;
    top: -100px; right: -100px; pointer-events: none;
}
.lp-waitlist__title {
    font-size: 34px; font-weight: 800;
    color: var(--lp-white); margin: 12px 0 16px;
    letter-spacing: -0.02em;
}
.lp-waitlist__sub {
    font-size: 15px; color: rgba(255,255,255,.55);
    line-height: 1.6; margin-bottom: 36px;
}