/* =========================================================
   Kitzretter Landing Page — Standalone
   Kreisjägerschaft Paderborn e.V.
   ========================================================= */

:root {
    --primary: #2d5e2e;
    --primary-dark: #1f4220;
    --primary-light: #4a8a4c;
    --accent: #f4b73c;
    --accent-dark: #ee8b1a;
    --bg: #f4f7f1;
    --text: #1f2421;
    --muted: #6b7770;
    --border: #dbe3d6;
    --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: #0d1f0d;
    color: var(--text);
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
::selection { background: var(--accent); color: var(--primary-dark); }
img { max-width: 100%; display: block; }
a { text-decoration: none; }

.lp-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 26px;
}

/* === Sticky Nav === */
.lp-nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 30px;
    background: rgba(15, 30, 15, 0);
    transition: background .3s ease, backdrop-filter .3s ease, box-shadow .3s ease;
}
.lp-nav.scrolled {
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
}
.lp-nav.scrolled .lp-brand .t,
.lp-nav.scrolled .lp-brand .s { color: #1f4220; }
.lp-nav.scrolled .lp-links a:not(.lp-nav-btn) { color: #1f4220; }
.lp-brand { display: flex; align-items: center; gap: 12px; color: #fff; }
.lp-brand img { width: 40px; height: 40px; border-radius: 8px; background: #fff; padding: 2px; }
.lp-brand .t { font-size: 15px; font-weight: 700; line-height: 1.1; color: #fff; transition: color .3s ease; }
.lp-brand .s { font-size: 11.5px; opacity: .8; color: #fff; transition: color .3s ease; }
.lp-links { display: flex; align-items: center; gap: 22px; }
.lp-links a:not(.lp-nav-btn) {
    color: #fff; font-size: 14px; font-weight: 500; opacity: .9;
    transition: color .3s ease, opacity .2s ease;
}
.lp-links a:hover { opacity: 1; }
.lp-nav-btn {
    background: linear-gradient(135deg, #f4b73c 0%, #ee8b1a 100%);
    color: #2a1a00 !important;
    padding: 9px 18px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13.5px;
    box-shadow: 0 4px 14px rgba(238,139,26,.35);
    transition: transform .2s ease, box-shadow .2s ease;
}
.lp-nav-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(238,139,26,.5); }
@media (max-width: 720px) {
    .lp-nav { padding: 12px 16px; }
    .lp-links { gap: 12px; }
    .lp-links a:not(.lp-nav-btn) { display: none; }
    .lp-brand .s { display: none; }
}

/* === HERO === */
.lp-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 20% 30%, #234a24 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, #4a3a13 0%, transparent 55%),
        linear-gradient(180deg, #0d1f0d 0%, #142b14 100%);
    padding: 160px 0 120px;
    color: #fff;
}
.lp-hero-inner {
    position: relative; z-index: 5;
    max-width: 1180px; margin: 0 auto;
    padding: 0 26px; text-align: center;
}

/* Animated blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: .55;
    z-index: 1;
    pointer-events: none;
    animation: blob-drift 22s ease-in-out infinite;
}
.blob-1 {
    width: 620px; height: 620px;
    background: radial-gradient(circle, #4a8a4c 0%, transparent 65%);
    top: -180px; left: -100px;
}
.blob-2 {
    width: 520px; height: 520px;
    background: radial-gradient(circle, #ee8b1a 0%, transparent 65%);
    top: 30%; right: -160px;
    animation-delay: -7s; opacity: .35;
}
.blob-3 {
    width: 480px; height: 480px;
    background: radial-gradient(circle, #f4b73c 0%, transparent 60%);
    bottom: -160px; left: 30%;
    animation-delay: -14s; opacity: .3;
}
@keyframes blob-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(60px, -40px) scale(1.1); }
    66%      { transform: translate(-40px, 50px) scale(.95); }
}

.lp-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 2;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.lp-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    color: #fff;
    border-radius: 999px;
    font-size: 12.5px; font-weight: 600; letter-spacing: .3px;
    margin-bottom: 26px;
    backdrop-filter: blur(6px);
}
.lp-hero-badge .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 12px #4ade80;
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(1.3); }
}
.lp-hero-title {
    font-size: clamp(38px, 6vw, 74px);
    font-weight: 800;
    line-height: 1.03;
    letter-spacing: -1.5px;
    margin: 0 0 24px;
    color: #fff;
}
.gradient-text {
    background: linear-gradient(90deg, #f4b73c 0%, #ee8b1a 60%, #ffcf6e 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.lp-hero-sub {
    font-size: clamp(15px, 1.8vw, 19px);
    max-width: 640px; margin: 0 auto 40px;
    color: rgba(255,255,255,.75); line-height: 1.6;
}
.lp-hero-sub strong { color: #fff; font-weight: 600; }
.lp-hero-cta {
    display: flex; gap: 14px; justify-content: center;
    flex-wrap: wrap; margin-bottom: 70px;
}
.lp-btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, #f4b73c 0%, #ee8b1a 100%);
    color: #2a1a00 !important;
    padding: 16px 28px;
    border-radius: 12px;
    font-weight: 700; font-size: 15.5px;
    box-shadow: 0 12px 30px rgba(238,139,26,.4);
    transition: transform .25s ease, box-shadow .25s ease;
    position: relative; overflow: hidden;
}
.lp-btn-primary::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
    transform: translateX(-100%);
    transition: transform .6s ease;
}
.lp-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 45px rgba(238,139,26,.55);
}
.lp-btn-primary:hover::before { transform: translateX(100%); }
.lp-btn-xl { padding: 20px 36px; font-size: 17px; }
.lp-btn-ghost {
    display: inline-flex; align-items: center;
    color: rgba(255,255,255,.9) !important;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600; font-size: 14.5px;
    border: 1.5px solid rgba(255,255,255,.2);
    transition: background .25s ease, border-color .25s ease;
}
.lp-btn-ghost:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.35);
}

/* === Mockup === */
.lp-mockup {
    max-width: 720px; margin: 0 auto;
    border-radius: 18px; overflow: hidden;
    background: #fff;
    box-shadow:
        0 40px 80px rgba(0,0,0,.5),
        0 0 0 1px rgba(255,255,255,.1),
        0 0 100px rgba(74,138,76,.25);
    transform: perspective(1200px) rotateX(6deg);
    transform-origin: center bottom;
    animation: mockup-float 6s ease-in-out infinite;
}
@keyframes mockup-float {
    0%, 100% { transform: perspective(1200px) rotateX(6deg) translateY(0); }
    50%      { transform: perspective(1200px) rotateX(6deg) translateY(-10px); }
}
.lp-mockup-bar {
    display: flex; align-items: center; gap: 6px;
    padding: 10px 14px;
    background: #f0f4ec;
    border-bottom: 1px solid #dbe3d6;
}
.lp-mockup-bar span { width: 12px; height: 12px; border-radius: 50%; background: #d0d8cc; }
.lp-mockup-bar span:nth-child(1) { background: #ff6357; }
.lp-mockup-bar span:nth-child(2) { background: #ffbd2e; }
.lp-mockup-bar span:nth-child(3) { background: #28c941; }
.lp-mockup-url {
    margin-left: 14px;
    font-size: 12px; color: #6b7770;
    font-family: ui-monospace, Consolas, monospace;
    background: #fff;
    padding: 4px 12px; border-radius: 8px;
    flex: 1; max-width: 320px; text-align: center;
}
.lp-mockup-content { padding: 20px 22px; }
.mock-topbar {
    display: flex; align-items: center; gap: 12px;
    padding-bottom: 14px;
    border-bottom: 2px solid #eef3eb;
    margin-bottom: 14px;
    text-align: left;
}
.mock-topbar img { width: 40px; height: 40px; }
.mock-topbar .t { font-size: 15px; font-weight: 700; color: #1f4220; }
.mock-topbar .s { font-size: 11.5px; color: #6b7770; }
.mock-stats {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 8px; margin-bottom: 14px;
}
.mock-stats > div {
    background: #f6faf3; border-radius: 8px;
    padding: 10px 8px; text-align: center;
    border-left: 3px solid #2d5e2e;
}
.mock-stats > div:nth-child(2) { border-color: #ee8b1a; }
.mock-stats > div:nth-child(3) { border-color: #1a4b7a; }
.mock-stats > div:nth-child(4) { border-color: #6a3a8e; }
.mock-stats .n {
    font-size: 20px; font-weight: 800;
    color: #1f4220;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}
.mock-stats .n small { font-size: 12px; opacity: .7; font-weight: 500; }
.mock-stats .l {
    font-size: 9.5px; color: #6b7770;
    text-transform: uppercase; letter-spacing: .4px;
    margin-top: 4px; font-weight: 600;
}
.mock-form {
    background: #fafcf8;
    border: 1px solid #dbe3d6;
    border-radius: 10px;
    padding: 12px 14px;
    text-align: left;
}
.mock-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 6px 0; font-size: 12.5px;
    border-bottom: 1px dashed #dbe3d6;
}
.mock-row:last-of-type { border-bottom: 0; }
.mock-lbl {
    color: #6b7770; font-weight: 600;
    text-transform: uppercase; letter-spacing: .3px;
    font-size: 10.5px;
}
.mock-inp {
    background: #fff;
    padding: 4px 10px; border-radius: 6px;
    color: #1f4220; font-weight: 600;
    border: 1px solid #dbe3d6;
}
.mock-cta {
    background: linear-gradient(135deg, #f4b73c, #ee8b1a);
    color: #2a1a00; text-align: center;
    padding: 8px; border-radius: 6px;
    font-weight: 700; font-size: 12px;
    margin-top: 8px;
}

.lp-hero-fade {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 120px;
    background: linear-gradient(180deg, transparent 0%, #f4f7f1 100%);
    z-index: 3;
    pointer-events: none;
}

/* === LIVE STATS === */
.lp-livestats { background: #f4f7f1; padding: 60px 0; position: relative; }
.lp-livestats-title {
    text-align: center; color: #6b7770;
    font-size: 12.5px; text-transform: uppercase;
    letter-spacing: 2px; font-weight: 700;
    margin-bottom: 30px;
}
.lp-livestats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.lstat {
    background: #fff;
    border-radius: 16px;
    padding: 28px 22px; text-align: center;
    border: 1px solid rgba(45,94,46,.08);
    box-shadow: 0 4px 16px rgba(0,0,0,.05);
    transition: transform .3s ease, box-shadow .3s ease;
}
.lstat:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.08); }
.lstat-n {
    font-size: 44px; font-weight: 800;
    background: linear-gradient(135deg, #2d5e2e 0%, #4a8a4c 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1; letter-spacing: -1px;
    font-variant-numeric: tabular-nums;
}
.lstat-n small { font-size: 22px; opacity: .7; font-weight: 600; }
.lstat-l {
    color: #6b7770; font-size: 13px;
    margin-top: 10px;
    text-transform: uppercase; letter-spacing: .5px;
    font-weight: 600;
}

/* === Section base === */
.lp-section { padding: 100px 0; background: #f4f7f1; color: #1f2421; }
.lp-section-dark {
    background: #142b14; color: #fff;
    position: relative; overflow: hidden;
}
.lp-section-dark::before {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(74,138,76,.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(238,139,26,.15) 0%, transparent 50%);
    pointer-events: none;
}
.lp-section-head { text-align: center; margin-bottom: 60px; position: relative; z-index: 2; }
.lp-section-head .eyebrow {
    color: #ee8b1a;
    font-size: 12.5px; text-transform: uppercase;
    letter-spacing: 2.5px; font-weight: 700;
    margin-bottom: 14px;
}
.lp-section-head h2 {
    font-size: clamp(30px, 4.5vw, 52px);
    font-weight: 800; line-height: 1.1;
    letter-spacing: -1px; margin: 0 0 16px;
    color: #1f4220;
}
.lp-section-head.light h2 { color: #fff; }
.lp-section-head p {
    max-width: 620px; margin: 0 auto;
    color: #6b7770; font-size: 16px; line-height: 1.6;
}
.lp-section-head.light p { color: rgba(255,255,255,.75); }

/* === Vergleich === */
.benefit-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    position: relative;
}
.benefit-compare::before {
    content: "VS";
    position: absolute;
    left: 50%; top: 40px;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f4b73c, #ee8b1a);
    color: #2a1a00; font-weight: 800; font-size: 14px;
    padding: 6px 14px; border-radius: 999px;
    letter-spacing: 1px; z-index: 3;
    box-shadow: 0 6px 16px rgba(238,139,26,.4);
}
.benefit-compare .col {
    background: #fff;
    border-radius: 20px;
    padding: 40px 32px;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 8px 24px rgba(0,0,0,.05);
}
.benefit-compare .vs-before {
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
    color: #6b7770;
}
.benefit-compare .vs-after {
    background: linear-gradient(135deg, #f6faf3 0%, #eaf3e6 100%);
    border-color: rgba(45,94,46,.15);
    box-shadow: 0 16px 40px rgba(45,94,46,.12);
    color: #1f4220;
}
.col-head { margin-bottom: 20px; }
.badge-cross, .badge-check {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 11.5px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .8px;
    margin-bottom: 12px;
}
.badge-cross { background: #ececec; color: #999; }
.badge-cross::before { content: "✕"; font-size: 14px; }
.badge-check { background: #2d5e2e; color: #fff; }
.badge-check::before { content: "✓"; font-size: 14px; }
.col h3 { margin: 0; font-size: 22px; font-weight: 700; letter-spacing: -.3px; }
.benefit-compare ul { list-style: none; padding: 0; margin: 0; }
.benefit-compare li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 15px; line-height: 1.5;
    border-bottom: 1px dashed rgba(0,0,0,.08);
}
.benefit-compare li:last-child { border-bottom: 0; }
.vs-before li::before {
    content: "✕";
    position: absolute; left: 0; top: 12px;
    color: #b3261e; font-weight: 800;
}
.vs-after li::before {
    content: "✓";
    position: absolute; left: 0; top: 12px;
    color: #2d5e2e; font-weight: 800;
}
@media (max-width: 780px) {
    .benefit-compare { grid-template-columns: 1fr; gap: 50px; }
    .benefit-compare::before { top: -20px; left: 50%; }
}

/* === Steps === */
.steps-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; position: relative; z-index: 2;
}
.step-card {
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    padding: 36px 30px;
    transition: transform .3s ease, background .3s ease, border-color .3s ease;
}
.step-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,.1);
    border-color: rgba(244,183,60,.4);
}
.step-num {
    font-size: 56px; font-weight: 900;
    background: linear-gradient(135deg, #f4b73c 0%, #ee8b1a 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1; letter-spacing: -3px;
    margin-bottom: 18px; display: inline-block;
}
.step-card h3 {
    color: #fff; font-size: 22px; font-weight: 700;
    margin: 0 0 12px; letter-spacing: -.3px;
}
.step-card p {
    color: rgba(255,255,255,.75);
    font-size: 15px; line-height: 1.6; margin: 0;
}
@media (max-width: 900px) { .steps-grid { grid-template-columns: 1fr; } }

/* === Features === */
.feature-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.feature-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 18px;
    padding: 32px 28px;
    transition: transform .3s ease, box-shadow .3s ease;
    position: relative; overflow: hidden;
}
.feature-card::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(74,138,76,.05) 100%);
    opacity: 0; transition: opacity .3s ease;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,.08);
    border-color: rgba(45,94,46,.15);
}
.feature-card:hover::before { opacity: 1; }
.feature-ico {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #2d5e2e 0%, #4a8a4c 100%);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 8px 20px rgba(45,94,46,.3);
}
.feature-ico svg { width: 26px; height: 26px; }
.feature-card:nth-child(2) .feature-ico { background: linear-gradient(135deg, #ee8b1a, #f4b73c); box-shadow: 0 8px 20px rgba(238,139,26,.3); color: #2a1a00; }
.feature-card:nth-child(3) .feature-ico { background: linear-gradient(135deg, #1a4b7a, #2e7eb8); box-shadow: 0 8px 20px rgba(26,75,122,.3); }
.feature-card:nth-child(4) .feature-ico { background: linear-gradient(135deg, #6a3a8e, #b56dc4); box-shadow: 0 8px 20px rgba(106,58,142,.3); }
.feature-card:nth-child(5) .feature-ico { background: linear-gradient(135deg, #2d5e2e 0%, #4a8a4c 100%); box-shadow: 0 8px 20px rgba(45,94,46,.3); }
.feature-card:nth-child(6) .feature-ico { background: linear-gradient(135deg, #8a1d17, #b3261e); box-shadow: 0 8px 20px rgba(138,29,23,.3); }
.feature-card h3 {
    font-size: 19px; font-weight: 700;
    color: #1f4220;
    margin: 0 0 8px; letter-spacing: -.3px;
    position: relative;
}
.feature-card p {
    color: #6b7770;
    font-size: 14.5px; line-height: 1.55;
    margin: 0; position: relative;
}
@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr; } }

/* === CTA-Band === */
.lp-cta-band {
    padding: 90px 0;
    background: linear-gradient(135deg, #1f4220 0%, #2d5e2e 50%, #4a8a4c 100%);
    position: relative; overflow: hidden;
    color: #fff;
}
.lp-cta-band::before {
    content: ""; position: absolute; inset: 0;
    background:
        radial-gradient(circle at 15% 50%, rgba(244,183,60,.25) 0%, transparent 50%),
        radial-gradient(circle at 85% 50%, rgba(238,139,26,.2) 0%, transparent 50%);
    pointer-events: none;
}
.cta-inner {
    text-align: center; max-width: 720px;
    margin: 0 auto;
    position: relative; z-index: 2;
}
.cta-inner h2 {
    font-size: clamp(30px, 5vw, 48px);
    font-weight: 800; color: #fff;
    line-height: 1.1; letter-spacing: -1px;
    margin: 0 0 18px;
}
.cta-inner p {
    color: rgba(255,255,255,.85);
    font-size: 17px;
    margin: 0 0 34px; line-height: 1.6;
}
.cta-buttons {
    display: flex; gap: 14px;
    justify-content: center; flex-wrap: wrap;
}

/* === Footer === */
.lp-footer {
    background: #0d1f0d;
    color: rgba(255,255,255,.7);
    padding: 60px 0 24px;
}
.lp-foot-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.lp-foot-brand { display: flex; align-items: center; gap: 14px; }
.lp-foot-brand img { width: 52px; height: 52px; background: #fff; border-radius: 10px; padding: 3px; }
.lp-foot-brand .t { color: #fff; font-size: 16px; font-weight: 700; }
.lp-foot-brand .s { font-size: 13px; opacity: .7; margin-top: 2px; }
.lp-foot-title {
    color: #f4b73c;
    font-size: 12px; text-transform: uppercase;
    letter-spacing: 1.5px; font-weight: 700;
    margin-bottom: 12px;
}
.lp-footer a {
    display: block;
    color: rgba(255,255,255,.7);
    font-size: 14px; padding: 4px 0;
    transition: color .2s ease;
}
.lp-footer a:hover { color: #f4b73c; }
.lp-foot-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 24px;
    text-align: center;
    font-size: 12.5px;
    color: rgba(255,255,255,.5);
}
@media (max-width: 720px) {
    .lp-foot-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* === Hero-Collage (statt Mockup) === */
.hero-collage {
    position: relative;
    max-width: 780px;
    margin: 0 auto;
    height: 480px;
    animation: mockup-float 6s ease-in-out infinite;
}
.collage-photo {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,.55), 0 0 0 4px rgba(255,255,255,.08);
    background: #234a24;
}
.collage-photo img {
    width: 100%; height: 100%; object-fit: cover;
    display: block;
    transition: transform .6s cubic-bezier(.22,.61,.36,1);
}
.collage-photo.missing::after {
    content: "Bild fehlt · Datei ins Verzeichnis assets/img/ legen";
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(74,138,76,.25);
    color: #fff; font-size: 12px; text-align: center; padding: 10px;
}
.collage-photo:hover img { transform: scale(1.05); }

.photo-1 {
    width: 58%; height: 380px;
    left: 0; top: 40px;
    transform: rotate(-3deg);
    z-index: 3;
}
.photo-2 {
    width: 48%; height: 320px;
    right: 0; top: 0;
    transform: rotate(4deg);
    z-index: 2;
}
.photo-3 {
    width: 42%; height: 260px;
    right: 6%; bottom: 0;
    transform: rotate(-2deg);
    z-index: 4;
}

.collage-badge {
    position: absolute;
    left: 42%; bottom: 40px;
    background: linear-gradient(135deg, #f4b73c 0%, #ee8b1a 100%);
    color: #2a1a00;
    border-radius: 50%;
    width: 130px; height: 130px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    z-index: 10;
    box-shadow: 0 20px 40px rgba(238,139,26,.6);
    transform: rotate(-8deg);
    border: 4px solid #fff;
    animation: badge-wobble 5s ease-in-out infinite;
}
@keyframes badge-wobble {
    0%, 100% { transform: rotate(-8deg); }
    50% { transform: rotate(-4deg) scale(1.03); }
}
.collage-badge .badge-n {
    font-size: 36px; font-weight: 900;
    line-height: 1; letter-spacing: -1px;
    font-variant-numeric: tabular-nums;
}
.collage-badge .badge-l {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 700;
    margin-top: 4px;
    line-height: 1.2;
    text-align: center;
}
@media (max-width: 780px) {
    .hero-collage { height: 380px; max-width: 100%; }
    .photo-1 { width: 65%; height: 260px; top: 20px; }
    .photo-2 { width: 55%; height: 220px; }
    .photo-3 { width: 50%; height: 180px; }
    .collage-badge { width: 100px; height: 100px; left: auto; right: 4%; bottom: 20px; }
    .collage-badge .badge-n { font-size: 28px; }
    .collage-badge .badge-l { font-size: 9px; }
}

/* === Feature-Icon mit PNG === */
.feature-ico-img {
    background: linear-gradient(135deg, #f6ecdb 0%, #efe0c4 100%) !important;
    color: transparent;
    padding: 6px;
    box-shadow: 0 8px 20px rgba(139,106,62,.25) !important;
}
.feature-ico-img img {
    width: 100%; height: 100%; object-fit: contain;
}
.feature-card:hover .feature-ico-img img {
    transform: scale(1.1);
    transition: transform .3s ease;
}

/* === FOTO-STORY === */
.lp-story {
    padding: 100px 0;
    background: linear-gradient(180deg, #142b14 0%, #0d1f0d 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.lp-story::before {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 15% 15%, rgba(74,138,76,.25) 0%, transparent 55%),
        radial-gradient(circle at 85% 85%, rgba(238,139,26,.15) 0%, transparent 55%);
    pointer-events: none;
}
.lp-story .lp-section-head { position: relative; z-index: 2; }
.lp-story .lp-section-head h2 { color: #fff; }
.lp-story .lp-section-head p { color: rgba(255,255,255,.75); }

.story-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 200px;
    gap: 16px;
    position: relative;
    z-index: 2;
}
.story-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #234a24;
    box-shadow: 0 12px 30px rgba(0,0,0,.4);
    transition: transform .4s cubic-bezier(.22,.61,.36,1), box-shadow .4s ease;
    cursor: default;
}
.story-item img {
    width: 100%; height: 100%; object-fit: cover;
    display: block;
    transition: transform .6s cubic-bezier(.22,.61,.36,1), filter .4s ease;
    filter: brightness(.85);
}
.story-item.missing::after {
    content: "Bild fehlt · in assets/img/ ablegen";
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(74,138,76,.4);
    color: #fff; font-size: 13px; text-align: center; padding: 20px;
    z-index: 3;
}
.story-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(0,0,0,.5);
}
.story-item:hover img { transform: scale(1.08); filter: brightness(1); }

.story-item-a { grid-column: span 6; grid-row: span 2; }
.story-item-b { grid-column: span 6; grid-row: span 1; }
.story-item-c { grid-column: span 3; grid-row: span 1; }
.story-item-d { grid-column: span 3; grid-row: span 1; }

.story-overlay {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 20px 22px;
    background: linear-gradient(180deg, transparent 0%, rgba(13,31,13,.85) 55%, rgba(13,31,13,.95) 100%);
    color: #fff;
    z-index: 2;
}
.story-num {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, #f4b73c 0%, #ee8b1a 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 6px;
    display: inline-block;
}
.story-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -.2px;
}
.story-text {
    font-size: 12.5px;
    color: rgba(255,255,255,.75);
    line-height: 1.45;
}

.story-quote {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    align-items: center;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 24px;
    padding: 30px 36px;
    position: relative;
    z-index: 2;
}
.story-quote img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0,0,0,.5);
    display: block;
}
.story-quote.missing img { display: none; }
.story-quote blockquote {
    font-size: 21px;
    line-height: 1.5;
    font-weight: 500;
    color: #fff;
    margin: 0;
    padding-left: 30px;
    border-left: 4px solid #f4b73c;
    font-style: italic;
    letter-spacing: -.2px;
}
.story-quote blockquote::before {
    content: '"';
    display: block;
    font-size: 60px;
    line-height: 0.6;
    color: #f4b73c;
    font-family: Georgia, serif;
    margin-bottom: 10px;
}

@media (max-width: 900px) {
    .story-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
    .story-item-a { grid-column: span 2; grid-row: span 2; }
    .story-item-b { grid-column: span 2; grid-row: span 1; }
    .story-item-c { grid-column: span 1; grid-row: span 1; }
    .story-item-d { grid-column: span 1; grid-row: span 1; }
    .story-quote { grid-template-columns: 1fr; padding: 24px 22px; }
    .story-quote img { max-width: 260px; margin: 0 auto; }
    .story-quote blockquote { font-size: 18px; padding-left: 20px; }
}

/* === Preis / Aufwandsentschädigung === */
.lp-price {
    background: linear-gradient(180deg, #f4f7f1 0%, #eaf3e6 100%);
    position: relative;
    overflow: hidden;
}
.lp-price::before {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(244,183,60,.15) 0%, transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(45,94,46,.08) 0%, transparent 45%);
    pointer-events: none;
}
.lp-price .lp-section-head { position: relative; z-index: 2; }

.price-card {
    max-width: 560px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 28px;
    padding: 44px 44px 40px;
    box-shadow: 0 24px 60px rgba(45,94,46,.15), 0 4px 12px rgba(0,0,0,.05);
    border: 1px solid rgba(45,94,46,.08);
    position: relative;
    overflow: hidden;
    z-index: 2;
    text-align: center;
    animation: kr-price-in .5s cubic-bezier(.22,.61,.36,1);
}
@keyframes kr-price-in {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.price-card::before {
    content: "";
    position: absolute; inset: 0 0 auto 0; height: 6px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 40%, var(--accent) 70%, var(--accent-dark) 100%);
}

.price-ribbon {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #2a1a00;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 26px;
    box-shadow: 0 6px 16px rgba(238,139,26,.35);
}

.price-hero {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    margin-bottom: 12px;
}
.price-amount {
    display: flex;
    align-items: flex-start;
    line-height: 1;
}
.price-value {
    font-size: 88px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -3px;
    font-variant-numeric: tabular-nums;
    line-height: .9;
}
.price-currency {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-top: 8px;
    margin-left: 4px;
}
.price-period {
    text-align: left;
    font-size: 13.5px;
    color: var(--muted);
    font-weight: 600;
    line-height: 1.35;
    margin-top: 18px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.price-tagline {
    color: var(--muted);
    font-size: 15px;
    font-style: italic;
    margin: 0 0 26px;
    letter-spacing: .1px;
}

.price-features {
    list-style: none;
    padding: 24px 0;
    margin: 0 0 24px;
    border-top: 1px solid #e3ecdd;
    border-bottom: 1px solid #e3ecdd;
    text-align: left;
}
.price-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 7px 0;
    font-size: 14.5px;
    color: var(--text);
    line-height: 1.5;
}
.price-features li::before {
    content: "";
    flex: 0 0 20px;
    width: 20px; height: 20px;
    margin-top: 1px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center/70% no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center/70% no-repeat;
}

.price-note {
    background: #f6faf3;
    border-left: 3px solid var(--primary);
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.55;
    color: var(--muted);
    text-align: left;
    margin-bottom: 24px;
}
.price-note strong {
    color: var(--primary-dark);
    font-weight: 600;
}

.price-cta {
    width: 100%;
    justify-content: center;
}

@media (max-width: 720px) {
    .price-card { padding: 32px 24px 28px; border-radius: 22px; }
    .price-value { font-size: 68px; letter-spacing: -2px; }
    .price-currency { font-size: 32px; }
    .price-hero { gap: 14px; }
    .price-period { font-size: 12px; margin-top: 12px; }
    .price-tagline { font-size: 14px; }
    .price-features li { font-size: 13.5px; }
}

/* === Anmelde-Formular === */
.lp-form-section {
    background: linear-gradient(180deg, #f4f7f1 0%, #eaf1e5 100%);
}
.form-card {
    max-width: 720px;
    margin: 0 auto;
    background: #fff;
    border-radius: 24px;
    padding: 42px 44px;
    box-shadow: 0 20px 60px rgba(45,94,46,.12), 0 4px 16px rgba(0,0,0,.05);
    border: 1px solid rgba(45,94,46,.1);
    position: relative;
    overflow: hidden;
}
.form-card::before {
    content: "";
    position: absolute; inset: 0 0 auto 0; height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 40%, var(--accent) 70%, var(--accent-dark) 100%);
}
.form-card .fg {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.form-card .ff { margin-bottom: 16px; }
.form-card label {
    display: block;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--primary-dark);
    letter-spacing: 0;
    margin-bottom: 6px;
    text-transform: none;
}
.form-card input[type="text"],
.form-card input[type="email"],
.form-card input[type="tel"],
.form-card textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    background: #fafcf8;
    color: var(--text);
    transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.form-card input:focus,
.form-card textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(45,94,46,.13);
    background: #fff;
}
.form-card textarea { resize: vertical; min-height: 90px; }
.form-card .fc {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 4px 2px;
    background: transparent;
    border: 0;
    border-radius: 0;
    font-size: 13px;
    line-height: 1.55;
    color: var(--muted);
    margin: 12px 0 24px;
    cursor: pointer;
    font-weight: 400;
    transition: color var(--t-fast, .15s) ease;
}
.form-card .fc:hover { color: var(--text); }
.form-card .fc span { flex: 1; }
.form-card .fc input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    margin-top: 1px;
    border: 1.5px solid #c0cdb8;
    border-radius: 5px;
    background: #fff;
    cursor: pointer;
    transition: all .18s ease;
    position: relative;
    box-shadow: 0 1px 2px rgba(0,0,0,.04);
}
.form-card .fc:hover input[type="checkbox"] {
    border-color: var(--primary-light);
}
.form-card .fc a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: rgba(45,94,46,.35);
    text-underline-offset: 2px;
    transition: text-decoration-color .15s ease;
}
.form-card .fc a:hover {
    text-decoration-color: var(--primary);
}
.form-card .fc input[type="checkbox"]:checked {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(45,94,46,.35);
}
.form-card .fc input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 5px; top: 1px;
    width: 6px; height: 11px;
    border: solid #fff;
    border-width: 0 2.2px 2.2px 0;
    transform: rotate(45deg);
}
.form-card .fc input[type="checkbox"]:focus-visible {
    outline: 3px solid rgba(45,94,46,.25);
    outline-offset: 2px;
}
.form-card button.lp-btn-primary { width: 100%; justify-content: center; }
@media (max-width: 720px) {
    .form-card { padding: 26px 20px; border-radius: 18px; }
    .form-card .fg { grid-template-columns: 1fr; gap: 0; }
}

.form-error {
    background: #fbe6e5;
    border: 1px solid #f0bfbc;
    border-left: 4px solid #b3261e;
    color: #b3261e;
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}
.form-success {
    text-align: center;
    padding: 20px 8px;
}
.form-success .check {
    width: 78px; height: 78px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #e6f3e6;
    color: #2e7d32;
    display: flex; align-items: center; justify-content: center;
    font-size: 44px;
    border: 3px solid #2e7d32;
    animation: km-check .5s cubic-bezier(.22,.61,.36,1);
}
@keyframes km-check {
    from { transform: scale(0); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}
.form-success h3 {
    color: var(--primary-dark);
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 10px;
}
.form-success p {
    color: var(--muted);
    margin: 0 0 22px;
    font-size: 15px;
}

/* === Impressum-Sektion (kompakt) === */
.lp-section-mini {
    background: #f4f7f1;
    padding: 60px 0;
    border-top: 1px solid var(--border);
}
.impressum-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    color: var(--text);
    font-size: 14.5px;
    line-height: 1.7;
}
.impressum-grid .eyebrow {
    color: var(--accent-dark);
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 10px;
}
.impressum-grid strong { color: var(--primary-dark); }
.impressum-grid a { color: var(--primary); text-decoration: underline; }
.impressum-grid a:hover { color: var(--primary-dark); }
@media (max-width: 720px) {
    .impressum-grid { grid-template-columns: 1fr; gap: 26px; }
}

/* === Reduced motion === */
@media (prefers-reduced-motion: reduce) {
    .blob, .lp-mockup, .lp-hero-badge .dot { animation: none !important; }
    .lp-mockup { transform: none !important; }
    html { scroll-behavior: auto; }
}
