/* ───────────────────────────────────────────────────────────
   jumpx_website – öffentliches Website-Stylesheet (markenneutral)
   Akzentfarbe kommt als CSS-Variable --jxw-accent aus dem Branding.
   Der Verlauf greift den Netzwerk-Look des Logos auf.
   ─────────────────────────────────────────────────────────── */
:root {
    /* Globale Design-Tokens – werden vom Template aus den Theme-Einstellungen
       überschrieben; hier nur Fallback-Defaults. */
    --jxw-accent: #075FE8;
    --jxw-heading: #0f172a;
    --jxw-text: #475569;
    --jxw-bg: #ffffff;
    --jxw-bg-alt: #f8fafc;
    --jxw-dark: #0f172a;
    --jxw-radius: 16px;
    --jxw-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    /* abgeleitet / intern */
    --jxw-ink: var(--jxw-heading);
    --jxw-muted: var(--jxw-text);
    --jxw-line: #e5e7eb;
    --jxw-maxw: 1280px;
}

* { box-sizing: border-box; }

.jxw-body {
    margin: 0;
    font-family: var(--jxw-font);
    color: var(--jxw-heading);
    background: var(--jxw-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.jxw-container { max-width: var(--jxw-maxw); margin: 0 auto; padding: 0 20px; }

/* — Header / Navigation — */
.jxw-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid var(--jxw-line);
}
.jxw-header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.jxw-brand { font-weight: 800; font-size: 20px; letter-spacing: -.02em; color: var(--jxw-ink); text-decoration: none; }
.jxw-nav { list-style: none; display: flex; gap: 26px; margin: 0; padding: 0; }
.jxw-nav a { color: var(--jxw-ink); text-decoration: none; font-weight: 500; font-size: 15px; opacity: .8; transition: opacity .15s; }
.jxw-nav a:hover, .jxw-nav li.active a { opacity: 1; color: var(--jxw-accent); }

/* — Hero — */
.jxw-hero {
    background: var(--jxw-gradient);
    background-size: cover; background-position: center;
    color: #fff; text-align: center;
    padding: 96px 20px;
}
.jxw-hero--image { color: #fff; }
.jxw-hero-inner { max-width: 760px; margin: 0 auto; }
.jxw-hero-title { font-size: clamp(32px, 5vw, 52px); line-height: 1.1; letter-spacing: -.03em; margin: 0 0 18px; font-weight: 800; }
.jxw-hero-sub { font-size: clamp(17px, 2.2vw, 21px); opacity: .95; margin: 0 0 30px; }
.jxw-hero-cta { margin: 0; }

/* — Inhaltsblöcke — */
.jxw-main > .jxw-heading,
.jxw-main > .jxw-richtext,
.jxw-main > .jxw-image,
.jxw-main > .jxw-button { max-width: var(--jxw-maxw); margin-left: auto; margin-right: auto; padding: 0 20px; }
.jxw-heading { font-weight: 800; letter-spacing: -.02em; margin: 48px auto 16px; }
.jxw-richtext { margin: 16px auto; font-size: 17px; }
.jxw-richtext img { max-width: 100%; height: auto; }
.jxw-image { margin: 32px auto; }
.jxw-image img { width: 100%; height: auto; border-radius: 12px; display: block; }

/* — Buttons — */
.jxw-btn {
    display: inline-block; background: var(--jxw-accent); color: #fff !important;
    text-decoration: none; font-weight: 600; padding: 12px 22px; border-radius: 10px;
    transition: transform .12s ease, box-shadow .12s ease;
}
.jxw-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(0, 0, 0, .18); }
.jxw-btn--lg { padding: 15px 30px; font-size: 17px; }
.jxw-button { margin: 28px auto; }

/* — Footer — */
.jxw-footer {
    margin-top: 80px; padding: 40px 0;
    border-top: 1px solid var(--jxw-line);
    color: var(--jxw-muted); font-size: 14px; text-align: center;
}
.jxw-footer a { color: var(--jxw-accent); }

@media (max-width: 640px) {
    .jxw-nav { gap: 16px; }
    .jxw-brand { font-size: 18px; }
    .jxw-hero { padding: 64px 18px; }
}

/* ═══════════════════════════════════════════════════════════════
   SECTION-BIBLIOTHEK (jxws-) – zentrales, hochwertiges Design.
   Akzent über var(--jxw-accent). Section-Blöcke geben nur schlankes
   Markup aus; das gesamte Aussehen wird hier gesteuert.
   ═══════════════════════════════════════════════════════════════ */
.jxws { --jxws-ink: var(--jxw-heading); --jxws-muted: var(--jxw-text); }
.jxws * { box-sizing: border-box; }
.jxws-container { max-width: var(--jxw-maxw); margin: 0 auto; padding: 0 24px; }

/* Gemeinsamer Sektionskopf */
.jxws-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.jxws-eyebrow {
    display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: var(--jxw-accent); margin-bottom: 14px;
}
.jxws-h2 {
    font-size: clamp(28px, 4vw, 42px); line-height: 1.12; letter-spacing: -.025em;
    font-weight: 800; color: var(--jxws-ink); margin: 0 0 16px;
}
.jxws-intro { font-size: 18px; line-height: 1.7; color: var(--jxws-muted); margin: 0; }

/* Buttons */
.jxws-btn {
    display: inline-block; padding: 14px 28px; border-radius: 10px; font-weight: 600;
    font-size: 16px; text-decoration: none; transition: transform .12s, box-shadow .12s, opacity .12s; border: 1px solid transparent;
}
.jxws-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(2,6,23,.16); }
.jxws-btn-primary { background: var(--jxw-accent); color: #fff !important; }
.jxws-btn-ghost { background: transparent; color: #fff !important; border-color: rgba(255,255,255,.6); }
.jxws-btn-light { background: #fff; color: var(--jxw-accent) !important; }
.jxws-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 8px; }

/* — Hero — */
.jxws-hero {
    padding: 104px 0; text-align: center; color: #fff;
    background: linear-gradient(135deg, var(--jxw-accent) 0%, var(--jxw-dark) 120%);
}
.jxws-hero-inner { max-width: 820px; }
.jxws-hero .jxws-eyebrow { color: rgba(255,255,255,.85); }
.jxws-hero-title { font-size: clamp(34px, 5.2vw, 58px); line-height: 1.06; letter-spacing: -.03em; font-weight: 800; margin: 0 0 20px; }
.jxws-hero-sub { font-size: clamp(17px, 2.1vw, 21px); line-height: 1.6; opacity: .92; margin: 0 0 32px; }
.jxws-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 28px; margin-top: 40px; }
.jxws-trust-item { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 500; opacity: .95; }
.jxws-trust-icon { font-size: 18px; }

/* — Grid (Features & Testimonials) — */
.jxws-features, .jxws-testimonials, .jxws-steps, .jxws-faq, .jxws-cats, .jxws-partners, .jxws-pbox, .jxws-check, .jxws-pricing { padding: 72px 0; }
.jxws-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.jxws-card {
    background: var(--jxw-bg); border: 1px solid #eef0f4; border-radius: var(--jxw-radius); padding: 30px;
    box-shadow: 0 10px 30px rgba(2,6,23,.05); transition: transform .15s, box-shadow .15s;
}
.jxws-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(2,6,23,.10); }
.jxws-card-icon { font-size: 30px; line-height: 1; margin-bottom: 16px; }
.jxws-card-title { font-size: 19px; font-weight: 700; color: var(--jxws-ink); margin: 0 0 8px; }
.jxws-card-text { font-size: 15.5px; line-height: 1.65; color: var(--jxws-muted); margin: 0; }

/* — Steps — */
.jxws-steps { background: var(--jxw-bg-alt); }
.jxws-steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
.jxws-step { text-align: center; padding: 0 12px; }
.jxws-step-num {
    width: 52px; height: 52px; margin: 0 auto 18px; border-radius: 50%;
    background: var(--jxw-accent); color: #fff; font-weight: 800; font-size: 20px;
    display: flex; align-items: center; justify-content: center;
}

/* — Stats — */
.jxws-stats { padding: 64px 0; background: var(--jxw-dark); }
.jxws-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 24px; text-align: center; }
.jxws-stat-value { font-size: clamp(32px, 4.5vw, 46px); font-weight: 800; color: #fff; letter-spacing: -.02em; }
.jxws-stat-label { font-size: 15px; color: #94a3b8; margin-top: 6px; }

/* — Testimonials — */
.jxws-quote {
    background: var(--jxw-bg); border: 1px solid #eef0f4; border-radius: var(--jxw-radius); padding: 28px; margin: 0;
    box-shadow: 0 10px 30px rgba(2,6,23,.05);
}
.jxws-stars { color: #f5a623; font-size: 16px; letter-spacing: 2px; margin-bottom: 12px; }
.jxws-quote blockquote { margin: 0 0 18px; font-size: 16.5px; line-height: 1.6; color: var(--jxws-ink); }
.jxws-quote figcaption { display: flex; flex-direction: column; }
.jxws-quote figcaption strong { color: var(--jxws-ink); }
.jxws-quote figcaption span { font-size: 13.5px; color: var(--jxws-muted); }

/* — FAQ — */
.jxws-faq-narrow { max-width: 800px; }
.jxws-faq-item { border-bottom: 1px solid #e5e7eb; padding: 6px 0; }
.jxws-faq-item summary {
    cursor: pointer; list-style: none; padding: 18px 4px; font-size: 17px; font-weight: 600;
    color: var(--jxws-ink); display: flex; justify-content: space-between; align-items: center;
}
.jxws-faq-item summary::-webkit-details-marker { display: none; }
.jxws-faq-item summary::after { content: "+"; color: var(--jxw-accent); font-size: 22px; font-weight: 400; }
.jxws-faq-item[open] summary::after { content: "–"; }
.jxws-faq-a { padding: 0 4px 18px; color: var(--jxws-muted); line-height: 1.7; }

/* — CTA — */
.jxws-cta { padding: 80px 0; background: linear-gradient(135deg, var(--jxw-accent), var(--jxw-dark) 140%); }
.jxws-cta-inner { text-align: center; max-width: 680px; }
.jxws-cta-title { font-size: clamp(26px, 3.6vw, 38px); font-weight: 800; color: #fff; letter-spacing: -.02em; margin: 0 0 14px; }
.jxws-cta-text { font-size: 18px; color: rgba(255,255,255,.9); line-height: 1.6; margin: 0 0 28px; }

@media (max-width: 640px) {
    .jxws-hero { padding: 72px 0; }
    .jxws-features, .jxws-testimonials, .jxws-steps, .jxws-faq, .jxws-cats, .jxws-partners, .jxws-pbox, .jxws-check, .jxws-pricing { padding: 48px 0; }
}

/* ── Varianten-Modifier (Stufe 2) ── */

/* Hero: Hell / Minimal */
.jxws-hero--light { background: var(--jxw-bg); color: var(--jxw-heading); }
.jxws-hero--light .jxws-eyebrow { color: var(--jxw-accent); }
.jxws-hero--light .jxws-hero-title { color: var(--jxw-heading); }
.jxws-hero--light .jxws-hero-sub { color: var(--jxw-text); opacity: 1; }
.jxws-hero--light .jxws-trust-item { color: var(--jxw-text); }
.jxws-btn-outline { background: transparent; color: var(--jxw-heading) !important; border-color: #d1d5db; }

/* Features: schlicht (ohne Karten) */
.jxws-features--plain .jxws-card { background: transparent; border: 0; box-shadow: none; padding: 12px 6px; }
.jxws-features--plain .jxws-card:hover { transform: none; box-shadow: none; }

/* Stats: hell statt dunkel */
.jxws-stats--light { background: var(--jxw-bg-alt); }
.jxws-stats--light .jxws-stat-value { color: var(--jxw-heading); }
.jxws-stats--light .jxws-stat-label { color: var(--jxw-text); }

/* Stats: Karten */
.jxws-stats--cards { background: var(--jxw-bg-alt); }
.jxws-stats--cards .jxws-stat {
    background: var(--jxw-bg); border: 1px solid #eef0f4; border-radius: var(--jxw-radius);
    padding: 28px 16px; box-shadow: 0 10px 30px rgba(2,6,23,.05);
}
.jxws-stats--cards .jxws-stat-value { color: var(--jxw-accent); }
.jxws-stats--cards .jxws-stat-label { color: var(--jxw-text); }

/* Hero: Split mit Bild */
.jxws-btns--left { justify-content: flex-start; }
.jxws-trust--left { justify-content: flex-start; }
.jxws-hero-split { padding: 84px 0; background: var(--jxw-bg); color: var(--jxw-heading); }
.jxws-hsplit-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.jxws-hsplit-text { text-align: left; }
.jxws-hsplit-title { font-size: clamp(32px, 4.4vw, 50px); line-height: 1.08; letter-spacing: -.03em; font-weight: 800; color: var(--jxw-heading); margin: 14px 0 18px; }
.jxws-hsplit-sub { font-size: 19px; line-height: 1.6; color: var(--jxw-text); margin: 0 0 28px; }
.jxws-hsplit-text .jxws-trust-item { color: var(--jxw-text); }
.jxws-hsplit-media {
    min-height: 380px; border-radius: var(--jxw-radius); background-size: cover; background-position: center;
    box-shadow: 0 20px 50px rgba(2,6,23,.15);
}
@media (max-width: 768px) {
    .jxws-hsplit-grid { grid-template-columns: 1fr; gap: 28px; }
    .jxws-hsplit-media { min-height: 240px; }
}

/* Features: Liste (Icon links) */
.jxws-features--list .jxws-grid { grid-template-columns: 1fr; gap: 14px; max-width: 780px; margin: 0 auto; }
.jxws-features--list .jxws-card { display: grid; grid-template-columns: auto 1fr; column-gap: 18px; text-align: left; align-items: start; }
.jxws-features--list .jxws-card:hover { transform: none; box-shadow: 0 10px 30px rgba(2,6,23,.05); }
.jxws-features--list .jxws-card-icon { grid-row: 1 / span 2; margin: 0; font-size: 30px; }

/* Steps: vertikale Timeline */
.jxws-steps--timeline .jxws-steps-grid { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; gap: 0; }
.jxws-steps--timeline .jxws-step { text-align: left; display: grid; grid-template-columns: auto 1fr; column-gap: 20px; padding: 0 0 34px; position: relative; }
.jxws-steps--timeline .jxws-step-num { grid-row: 1 / span 3; margin: 0; }
.jxws-steps--timeline .jxws-step:not(:last-child)::before { content: ""; position: absolute; left: 25px; top: 56px; bottom: 0; width: 2px; background: #e5e7eb; }

/* Testimonials: großes Zitat */
.jxws-testimonials--big .jxws-grid { grid-template-columns: 1fr; max-width: 760px; margin: 0 auto; gap: 36px; }
.jxws-testimonials--big .jxws-quote { background: transparent; border: 0; box-shadow: none; text-align: center; padding: 0; }
.jxws-testimonials--big .jxws-quote blockquote { font-size: 24px; line-height: 1.5; color: var(--jxw-heading); }
.jxws-testimonials--big .jxws-stars { display: flex; justify-content: center; }
.jxws-testimonials--big figcaption { align-items: center; }

/* CTA: heller Rahmen */
.jxws-cta--light { background: var(--jxw-bg-alt); }
.jxws-cta--light .jxws-cta-title { color: var(--jxw-heading); }
.jxws-cta--light .jxws-cta-text { color: var(--jxw-text); }

/* =========================================================================
   LANDING / NETZWERK-LOOK  (Milestone 1: Palette, Header, Hero-Suche, Footer)
   Zusatz-Palette + Verlauf. --jxw-accent kommt weiter aus dem Theme-Token.
   ========================================================================= */
:root {
    --jxw-accent-2: #f59e0b;                 /* Orange */
    --jxw-accent-3: #ec4899;                 /* Pink   */
    --jxw-grad: linear-gradient(90deg, #7c5cfc 0%, #b45ce8 48%, #ef7d54 100%);
    --jxw-grad-soft: linear-gradient(135deg, rgba(124,92,252,.14), rgba(236,72,153,.10) 55%, rgba(245,158,11,.14));
}

/* ---- Header: sticky, Logo-Mark, CTA ---- */
.jxw-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.88); backdrop-filter: saturate(1.4) blur(10px); }
.jxw-header-inner { height: 84px; gap: 22px; }
.jxw-brand { display: inline-flex; align-items: center; gap: 10px; }
.jxw-brand-mark { width: 34px; height: 34px; border-radius: 9px; background: var(--jxw-grad); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 17px; box-shadow: 0 6px 16px rgba(124,92,252,.35); }
.jxw-brand-name { font-weight: 800; font-size: 18px; letter-spacing: -.02em; color: var(--jxw-ink); }
.jxw-nav-wrap { margin-left: auto; display: flex; align-items: center; gap: 24px; }
.jxw-nav { gap: 22px; }
.jxw-nav a { font-size: 14.5px; opacity: .72; }
.jxw-header-cta { display: inline-flex; align-items: center; gap: 8px; margin-left: 6px; background: var(--jxw-grad); color: #fff !important; text-decoration: none; font-weight: 600; font-size: 14.5px; padding: 10px 18px; border-radius: 999px; box-shadow: 0 8px 20px rgba(124,92,252,.30); white-space: nowrap; }
.jxw-header-cta:hover { filter: brightness(1.05); }

/* ---- Buttons: Verlauf + soft ---- */
.jxws-btn-grad { background: var(--jxw-grad); color: #fff !important; box-shadow: 0 10px 24px rgba(124,92,252,.30); border: none; }
.jxws-btn-grad:hover { filter: brightness(1.05); }
.jxws-btn-soft { background: #fff; color: var(--jxw-accent) !important; border: 1.5px solid rgba(124,92,252,.28); }
.jxws-btn-soft:hover { border-color: var(--jxw-accent); }

/* ---- Hero mit Suche + Netzwerk ---- */
.jxws-hs { position: relative; overflow: hidden; padding: 60px 0 84px;
    background: radial-gradient(1100px 480px at 12% -12%, rgba(124,92,252,.10), transparent 60%),
                radial-gradient(820px 460px at 102% -6%, rgba(245,158,11,.10), transparent 55%),
                var(--jxw-bg); }
.jxws-hs-net { position: absolute; top: 0; right: 0; width: 62%; height: 100%; pointer-events: none; }
.jxws-hs-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.jxws-hs-text { max-width: 560px; }
.jxws-hs .jxws-eyebrow { margin-bottom: 10px; }
.jxws-hs-title { font-size: clamp(32px, 4.5vw, 52px); line-height: 1.07; letter-spacing: -.03em; font-weight: 800; color: var(--jxw-heading); margin: 4px 0 18px; }
.jxws-hs-sub { font-size: 17px; line-height: 1.65; color: var(--jxw-text); margin: 0 0 26px; }
.jxws-hs-panel { background: #fff; border: 1px solid #eef0f4; border-radius: 18px; padding: 18px; box-shadow: 0 26px 60px -26px rgba(30,20,80,.28); }
.jxws-hs-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.jxws-hs-field { display: flex; flex-direction: column; gap: 6px; }
.jxws-hs-field span { font-size: 12.5px; font-weight: 600; color: var(--jxw-heading); }
.jxws-hs-field input { border: 1px solid #e5e7eb; border-radius: 10px; padding: 11px 12px; font-size: 14.5px; font-family: inherit; background: #fafafa; color: var(--jxw-heading); }
.jxws-hs-field input:focus { outline: none; border-color: var(--jxw-accent); background: #fff; box-shadow: 0 0 0 3px rgba(124,92,252,.12); }
.jxws-hs-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px; }
.jxws-hs-actions .jxws-btn { justify-content: center; width: 100%; text-align: center; }
.jxws-hs-note { margin: 14px 2px 2px; font-size: 13.5px; color: var(--jxw-text); }
.jxws-hs-note a { color: var(--jxw-accent); font-weight: 600; text-decoration: none; }

/* Bild-Collage (Platzhalter) + schwebende Badges */
.jxws-hs-media { position: relative; min-height: 420px; }
.jxws-hs-photo { position: absolute; border-radius: 20px; box-shadow: 0 30px 60px -30px rgba(30,20,80,.42); }
.jxws-hs-photo--a { width: 72%; height: 66%; right: 0; top: 4%; background: linear-gradient(135deg, #c7b8ff, #8a6bf0); }
.jxws-hs-photo--b { width: 48%; height: 42%; left: 0; bottom: 2%; background: linear-gradient(135deg, #ffd6a5, #f59e0b); border: 5px solid #fff; }
.jxws-hs-photo--img { background-size: cover; background-position: center; background-repeat: no-repeat; }
.jxws-hs-badge { position: absolute; z-index: 3; background: #fff; border-radius: 14px; padding: 10px 13px; font-size: 12.5px; font-weight: 600; color: var(--jxw-heading); box-shadow: 0 16px 34px -12px rgba(30,20,80,.30); display: flex; align-items: center; gap: 8px; max-width: 210px; }
.jxws-hs-badge-ico { width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; background: var(--jxw-grad-soft); font-size: 13px; }
.jxws-hs-badge--1 { top: -2%; left: 4%; }
.jxws-hs-badge--2 { top: 42%; right: -6%; }
.jxws-hs-badge--3 { bottom: -4%; left: 22%; }

@media (max-width: 860px) {
    .jxws-hs-grid { grid-template-columns: 1fr; gap: 30px; }
    .jxws-hs-media { min-height: 300px; }
    .jxws-hs-net { width: 100%; opacity: .55; }
    .jxws-hs-fields, .jxws-hs-actions { grid-template-columns: 1fr; }
    .jxw-header-cta { display: none; }
}

/* ---- Footer: dunkel, mehrspaltig (Inhalt kommt aus footer_html-Option) ---- */
.jxw-footer { background: var(--jxw-dark); color: #c7c9d9; text-align: left; padding: 56px 0 26px; border-top: none; }
.jxw-foot-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 30px; }
.jxw-foot-logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; color: #fff; margin-bottom: 12px; }
.jxw-foot-brand p { font-size: 13.5px; line-height: 1.6; color: #9aa0b6; max-width: 260px; margin: 0; }
.jxw-foot-col h4 { color: #fff; font-size: 12.5px; text-transform: uppercase; letter-spacing: .04em; margin: 2px 0 14px; }
.jxw-foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.jxw-foot-col a, .jxw-foot-col li { color: #9aa0b6; text-decoration: none; font-size: 14px; }
.jxw-foot-col a:hover { color: #fff; }
.jxw-foot-social { display: flex; gap: 10px; margin-top: 16px; }
.jxw-foot-social a { width: 34px; height: 34px; border-radius: 9px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #c7c9d9; text-decoration: none; }
.jxw-foot-social a:hover { background: var(--jxw-grad); color: #fff; }
.jxw-foot-bottom { margin-top: 34px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); font-size: 13px; color: #7c8296; text-align: center; }
@media (max-width: 860px) { .jxw-foot-top { grid-template-columns: 1fr 1fr; } }

/* =========================================================================
   LANDING Milestone 2: Branchenbuch / Kategorien / Projekt-Box / Steps-Flow
   ========================================================================= */
.jxws-h2 { font-size: clamp(26px, 3.4vw, 36px); font-weight: 800; letter-spacing: -.02em; color: var(--jxw-heading); margin: 0 0 14px; }

/* Branchenbuch: farbige runde Icons, zentriert */
.jxws-features--network .jxws-grid { grid-template-columns: repeat(3, 1fr); }
.jxws-features--network .jxws-card { text-align: center; padding: 34px 26px; border-radius: 20px; box-shadow: 0 22px 50px -32px rgba(30,20,80,.20); }
.jxws-features--network .jxws-card-icon { width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center; margin: 0 auto 18px; font-size: 26px; color: #fff; }
.jxws-features--network .jxws-card:nth-child(6n+1) .jxws-card-icon { background: linear-gradient(135deg,#8b6bf5,#7c5cfc); }
.jxws-features--network .jxws-card:nth-child(6n+2) .jxws-card-icon { background: linear-gradient(135deg,#f472b6,#ec4899); }
.jxws-features--network .jxws-card:nth-child(6n+3) .jxws-card-icon { background: linear-gradient(135deg,#fbbf24,#f59e0b); }
.jxws-features--network .jxws-card:nth-child(6n+4) .jxws-card-icon { background: linear-gradient(135deg,#60a5fa,#3b82f6); }
.jxws-features--network .jxws-card:nth-child(6n+5) .jxws-card-icon { background: linear-gradient(135deg,#34d399,#10b981); }
.jxws-features--network .jxws-card:nth-child(6n)   .jxws-card-icon { background: linear-gradient(135deg,#f87171,#ef4444); }

/* Kategorien-Raster */
.jxws-cats-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 30px; }
.jxws-cats-head .jxws-eyebrow { margin-bottom: 8px; }
.jxws-cats-cta { white-space: nowrap; }
.jxws-cats-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.jxws-cat { display: block; text-decoration: none; }
.jxws-cat-top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.jxws-cat-ico { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; font-size: 18px; color: #fff; flex: none; }
.jxws-cat-title { font-weight: 700; font-size: 13.5px; color: var(--jxw-heading); line-height: 1.2; }
.jxws-cat-img { height: 118px; border-radius: 16px; background-size: cover; background-position: center; box-shadow: 0 14px 30px -18px rgba(30,20,80,.35); transition: transform .18s; }
.jxws-cat-img--ph { background: linear-gradient(135deg, rgba(124,92,252,.28), rgba(236,72,153,.20) 60%, rgba(245,158,11,.24)); }
.jxws-cat:hover .jxws-cat-img { transform: translateY(-3px); }
.jxws-ic-1 { background: linear-gradient(135deg,#8b6bf5,#7c5cfc); }
.jxws-ic-2 { background: linear-gradient(135deg,#f472b6,#ec4899); }
.jxws-ic-3 { background: linear-gradient(135deg,#fbbf24,#f59e0b); }
.jxws-ic-4 { background: linear-gradient(135deg,#60a5fa,#3b82f6); }
.jxws-ic-5 { background: linear-gradient(135deg,#34d399,#10b981); }
.jxws-ic-6 { background: linear-gradient(135deg,#f87171,#ef4444); }
@media (max-width: 900px) { .jxws-cats-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 560px) { .jxws-cats-grid { grid-template-columns: repeat(2,1fr); } .jxws-cats-head { flex-direction: column; align-items: flex-start; } }

/* Projekt-Box (dunkel) */
.jxws-pbox-inner { background: var(--jxw-dark); border-radius: 26px; padding: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; position: relative; overflow: hidden; box-shadow: 0 40px 80px -40px rgba(23,20,54,.6); }
.jxws-pbox-inner::after { content: ""; position: absolute; right: -50px; top: -50px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(124,92,252,.4), transparent 70%); pointer-events: none; }
.jxws-pbox-left { position: relative; z-index: 1; }
.jxws-pbox-title { color: #fff; font-size: clamp(24px,2.8vw,32px); font-weight: 800; letter-spacing: -.02em; margin: 0 0 14px; line-height: 1.15; }
.jxws-pbox-text { color: #b9bcd0; font-size: 15.5px; line-height: 1.65; margin: 0 0 18px; }
.jxws-pbox-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.jxws-pbox-tag { background: rgba(255,255,255,.08); color: #e6e7f0; border-radius: 999px; padding: 7px 14px; font-size: 13px; font-weight: 500; }
.jxws-pbox-form { position: relative; z-index: 1; background: #fff; border-radius: 18px; padding: 22px; box-shadow: 0 24px 50px -20px rgba(0,0,0,.45); }
.jxws-pbox-form-title { font-size: 16px; font-weight: 700; color: var(--jxw-heading); margin: 0 0 16px; }
.jxws-pbox-field { display: block; margin-bottom: 14px; }
.jxws-pbox-field span { display: block; font-size: 12.5px; font-weight: 600; color: var(--jxw-heading); margin-bottom: 6px; }
.jxws-pbox-field input, .jxws-pbox-field textarea { width: 100%; box-sizing: border-box; border: 1px solid #e5e7eb; border-radius: 10px; padding: 11px 12px; font-size: 14px; font-family: inherit; background: #fafafa; color: var(--jxw-heading); }
.jxws-pbox-field textarea { resize: vertical; min-height: 46px; line-height: 1.5; }
.jxws-pbox-field input:focus, .jxws-pbox-field textarea:focus { outline: none; border-color: var(--jxw-accent); background: #fff; }
.jxws-pbox-success { background: rgba(16,185,129,.12); border: 1px solid rgba(16,185,129,.4); color: #065f46; border-radius: 12px; padding: 20px; font-size: 15px; line-height: 1.55; }
.jxws-pbox-error { background: rgba(239,68,68,.10); border: 1px solid rgba(239,68,68,.35); color: #b91c1c; border-radius: 10px; padding: 10px 12px; font-size: 13.5px; margin-bottom: 12px; }
.jxws-pbox-btn { width: 100%; justify-content: center; text-align: center; margin-top: 4px; }
@media (max-width: 820px) { .jxws-pbox-inner { grid-template-columns: 1fr; padding: 30px; } }

/* Steps: Icons + Verbinder */
.jxws-steps--flow .jxws-steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; text-align: center; }
.jxws-steps--flow .jxws-step { position: relative; padding: 0 8px; }
.jxws-steps--flow .jxws-step-ico { width: 72px; height: 72px; border-radius: 22px; margin: 0 auto 14px; display: grid; place-items: center; font-size: 28px; background: var(--jxw-grad-soft); border: 1px solid rgba(124,92,252,.18); }
.jxws-steps--flow .jxws-step-num { position: absolute; top: -4px; left: 50%; transform: translateX(20px); width: 26px; height: 26px; border-radius: 50%; background: var(--jxw-grad); color: #fff; display: grid; place-items: center; font-size: 13px; font-weight: 700; box-shadow: 0 6px 14px rgba(124,92,252,.4); }
.jxws-steps--flow .jxws-step:not(:last-child)::after { content: "\2192"; position: absolute; top: 28px; right: -12px; color: var(--jxw-accent); font-size: 22px; opacity: .45; }
.jxws-steps--flow .jxws-card-title { margin-top: 2px; font-size: 17px; }
@media (max-width: 820px) { .jxws-steps--flow .jxws-steps-grid { grid-template-columns: 1fr 1fr; } .jxws-steps--flow .jxws-step:not(:last-child)::after { display: none; } }

/* Partner-/Firmenkarten */
.jxws-partners-head { text-align: center; margin-bottom: 34px; }
.jxws-partners-grid { display: grid; grid-template-columns: repeat(var(--jxws-cols, 4), 1fr); gap: 20px; }
.jxws-partner { background: #fff; border: 1px solid #eef0f4; border-radius: 18px; padding: 22px; display: flex; flex-direction: column; box-shadow: 0 20px 46px -30px rgba(30,20,80,.22); }
.jxws-partner-logo { height: 50px; border-radius: 10px; background-size: contain; background-repeat: no-repeat; background-position: left center; margin-bottom: 14px; }
.jxws-partner-logo--ph { display: flex; align-items: center; font-weight: 800; font-size: 14.5px; color: var(--jxw-accent); background: var(--jxw-grad-soft); padding: 0 12px; }
.jxws-partner-name { font-size: 17px; font-weight: 800; color: var(--jxw-heading); margin: 0 0 4px; }
.jxws-partner-meta { font-size: 13.5px; color: var(--jxw-text); }
.jxws-partner-loc { font-size: 13px; color: var(--jxw-accent); font-weight: 600; margin: 3px 0 10px; }
.jxws-partner-desc { font-size: 14px; line-height: 1.6; color: var(--jxw-text); margin: 0 0 14px; }
.jxws-partner-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 16px; }
.jxws-partner-tag { background: var(--jxw-bg-alt); color: var(--jxw-heading); border-radius: 999px; padding: 5px 11px; font-size: 12px; font-weight: 500; }
.jxws-partner-btn { margin-top: auto; width: 100%; justify-content: center; text-align: center; }
.jxws-partners-more { text-align: center; margin-top: 30px; }
.jxws-partners-more a { color: var(--jxw-accent); font-weight: 600; text-decoration: none; }
@media (max-width: 980px) { .jxws-partners-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .jxws-partners-grid { grid-template-columns: 1fr; } }

/* Checkliste (2-spaltig) */
.jxws-check-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 44px; align-items: start; }
.jxws-check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 26px; }
.jxws-check-item { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--jxw-heading); line-height: 1.5; }
.jxws-check-ic { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--jxw-grad-soft); color: var(--jxw-accent); display: grid; place-items: center; font-size: 12px; font-weight: 700; margin-top: 1px; }
@media (max-width: 820px) { .jxws-check-grid { grid-template-columns: 1fr; gap: 22px; } .jxws-check-list { grid-template-columns: 1fr; } }

/* Ebenen / Preise */
.jxws-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; margin-top: 8px; }
.jxws-tier { background: #fff; border: 1px solid #eef0f4; border-radius: 20px; padding: 30px 26px; display: flex; flex-direction: column; box-shadow: 0 20px 46px -30px rgba(30,20,80,.20); position: relative; }
.jxws-tier--featured { border: 2px solid transparent; background: linear-gradient(#fff,#fff) padding-box, var(--jxw-grad) border-box; box-shadow: 0 30px 60px -28px rgba(124,92,252,.45); }
.jxws-tier-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--jxw-grad); color: #fff; font-size: 12px; font-weight: 700; padding: 5px 14px; border-radius: 999px; box-shadow: 0 8px 18px rgba(124,92,252,.4); white-space: nowrap; }
.jxws-tier-name { font-size: 20px; font-weight: 800; color: var(--jxw-heading); margin-bottom: 4px; }
.jxws-tier-price { font-size: 15px; color: var(--jxw-accent); font-weight: 700; margin-bottom: 2px; }
.jxws-tier-tagline { font-size: 14px; color: var(--jxw-text); margin-bottom: 18px; line-height: 1.5; }
.jxws-tier-feats { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 10px; }
.jxws-tier-feats li { position: relative; padding-left: 26px; font-size: 14.5px; color: var(--jxw-heading); line-height: 1.5; }
.jxws-tier-feats li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--jxw-accent); font-weight: 700; }
.jxws-tier-btn { margin-top: auto; width: 100%; justify-content: center; text-align: center; }
@media (max-width: 820px) { .jxws-pricing-grid { grid-template-columns: 1fr; } }

/* Logo-Bild (statt Mark+Text), wenn jumpx_website_logo gesetzt ist */
.jxw-brand-img { height: 66px; width: auto; display: block; }
.jxw-foot-logo img { height: 100px; width: auto; display: block; margin: -8px 0 4px -6px; }

/* =========================================================================
   MOBILE-OPTIMIERUNG: Burger-Menü + Grids einspaltig
   ========================================================================= */
.jxw-burger { display: none; margin-left: auto; width: 44px; height: 44px; border: 1px solid var(--jxw-line); border-radius: 11px; background: #fff; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: 0; }
.jxw-burger span { display: block; width: 20px; height: 2px; background: var(--jxw-heading); border-radius: 2px; transition: transform .2s, opacity .2s; }
.jxw-header.is-open .jxw-burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.jxw-header.is-open .jxw-burger span:nth-child(2) { opacity: 0; }
.jxw-header.is-open .jxw-burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Feature-Karten (Netzwerk) responsiv */
@media (max-width: 900px) { .jxws-features--network .jxws-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .jxws-features--network .jxws-grid { grid-template-columns: 1fr; } }

@media (max-width: 960px) {
    .jxw-burger { display: flex; }
    .jxw-nav-wrap {
        position: absolute; top: 100%; left: 0; right: 0;
        flex-direction: column; align-items: stretch; gap: 0;
        background: #fff; border-top: 1px solid var(--jxw-line);
        box-shadow: 0 24px 44px -18px rgba(20, 10, 50, .22);
        padding: 8px 24px 18px; display: none;
    }
    .jxw-header.is-open .jxw-nav-wrap { display: flex; }
    .jxw-nav { flex-direction: column; gap: 0; width: 100%; }
    .jxw-nav li { width: 100%; }
    .jxw-nav a { display: block; padding: 14px 2px; opacity: 1; font-size: 16px; border-bottom: 1px solid #f1f1f6; }
    .jxw-header-cta { display: inline-flex; width: 100%; justify-content: center; margin: 14px 0 0; padding: 13px 18px; font-size: 15.5px; }
    .jxw-header-inner { height: 66px; position: relative; }
}
@media (max-width: 420px) {
    .jxws-cats-grid { grid-template-columns: 1fr; }
}

/* iOS/Safari: Schriftgröße >= 16px auf allen Formularfeldern verhindert das
   automatische Reinzoomen beim Fokussieren eines Eingabefelds (und das
   „Hängenbleiben" im Zoom). Gilt für die ganze öffentliche Website. */
.jxw-body input,
.jxw-body textarea,
.jxw-body select { font-size: 16px; }
