/* ============================================================
   bloodly v2 — Mobile-First Design System
   ============================================================ */

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

:root {
    --blood: #8B1A1A;
    --blood-light: #A52222;
    --blood-deep: #6a1313;
    --blood-glow: rgba(139, 26, 26, 0.4);
    --bg-deep: #000000;
    --bg-card: #0b0b0f;
    --bg-card-hover: #13131a;
    --border: #1a1a22;
    --border-strong: #2a2a35;
    --text: #e8ecf1;
    --text-dim: #6b7a8d;
    --text-muted: #9aa6b8;
    --accent-green: #2ea043;
    --accent-amber: #d4940a;
    --shadow-card: 0 4px 16px rgba(0,0,0,0.3);
    --shadow-card-hover: 0 12px 40px rgba(0,0,0,0.45);
    --radius: 12px;
    --radius-lg: 16px;
    --container: 1200px;
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2.5rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-deep);
    color: var(--text);
    line-height: 1.55;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    /* iOS safe area */
    padding-bottom: env(safe-area-inset-bottom);
}

/* Global fixed red-gradient background — verteilt an den Rändern, zentral-oben bewusst ruhig (Badge-Eye-Catcher bleibt klar) */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 700px 450px at -5% 15%, rgba(165,34,34,0.22), transparent 55%),
        radial-gradient(ellipse 700px 450px at 105% 15%, rgba(165,34,34,0.22), transparent 55%),
        radial-gradient(ellipse 900px 500px at 50% 55%, rgba(165,34,34,0.14), transparent 60%),
        radial-gradient(ellipse 700px 500px at 10% 85%, rgba(139,26,26,0.12), transparent 55%),
        radial-gradient(ellipse 700px 600px at 95% 100%, rgba(165,34,34,0.18), transparent 60%);
}

/* Mobile: Gradients etwas dimmen, damit Content auf kleinen Screens klarer bleibt */
@media (max-width: 767px) {
    body::before { opacity: 0.55; }
}

img, svg { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
a { color: inherit; text-decoration: none; }

/* Selection */
::selection { background: var(--blood); color: #fff; }

/* Focus-visible */
:focus-visible {
    outline: 2px solid var(--blood-light);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ============================================================
   Layout primitives
   ============================================================ */

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.25rem;
}

@media (min-width: 768px) {
    .container { padding: 0 2rem; }
}

.section {
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .section { padding: 5rem 0; }
}

.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blood-light);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.6rem, 5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 640px;
    margin-bottom: 2.5rem;
}

/* ============================================================
   Navbar — mobile-first with hamburger
   ============================================================ */

.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: #000;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.35s ease, padding 0.3s ease, border-color 0.3s ease;
    padding: 0;
    isolation: isolate;
}

.nav.scrolled {
    border-bottom-color: rgba(255,255,255,0.1);
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

@media (min-width: 900px) {
    .nav { background: rgba(0, 0, 0, 0.8); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
    .nav.scrolled { background: rgba(0, 0, 0, 0.92); }
}

.nav.nav-hidden {
    transform: translateY(-100%);
}

/* Spacer so content isn't hidden under the fixed nav */
body {
    padding-top: var(--nav-height, 64px);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.25rem;
    max-width: var(--container);
    margin: 0 auto;
    gap: 0.75rem;
    transition: padding 0.3s ease;
}

.nav.scrolled .nav-inner {
    padding: 0.6rem 1.25rem;
}

@media (min-width: 768px) {
    .nav-inner { padding: 1.1rem 2rem; }
    .nav.scrolled .nav-inner { padding: 0.7rem 2rem; }
}

.nav-logo {
    display: flex;
    align-items: center;
    line-height: 0;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.nav-logo-img {
    height: 26px;
    width: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: height 0.3s ease;
}

@media (min-width: 768px) {
    .nav-logo-img { height: 30px; }
}

.nav.scrolled .nav-logo-img { height: 24px; }
@media (min-width: 768px) {
    .nav.scrolled .nav-logo-img { height: 26px; }
}

.nav-links {
    display: none;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
}

.nav-links a {
    padding: 0.5rem 0.875rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    border-radius: 8px;
    transition: color 0.15s, background 0.15s;
}

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

.nav-cta {
    display: none;
    padding: 0.55rem 1.1rem;
    background: var(--blood);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: background 0.15s, transform 0.15s;
}

.nav-cta:hover {
    background: var(--blood-light);
    transform: translateY(-1px);
}

.nav-burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    border-radius: 8px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 101;
    -webkit-tap-highlight-color: transparent;
}

.nav-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.2s ease;
    transform-origin: center;
}

.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #000;
    padding: calc(var(--nav-height, 64px) + 1.25rem) 1.25rem calc(2rem + env(safe-area-inset-bottom));
    z-index: 90;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease,
                transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s linear 0.25s;
}

.nav-mobile.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.25s ease,
                transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s;
}

.nav-mobile a {
    padding: 1.05rem 1.25rem;
    font-size: 1.02rem;
    font-weight: 500;
    color: var(--text);
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.02);
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    opacity: 0;
    transform: translateY(-6px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-mobile.open a {
    animation: navMobileItemIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.nav-mobile.open a:nth-child(1) { animation-delay: 0.05s; }
.nav-mobile.open a:nth-child(2) { animation-delay: 0.1s; }
.nav-mobile.open a:nth-child(3) { animation-delay: 0.15s; }
.nav-mobile.open a:nth-child(4) { animation-delay: 0.2s; }
.nav-mobile.open a:nth-child(5) { animation-delay: 0.25s; }
.nav-mobile.open a:nth-child(6) { animation-delay: 0.3s; }
.nav-mobile.open a:nth-child(7) { animation-delay: 0.35s; }

@keyframes navMobileItemIn {
    to { opacity: 1; transform: translateY(0); }
}

.nav-mobile a:hover, .nav-mobile a.active {
    background: rgba(139,26,26,0.1);
    border-color: rgba(165,34,34,0.4);
}

.nav-mobile .nav-cta-mobile {
    margin-top: 0.75rem;
    background: var(--blood);
    border-color: var(--blood);
    color: #fff;
    font-weight: 600;
    text-align: center;
    justify-content: center;
}

.nav-mobile .nav-cta-mobile:hover {
    background: var(--blood-light);
    border-color: var(--blood-light);
}

body.menu-open {
    overflow: hidden;
    touch-action: none;
}

/* When menu open: nav has shadow to emphasize separation from dark menu below */
body.menu-open .nav {
    border-bottom-color: rgba(255,255,255,0.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

@media (min-width: 900px) {
    .nav-links { display: flex; }
    .nav-cta { display: inline-flex; align-items: center; gap: 0.4rem; }
    .nav-burger { display: none; }
    .nav-mobile { display: none !important; }
    body.menu-open { overflow: auto; touch-action: auto; }
}

@media (prefers-reduced-motion: reduce) {
    .nav, .nav-mobile, .nav-mobile a, .nav-burger span { transition: none; animation: none; }
    .nav-mobile.open a { opacity: 1; transform: none; }
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.98rem;
    transition: transform 0.15s, background 0.15s, border-color 0.15s, box-shadow 0.15s;
    text-align: center;
    min-height: 48px;
    line-height: 1;
}

.btn-primary {
    background: var(--blood);
    color: #fff;
    box-shadow: 0 4px 14px rgba(139,26,26,0.35);
}
.btn-primary:hover { background: var(--blood-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(139,26,26,0.45); }

.btn-secondary {
    background: var(--bg-card);
    color: var(--text);
    border: 1px solid var(--border-strong);
}
.btn-secondary:hover { background: var(--bg-card-hover); border-color: var(--blood); }

.btn-ghost {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
}
.btn-ghost:hover { color: var(--text); border-color: var(--border-strong); }

.btn-large {
    padding: 1.05rem 1.85rem;
    font-size: 1.05rem;
    min-height: 56px;
}

.btn-block { display: flex; width: 100%; }

/* ============================================================
   Hero
   ============================================================ */

.hero {
    padding: 3rem 1.25rem 3.5rem;
    text-align: center;
    position: relative;
}

.hero > * { position: relative; z-index: 1; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    background: rgba(139,26,26,0.1);
    border: 1px solid rgba(139,26,26,0.3);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--blood-light);
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
}

.hero-badge .dot {
    width: 6px; height: 6px;
    background: var(--accent-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-green);
    animation: hero-badge-pulse 1.8s ease-in-out infinite;
}

@keyframes hero-badge-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 6px var(--accent-green), 0 0 0 0 rgba(46, 160, 67, 0.55);
    }
    50% {
        transform: scale(1.15);
        box-shadow: 0 0 14px var(--accent-green), 0 0 0 6px rgba(46, 160, 67, 0);
    }
}

.hero h1 {
    font-size: clamp(2rem, 9vw, 6rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--blood-light) 0%, var(--blood-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: var(--text-muted);
    max-width: 880px;
    margin: 0 auto 2rem;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
    max-width: 320px;
    margin: 0 auto 3rem;
}

@media (min-width: 600px) {
    .hero-actions {
        flex-direction: row;
        max-width: none;
        justify-content: center;
        gap: 1rem;
    }
}

@media (min-width: 768px) {
    .hero { padding: 6rem 2rem 7rem; }
}

@media (min-width: 1024px) {
    .hero { padding: 7rem 2rem 8.5rem; }
}

/* Hero mockup — portiert 1:1 aus Original-Landing */

.hero-mockup-wrap {
    margin: 0 auto;
    max-width: 880px;
    padding: 0 0.25rem;
}

.hero-mockup {
    background: #0a0a0e;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1rem;
    box-shadow: 0 24px 60px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.03);
}

/* Karten innerhalb des hero-mockup-Frames: solid heller — heben sich als
   „elevated"-Inseln vom dunklen Frame ab (Apple-Health-Look). */
.hero-mockup .mockup-card {
    background: #1a1a22;
}

@media (min-width: 600px) { .hero-mockup { padding: 1.5rem; } }

.mockup-bar {
    display: flex;
    gap: 6px;
    margin-bottom: 1rem;
}

.mockup-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
}

.mockup-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.875rem;
}

@media (min-width: 640px) {
    .mockup-content { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}

.mockup-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.012));
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.1rem 1rem 1rem;
    opacity: 0;
    animation: mockup-fade-in 0.7s ease-out forwards;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.mockup-card:hover {
    border-color: rgba(165,34,34,0.35);
    box-shadow: 0 0 24px rgba(165,34,34,0.12);
    transform: translateY(-2px);
}
.mockup-card:nth-child(1) { animation-delay: 0.2s; }
.mockup-card:nth-child(2) { animation-delay: 0.4s; }
.mockup-card:nth-child(3) { animation-delay: 0.6s; }
@keyframes mockup-fade-in {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.mc-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    gap: 0.5rem;
}
.mc-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.mc-category {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
    background: rgba(255,255,255,0.04);
    padding: 0.18rem 0.45rem;
    border-radius: 3px;
    flex-shrink: 0;
}

.mc-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.95rem;
    gap: 0.5rem;
}
.mc-value {
    font-size: 1.9rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
    line-height: 1;
}
.mc-unit {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-dim);
    margin-left: 0.3rem;
}

.mc-status-dot {
    display: inline-block;
    width: 9px; height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
}
.mc-status-normal { background: var(--accent-green); box-shadow: 0 0 8px rgba(46,160,67,0.65); }
.mc-status-high   { background: #f85149;             box-shadow: 0 0 8px rgba(248,81,73,0.65); }
.mc-status-low    { background: var(--accent-amber); box-shadow: 0 0 8px rgba(210,153,34,0.65); }

.mc-range { margin-bottom: 0.85rem; }
.mc-range-bar {
    position: relative;
    height: 4px;
    background: linear-gradient(90deg,
        rgba(248,81,73,0.18) 0%,
        rgba(46,160,67,0.22) 22%,
        rgba(46,160,67,0.22) 78%,
        rgba(248,81,73,0.18) 100%);
    border-radius: 2px;
}
.mc-range-marker {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 2px var(--bg-card), 0 0 10px rgba(255,255,255,0.35);
}
.mc-range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.4rem;
    font-size: 0.58rem;
    color: var(--text-dim);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
}

.mc-trend {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
}
.mc-sparkline {
    flex: 1;
    height: 26px;
    min-width: 0;
    display: block;
}
.mc-sparkline path {
    stroke: #A52222;
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
}
.mockup-card:nth-child(1) .mc-sparkline path { animation: trend-draw 1.8s cubic-bezier(0.4,0,0.2,1) 1.0s forwards; }
.mockup-card:nth-child(2) .mc-sparkline path { animation: trend-draw 1.8s cubic-bezier(0.4,0,0.2,1) 1.2s forwards; }
.mockup-card:nth-child(3) .mc-sparkline path { animation: trend-draw 1.8s cubic-bezier(0.4,0,0.2,1) 1.4s forwards; }
.mc-sparkline circle { fill: #A52222; opacity: 0; }
.mockup-card:nth-child(1) .mc-sparkline circle { animation: trend-dot-appear 0.3s ease-out 2.6s forwards, trend-pulse 2.2s ease-in-out 2.9s infinite; }
.mockup-card:nth-child(2) .mc-sparkline circle { animation: trend-dot-appear 0.3s ease-out 2.8s forwards, trend-pulse 2.2s ease-in-out 3.1s infinite; }
.mockup-card:nth-child(3) .mc-sparkline circle { animation: trend-dot-appear 0.3s ease-out 3.0s forwards, trend-pulse 2.2s ease-in-out 3.3s infinite; }
@keyframes trend-draw { to { stroke-dashoffset: 0; } }
@keyframes trend-dot-appear { to { opacity: 1; } }
@keyframes trend-pulse {
    0%, 100% { r: 2.2; filter: drop-shadow(0 0 2px rgba(165,34,34,0.5)); }
    50%      { r: 3.5; filter: drop-shadow(0 0 8px rgba(165,34,34,0.9)); }
}

.mc-delta {
    font-size: 0.68rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    letter-spacing: 0.01em;
}
.mc-delta-positive { color: var(--accent-green); }
.mc-delta-negative { color: #f85149; }
.mc-delta-neutral  { color: var(--text-dim); }

/* ============================================================
   Metallic text effects (Plan-Namen, Hero-Highlights)
   ============================================================ */

@keyframes metallicShimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.metallic-red {
    background: linear-gradient(180deg,
        #e55555 0%, #c91e1e 25%, #8B1A1A 50%, #6a1313 75%, #A52222 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter:
        drop-shadow(0 1px 0 rgba(106,19,19,0.75))
        drop-shadow(0 2px 0 rgba(66,12,12,0.5))
        drop-shadow(0 3px 8px rgba(139,26,26,0.25));
}

.metallic-gold {
    background-image:
        linear-gradient(100deg,
            transparent 0%,
            transparent 30%,
            rgba(255,255,255,0.85) 48%,
            rgba(255,255,220,1)   50%,
            rgba(255,255,255,0.85) 52%,
            transparent 70%,
            transparent 100%),
        linear-gradient(180deg,
            #fce58a 0%, #f4c04a 20%, #e6a817 40%, #b58309 60%, #e6a817 80%, #f4c04a 100%);
    background-size: 250% 100%, 100% 100%;
    background-position: -125% 0, 0 0;
    background-repeat: no-repeat, no-repeat;
    background-clip: text, text;
    -webkit-background-clip: text, text;
    -webkit-text-fill-color: transparent;
    filter:
        drop-shadow(0 1px 0 rgba(168,117,9,0.9))
        drop-shadow(0 2px 0 rgba(120,83,6,0.7))
        drop-shadow(0 4px 10px rgba(0,0,0,0.5))
        drop-shadow(0 0 16px rgba(212,148,10,0.4));
    animation: goldShimmerText 3.5s linear infinite;
}

@keyframes goldShimmerText {
    0%   { background-position: -125% 0, 0 0; }
    60%  { background-position: 125% 0, 0 0; }
    100% { background-position: 125% 0, 0 0; }
}

@media (prefers-reduced-motion: reduce) {
    .metallic-gold { animation: none; background-position: -125% 0, 0 0; }
}

.metallic-silver {
    background: linear-gradient(180deg,
        #ffffff 0%, #e8e8ea 30%, #b8b8bc 55%, #8e8f91 75%, #c8c8cc 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter:
        drop-shadow(0 1px 0 rgba(0,0,0,0.4))
        drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

/* Bronze hell / Warm-Copper — für Single als eigenständige Personal-Klasse */
.metallic-bronze {
    background: linear-gradient(180deg,
        #f4cea3 0%, #e0a564 25%, #a86d2a 50%, #7a4a12 75%, #d89054 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter:
        drop-shadow(0 1px 0 rgba(122,74,18,0.8))
        drop-shadow(0 2px 0 rgba(92,55,10,0.5))
        drop-shadow(0 3px 6px rgba(168,109,42,0.22));
}

.plan-name.metallic-bronze::after {
    background: linear-gradient(90deg, #d89054 0%, #a86d2a 40%, transparent 100%);
    height: 3px;
    box-shadow: 0 0 10px rgba(216,144,84,0.4);
}

/* Single Pricing-Card: Plan-Name bronze (statt silber) + Bronze-Akzente */
.pricing-card.single .plan-name {
    background-image: linear-gradient(180deg,
        #f4cea3 0%, #e0a564 25%, #a86d2a 50%, #7a4a12 75%, #d89054 100%);
    filter:
        drop-shadow(0 1px 0 rgba(122,74,18,0.8))
        drop-shadow(0 2px 0 rgba(92,55,10,0.5))
        drop-shadow(0 3px 6px rgba(168,109,42,0.22));
}
.pricing-card.single .plan-name::after {
    background: linear-gradient(90deg, #d89054 0%, #a86d2a 40%, transparent 100%);
    height: 3px;
    box-shadow: 0 0 10px rgba(216,144,84,0.4);
}

/* Basic Pricing-Card: Plan-Name silber + Silber-Akzent-Unterstrich */
.pricing-card.basic .plan-name::after {
    background: linear-gradient(90deg, #dcdce0 0%, #8e8f91 40%, transparent 100%);
    height: 3px;
    box-shadow: 0 0 10px rgba(200, 200, 204, 0.4);
}
.pricing-card.single .corner-ribbon {
    background: linear-gradient(135deg, #e0a564, #a86d2a);
    color: #1a1410;
}
.pricing-card.single .pkg-row .head svg { stroke: #d89054; }
.pricing-card.single .pricing-coming-soon {
    background: linear-gradient(90deg, #a86d2a, #e0a564, #d89054, #e0a564, #a86d2a);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Single Anchor-Pill: Bronze-Tint */
.plan-anchor.single {
    border-color: rgba(216,144,84,0.35);
    background: linear-gradient(135deg, rgba(216,144,84,0.05), transparent);
}
.plan-anchor.single:hover {
    border-color: #e0a564;
    background: linear-gradient(135deg, rgba(216,144,84,0.1), rgba(216,144,84,0.02));
    box-shadow: 0 4px 14px rgba(168,109,42,0.18);
}
.plan-anchor.single:hover .plan-anchor-arrow { color: #e0a564; }

/* ============================================================
   Feature Tiles (Snapshot Grid for Index)
   ============================================================ */

.tiles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 600px) {
    .tiles-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}

@media (min-width: 1024px) {
    .tiles-grid { grid-template-columns: repeat(3, 1fr); }
}

.tile {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.tile:hover {
    border-color: var(--border-strong);
    transform: translateY(-2px);
    box-shadow: var(--shadow-card-hover);
}

.tile-icon {
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139,26,26,0.1);
    border-radius: 10px;
    color: var(--blood-light);
    margin-bottom: 1rem;
}

.tile-icon svg { width: 22px; height: 22px; stroke: currentColor; stroke-width: 1.5; fill: none; }

.tile h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tile p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ============================================================
   Steps (How it works)
   ============================================================ */

.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    counter-reset: step;
}

@media (min-width: 768px) {
    .steps { grid-template-columns: repeat(3, 1fr); }
}

.step {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    position: relative;
}

.step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    top: -16px; left: 1.5rem;
    width: 32px; height: 32px;
    background: var(--blood);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(139,26,26,0.4);
}

.step h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0.5rem 0 0.5rem;
}

.step p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ============================================================
   Persona Cards (User-Type Selector on Index)
   ============================================================ */

.personas {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .personas { grid-template-columns: repeat(3, 1fr); }
}

.persona {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, transform 0.2s;
}

.persona:hover {
    border-color: var(--blood);
    transform: translateY(-2px);
}

.persona-icon {
    width: 48px; height: 48px;
    background: rgba(139,26,26,0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blood-light);
    margin-bottom: 1rem;
}

.persona-icon svg {
    width: 24px; height: 24px;
    stroke: currentColor;
    fill: none;
}

.persona h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.persona-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--blood-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.persona p {
    color: var(--text-muted);
    font-size: 0.95rem;
    flex: 1;
    margin-bottom: 1.25rem;
}

.persona-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--blood-light);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ============================================================
   Trust Strip
   ============================================================ */

.trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    justify-content: center;
    align-items: center;
    padding: 1.75rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item svg {
    width: 22px; height: 22px;
    color: var(--blood-light);
}

.trust-strip > a {
    color: var(--blood-light);
    font-size: 0.9rem;
    font-weight: 600;
    margin-left: auto;
}

@media (max-width: 600px) {
    .trust-strip > a { margin-left: 0; }
}

/* ============================================================
   Pricing Teaser (kompakt, nur auf Landing)
   ============================================================ */

.pricing-teaser-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 600px) {
    .pricing-teaser-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}

@media (min-width: 1024px) {
    .pricing-teaser-grid { grid-template-columns: repeat(4, 1fr); }
}

.pricing-teaser {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem 1.25rem 1.5rem;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
    text-align: center;
    text-decoration: none;
    position: relative;
}

/* Plan-Highlight-Badge (schwebt am oberen Rand der Teaser-Karte) */
.teaser-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
    z-index: 2;
}

.teaser-badge-pro {
    background: var(--blood);
    color: #fff;
    box-shadow: 0 0 16px rgba(139, 26, 26, 0.5);
}

.teaser-badge-ultimate {
    background: linear-gradient(135deg, var(--accent-amber) 0%, #f4c04a 100%);
    color: #1a1410;
    box-shadow: 0 0 16px rgba(212, 148, 10, 0.5);
}

.pricing-teaser:hover {
    transform: translateY(-3px);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-card-hover);
}

.pricing-teaser.featured {
    border-color: rgba(139,26,26,0.4);
    box-shadow: 0 0 24px rgba(139,26,26,0.12);
}
.pricing-teaser.featured:hover { border-color: var(--blood-light); box-shadow: 0 0 32px rgba(139,26,26,0.2); }

.pricing-teaser.ultimate {
    border-color: rgba(212,148,10,0.35);
    box-shadow: 0 0 24px rgba(212,148,10,0.08);
}
.pricing-teaser.ultimate:hover { border-color: var(--accent-amber); box-shadow: 0 0 32px rgba(212,148,10,0.18); }

.pricing-teaser .plan-name {
    font-size: clamp(1.4rem, 3.5vw, 1.75rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.75rem;
    line-height: 1.05;
}

/* Preis-Display in Teaser-Card */
.pricing-teaser-price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.25rem;
    line-height: 1.1;
}
.pricing-teaser-price .price-suffix {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-left: 0.15rem;
}
.pricing-teaser-price-note {
    font-size: 0.72rem;
    color: var(--text-dim);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

/* Preis-Display in Detail-Card — Monthly plain, Yearly in gold-getöntem Container */
.pricing-duo {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 0.6rem 0 0.3rem;
}

.pricing-duo .price-block {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    flex-wrap: wrap;
    padding: 0.55rem 0.9rem;
    border: 1px solid transparent;
    border-radius: 10px;
}

.pricing-duo .price-amount {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    letter-spacing: -0.01em;
}

.pricing-duo .price-period {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.01em;
}

.pricing-duo .price-sep { display: none; }

/* Yearly-Block: gold-getönter Container — signalisiert Spar-Alternative */
.pricing-duo .price-block-highlight {
    background: linear-gradient(135deg, rgba(212,148,10,0.1), rgba(212,148,10,0.03));
    border-color: rgba(212,148,10,0.3);
    box-shadow: 0 0 14px rgba(212,148,10,0.08);
}

/* Savings inline im Gold-Container, nur Farbe + Bold (kein Pill mehr) */
.pricing-duo .price-block-highlight .price-savings {
    font-size: 0.8rem;
    font-weight: 700;
    color: #f4c04a;
    letter-spacing: 0.01em;
    white-space: nowrap;
    padding-left: 0.5rem;
    border-left: 1px solid rgba(212,148,10,0.3);
    margin-left: 0.4rem;
}

.pricing-detail-mwst {
    font-size: 0.78rem;
    color: var(--text-dim);
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
}
/* Teaser-Grid-Variante linksbündig (für /preise-Overview) */
.pricing-teaser-grid.teaser-left .pricing-teaser {
    text-align: left;
    align-items: flex-start;
}
.pricing-teaser-grid.teaser-left .teaser-coming {
    text-align: left;
}

/* Unterstrich pro Plan farblich passend — überschreibt das graue Default */
.plan-name.metallic-silver::after {
    background: linear-gradient(90deg, #dcdce0 0%, #8e8f91 40%, transparent 100%);
    height: 3px;
    box-shadow: 0 0 10px rgba(200, 200, 204, 0.4);
}
.pricing-card.basic .pkg-row .head svg { stroke: #c8c8cc; }
.plan-name.metallic-red::after {
    background: linear-gradient(90deg, var(--blood) 0%, var(--blood-light) 40%, transparent 100%);
    height: 3px;
}
.plan-name.metallic-gold::after {
    background: linear-gradient(90deg, var(--accent-amber) 0%, #f4c04a 40%, transparent 100%);
    height: 3px;
    box-shadow: 0 0 10px rgba(212,148,10,0.5);
}
/* Obsolet — Shimmer jetzt direkt auf .metallic-gold via Dual-Background */

/* Teaser Hint-Liste pro Plan */
.teaser-hints {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    flex: 1;
    text-align: left;
}

.teaser-hints .hint {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.88rem;
    line-height: 1.4;
    color: var(--text-muted);
    padding: 0.5rem 0.7rem;
    background: rgba(255,255,255,0.02);
    border-radius: 8px;
    border: 1px solid transparent;
}

.teaser-hints .hint::before {
    content: '';
    flex-shrink: 0;
    width: 14px; height: 14px;
    margin-top: 0.15rem;
    background: currentColor;
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M3 8.5l3.5 3.5L13 4.5'/></svg>") center/contain no-repeat;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M3 8.5l3.5 3.5L13 4.5'/></svg>") center/contain no-repeat;
}

/* Inherits: „Alles aus BASIC/PRO" — visualisiert via Stack-Up-Pfeil-Icon,
   subtilere Farbe als hint-new (sind ja nur Verweise, keine eigenen Features) */
.teaser-hints .hint-inherits {
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.025);
    border-color: rgba(255, 255, 255, 0.08);
    font-style: italic;
    font-weight: 500;
}
.teaser-hints .hint-inherits::before {
    background: var(--text-muted);
    color: var(--text-muted);
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 10l5-5 5 5M3 14l5-5 5 5'/></svg>") center/contain no-repeat;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 10l5-5 5 5M3 14l5-5 5 5'/></svg>") center/contain no-repeat;
}

/* Highlighted: blood-red per default, gold für Ultimate-Card */
.teaser-hints .hint-new {
    color: var(--text);
    background: rgba(139,26,26,0.12);
    border-color: rgba(165,34,34,0.4);
    font-weight: 600;
}
.teaser-hints .hint-new::before { color: var(--blood-light); background: var(--blood-light); }

.pricing-teaser.ultimate .teaser-hints .hint-new {
    background: rgba(212,148,10,0.12);
    border-color: rgba(212,148,10,0.45);
}
.pricing-teaser.ultimate .teaser-hints .hint-new::before { background: var(--accent-amber); color: var(--accent-amber); }

/* Silver-Highlight — für Single's „Alle Features" etc. */
.teaser-hints .hint-silver {
    color: var(--text);
    background: rgba(255,255,255,0.05);
    border-color: rgba(200,200,204,0.25);
    font-weight: 600;
}
.teaser-hints .hint-silver::before { color: #c8c8cc; background: #c8c8cc; }

/* Excluded: grayed out mit X statt Check */
.teaser-hints .hint-excluded {
    color: var(--text-dim);
    background: rgba(255,255,255,0.025);
    font-style: italic;
    text-decoration: line-through;
    text-decoration-color: rgba(255,255,255,0.15);
    text-decoration-thickness: 1px;
}
.teaser-hints .hint-excluded::before {
    background: var(--text-dim);
    color: var(--text-dim);
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round'><path d='M4 4l8 8M4 12l8-8'/></svg>") center/contain no-repeat;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round'><path d='M4 4l8 8M4 12l8-8'/></svg>") center/contain no-repeat;
}

/* Coming-soon badge unten — shimmer wie bei pricing-card */
.teaser-coming {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.35rem 0;
    background: linear-gradient(90deg, var(--blood), var(--blood-light), var(--blood));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: comingSoonShimmer 3s ease-in-out infinite;
    margin-top: auto;
}
.pricing-teaser.ultimate .teaser-coming {
    background: linear-gradient(90deg, #b58309, #f4c04a, #e6a817, #f4c04a, #b58309);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============================================================
   Pricing Cards (volle Form, auf /preise)
   ============================================================ */

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .pricing-grid { grid-template-columns: repeat(4, 1fr); gap: 1.1rem; } }

/* „Jetzt starten" auf Pricing-Detail-Cards — CTA-Footer pro Karte */
.pricing-card-cta {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Desktop: Note links, Button rechts auto-width statt voller Cardbreite */
@media (min-width: 700px) {
    .pricing-card-cta {
        flex-direction: row-reverse;
        align-items: center;
        justify-content: space-between;
        gap: 1.5rem;
    }
}

.pricing-buy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.95rem 1.75rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.02em;
    min-height: 52px;
    background: var(--blood);
    color: #fff;
    border: 1px solid var(--blood);
    box-shadow: 0 4px 16px rgba(139,26,26,0.3);
    transition: transform 0.15s, background 0.15s, box-shadow 0.15s;
    cursor: pointer;
}

@media (min-width: 700px) {
    .pricing-buy-btn {
        width: auto;
        min-width: 220px;
        flex-shrink: 0;
    }
}

.pricing-buy-btn:hover {
    background: var(--blood-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(139,26,26,0.4);
}
.pricing-card.ultimate .pricing-buy-btn {
    background: linear-gradient(135deg, var(--accent-amber), #e6a817);
    color: #1a1410;
    border-color: var(--accent-amber);
    box-shadow: 0 4px 16px rgba(212,148,10,0.35);
}
.pricing-card.ultimate .pricing-buy-btn:hover {
    background: linear-gradient(135deg, #f4c04a, var(--accent-amber));
    box-shadow: 0 6px 22px rgba(212,148,10,0.45);
}

/* Pro — Rot-Metallic-Button (dunkler Text) */
.pricing-card.featured .pricing-buy-btn {
    background: linear-gradient(135deg, #e55555, #b82424);
    color: #1a0505;
    border-color: #c91e1e;
    box-shadow: 0 4px 14px rgba(139,26,26,0.35);
}
.pricing-card.featured .pricing-buy-btn:hover {
    background: linear-gradient(135deg, #f08282, #c91e1e);
    box-shadow: 0 6px 20px rgba(139,26,26,0.45);
}

/* Single — Bronze-Button */
.pricing-card.single .pricing-buy-btn {
    background: linear-gradient(135deg, #e0a564, #a86d2a);
    color: #1a1008;
    border-color: #a86d2a;
    box-shadow: 0 4px 14px rgba(168,109,42,0.3);
}
.pricing-card.single .pricing-buy-btn:hover {
    background: linear-gradient(135deg, #f4c089, #b87733);
    box-shadow: 0 6px 20px rgba(168,109,42,0.4);
}

/* Basic — Silber-Button */
.pricing-card.basic .pricing-buy-btn {
    background: linear-gradient(135deg, #d8d8dc, #8e8f91);
    color: #0a0a0a;
    border-color: #a8a8ac;
    box-shadow: 0 4px 14px rgba(200,200,204,0.15);
}
.pricing-card.basic .pricing-buy-btn:hover {
    background: linear-gradient(135deg, #ececf0, #9e9fa1);
    box-shadow: 0 6px 20px rgba(220,220,224,0.22);
}

.pricing-buy-note {
    font-size: 0.78rem;
    color: var(--text-dim);
    text-align: center;
    margin: 0;
    letter-spacing: 0.01em;
}

@media (min-width: 700px) {
    .pricing-buy-note { text-align: left; }
}

/* Detail-Stack: 4 volle Pricing-Cards untereinander, über die gesamte Container-Breite */
.pricing-detail-stack {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    width: 100%;
    margin: 0;
}

.pricing-detail-stack .pricing-card {
    width: 100%;
    scroll-margin-top: calc(var(--nav-height, 64px) + 80px);
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem 1.5rem 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.pricing-card.featured { border-color: var(--blood); box-shadow: 0 0 16px rgba(139,26,26,0.22); }
.pricing-card.ultimate { border-color: var(--accent-amber); box-shadow: 0 0 30px rgba(212,148,10,0.2); }

/* Corner Ribbon (All Features / Unlimited / Starter) */
.ribbon-clip {
    position: absolute;
    top: 0; right: 0;
    width: 150px; height: 150px;
    overflow: hidden;
    pointer-events: none;
    border-top-right-radius: 16px;
    z-index: 2;
}
.corner-ribbon {
    position: absolute;
    top: 32px; right: -56px;
    width: 220px;
    padding: 8px 0;
    background: linear-gradient(135deg, var(--blood-light), var(--blood));
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-align: center;
    transform: rotate(45deg);
    box-shadow: 0 3px 10px rgba(0,0,0,0.4);
}
.pricing-card.ultimate .corner-ribbon {
    background: linear-gradient(135deg, #e6a817, var(--accent-amber));
    color: #1a1410;
}
.pricing-card.basic .corner-ribbon {
    background: linear-gradient(135deg, #d8d8dc, #8e8f91);
    color: #0a0a0a;
}
.pricing-card.featured .corner-ribbon {
    background: linear-gradient(135deg, #e55555, #b82424);
    color: #1a0505;
}

/* Metallic Plan Names */
@keyframes goldShimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}
.plan-name {
    font-size: 1.85rem;
    font-weight: 800;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
    line-height: 1;
    padding-bottom: 10px;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.plan-name::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, #4a4a4c 0%, #2a2a2c 60%, transparent 100%);
}
/* Single + Basic: silber metallic */
.pricing-card:not(.featured):not(.ultimate):not(.single) .plan-name {
    background-image: linear-gradient(180deg,
        #ffffff 0%, #e8e8ea 30%, #b8b8bc 55%, #8e8f91 75%, #c8c8cc 100%);
    filter:
        drop-shadow(0 1px 0 rgba(0,0,0,0.4))
        drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}
/* Pro: rot-metallic */
.pricing-card.featured .plan-name {
    background-image: linear-gradient(180deg,
        #e55555 0%, #c91e1e 25%, var(--blood) 50%, #6a1313 75%, var(--blood-light) 100%);
    filter:
        drop-shadow(0 1px 0 rgba(106,19,19,0.75))
        drop-shadow(0 2px 0 rgba(66,12,12,0.5))
        drop-shadow(0 3px 6px rgba(139,26,26,0.22));
}
.pricing-card.featured .plan-name::after {
    background: linear-gradient(90deg, var(--blood) 0%, var(--blood-light) 40%, transparent 100%);
    height: 3px;
}
/* Ultimate: gold-metallic + Shimmer via Dual-Background (kompatibel mit iOS Safari) */
.pricing-card.ultimate .plan-name {
    background-image:
        linear-gradient(100deg,
            transparent 0%,
            transparent 30%,
            rgba(255,255,255,0.85) 48%,
            rgba(255,255,220,1)   50%,
            rgba(255,255,255,0.85) 52%,
            transparent 70%,
            transparent 100%),
        linear-gradient(180deg,
            #fce58a 0%, #f4c04a 20%, #e6a817 40%, #b58309 60%, #e6a817 80%, #f4c04a 100%);
    background-size: 250% 100%, 100% 100%;
    background-position: -125% 0, 0 0;
    background-repeat: no-repeat, no-repeat;
    background-clip: text, text;
    -webkit-background-clip: text, text;
    filter:
        drop-shadow(0 1px 0 rgba(168,117,9,0.9))
        drop-shadow(0 2px 0 rgba(120,83,6,0.7))
        drop-shadow(0 4px 10px rgba(0,0,0,0.5))
        drop-shadow(0 0 16px rgba(212,148,10,0.4));
    animation: goldShimmerText 3.5s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
    .pricing-card.ultimate .plan-name { animation: none; background-position: -125% 0, 0 0; }
}
.pricing-card.ultimate .plan-name::after {
    background: linear-gradient(90deg, var(--accent-amber) 0%, #f4c04a 40%, transparent 100%);
    height: 3px;
    box-shadow: 0 0 10px rgba(212,148,10,0.5);
}

.pricing-desc {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 0.75rem;
    line-height: 1.35;
    min-height: 2em;
    margin-top: 0.6rem;
}

/* Coming-soon shimmer */
.pricing-coming-soon {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    padding: 0.4rem 0;
    background: linear-gradient(90deg, var(--blood), var(--blood-light), var(--blood));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: comingSoonShimmer 3s ease-in-out infinite;
}
.pricing-card.ultimate .pricing-coming-soon {
    background: linear-gradient(90deg, #b58309, #f4c04a, #e6a817, #f4c04a, #b58309);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
@keyframes comingSoonShimmer {
    0%   { background-position: 0% center; }
    50%  { background-position: 100% center; }
    100% { background-position: 0% center; }
}

/* Paket-Zeilen */
.pkg-row {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pkg-row:last-child { border-bottom: none; padding-bottom: 0; }
.pkg-row .head {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #e8e8ea;
    font-size: 0.88rem;
}
.pkg-row .head svg {
    width: 18px; height: 18px;
    stroke: var(--blood);
    flex-shrink: 0;
}
.pricing-card.ultimate .pkg-row .head svg { stroke: var(--accent-amber); }
.pkg-row .sub {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 0;
    row-gap: 4px;
    color: var(--text-dim);
    font-size: 0.75rem;
    margin-top: 4px;
    margin-left: 28px;
    line-height: 1.5;
}
.pkg-row .sub > span { white-space: nowrap; }
.pkg-row .sub > span.wrap { white-space: normal; }
.pkg-row .sub > span:not(:last-child)::after {
    content: '·';
    margin: 0 8px;
    color: rgba(255,255,255,0.25);
}
.pkg-row .sub > span.new {
    color: var(--blood-light);
    font-weight: 700;
    font-style: italic;
}
.pricing-card.ultimate .pkg-row .sub > span.new { color: var(--accent-amber); }
.pricing-card.basic .pkg-row .sub > span.new { color: #c8c8cc; }
.pkg-row.excluded .head { color: #4a4a4c; }
.pkg-row.excluded .head svg { stroke: #3a3a3c; }
.pkg-row.excluded .sub { color: #4a4a4c; font-style: italic; }

.pkg-row.capacity-row .head {
    color: #f0f0f2;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 0.82rem;
}
.pkg-row.capacity-row .head svg { stroke: #d0d0d4; }

.pricing-card.ultimate .pkg-row.hosting-highlight .head {
    background-image: linear-gradient(180deg,
        #fce58a 0%, #f4c04a 25%, #e6a817 50%, #b58309 75%, #e6a817 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 1px 0 rgba(168,117,9,0.7));
    font-weight: 700;
}
.pricing-card.ultimate .pkg-row.hosting-highlight .head svg {
    stroke: var(--accent-amber);
    filter: drop-shadow(0 0 4px rgba(212,148,10,0.5));
}

@media (prefers-reduced-motion: reduce) {
    .pricing-card.ultimate .plan-name::before,
    .pricing-coming-soon { animation: none; }
}

/* ============================================================
   Pricing — full feature matrix (preise.html)
   ============================================================ */

.matrix-tabs {
    display: flex;
    overflow-x: auto;
    gap: 0.5rem;
    padding: 0.25rem;
    margin-bottom: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    -webkit-overflow-scrolling: touch;
}

.matrix-tab {
    flex: 1;
    min-width: max-content;
    padding: 0.7rem 1.1rem;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: background 0.15s, color 0.15s;
    text-align: center;
    white-space: nowrap;
}

.matrix-tab.active {
    background: var(--blood);
    color: #fff;
}

.matrix-panel {
    display: none;
}

.matrix-panel.active {
    display: block;
}

@media (min-width: 1024px) {
    .matrix-tabs { display: none; }
    .matrix-panel { display: block; }
}

.matrix-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.matrix-table th, .matrix-table td {
    padding: 0.95rem 1.1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.matrix-table th {
    background: rgba(255,255,255,0.02);
    font-weight: 700;
    font-size: 0.95rem;
}

.matrix-table th.plan-col {
    text-align: center;
    width: 130px;
}

.matrix-table td.feature-cell {
    text-align: center;
}

.matrix-table tr:last-child td { border-bottom: none; }

.matrix-check {
    display: inline-block;
    width: 18px; height: 18px;
    color: var(--blood-light);
}

.matrix-dash {
    color: var(--text-dim);
}

/* ============================================================
   FAQ Accordion
   ============================================================ */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    max-width: 820px;
    margin: 0;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text);
    transition: background 0.15s;
    min-height: 56px;
}

.faq-question:hover {
    background: rgba(255,255,255,0.02);
}

.faq-chevron {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    transition: transform 0.2s;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: var(--blood-light);
}

.faq-answer {
    display: none;
    padding: 0 1.25rem 1.25rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-answer p + p { margin-top: 0.75rem; }

.faq-item.open .faq-answer { display: block; }

/* FAQ Search + Categories (faq.html) */

.faq-search-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 820px;
    margin: 0 0 2rem;
}

@media (min-width: 600px) {
    .faq-search-wrap { flex-direction: row; }
}

.faq-search {
    flex: 1;
    padding: 0.85rem 1.1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-size: 0.95rem;
    font-family: inherit;
    min-height: 48px;
}

.faq-search::placeholder { color: var(--text-dim); }
.faq-search:focus { outline: none; border-color: var(--blood); }

.faq-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    max-width: 820px;
    margin: 0 0 1.5rem;
    justify-content: flex-start;
}

.faq-cat {
    padding: 0.5rem 0.95rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: all 0.15s;
}

.faq-cat:hover { border-color: var(--blood); color: var(--text); }
.faq-cat.active {
    background: var(--blood);
    border-color: var(--blood);
    color: #fff;
}

/* ============================================================
   Forms (Kontakt)
   ============================================================ */

.form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    max-width: 580px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.1rem;
}

@media (min-width: 600px) {
    .form-row { grid-template-columns: 1fr 1fr; }
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

.form-input, .form-textarea, .form-select {
    padding: 0.85rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-size: 0.98rem;
    font-family: inherit;
    transition: border-color 0.15s;
    min-height: 48px;
}

.form-textarea { min-height: 140px; resize: vertical; }
.form-input:focus, .form-textarea:focus, .form-select:focus { outline: none; border-color: var(--blood); }

.form-hint { font-size: 0.8rem; color: var(--text-dim); }

/* ============================================================
   Inline Breadcrumb — klein, oben am Content, kein Sticky
   ============================================================ */

.breadcrumb-top {
    max-width: var(--container);
    margin: 0 auto;
    padding: 1.5rem 1.25rem 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumb-top a {
    color: var(--text-muted);
    transition: color 0.15s;
}

.breadcrumb-top a:hover { color: var(--text); }

.breadcrumb-top .breadcrumb-sep {
    margin: 0 0.4rem;
    color: var(--text-dim);
}

@media (min-width: 768px) {
    .breadcrumb-top { padding: 2rem 2rem 0; }
}

/* ============================================================
   Sticky CTA bar (veraltet — nicht mehr in HTML verwendet)
   ============================================================ */

.sticky-cta {
    position: sticky;
    top: var(--nav-height, 64px);
    z-index: 50;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.sticky-cta .breadcrumb {
    font-size: 0.85rem;
    color: var(--text-muted);
    flex: 1;
    min-width: max-content;
}

.sticky-cta .breadcrumb a { color: var(--text-muted); }
.sticky-cta .breadcrumb a:hover { color: var(--text); }
.sticky-cta .breadcrumb-sep { margin: 0 0.4rem; color: var(--text-dim); }

.sticky-cta .btn { padding: 0.55rem 1rem; min-height: 40px; font-size: 0.88rem; }

/* Mobile: stack the CTA buttons below breadcrumb if needed */
@media (max-width: 480px) {
    .sticky-cta { gap: 0.5rem; }
    .sticky-cta .breadcrumb { width: 100%; flex: none; }
}

/* ============================================================
   CTA Section (vor Footer)
   ============================================================ */

.cta-section {
    padding: 6rem 1.25rem 7rem;
    margin-top: 3rem;
    text-align: center;
}

@media (min-width: 768px) {
    .cta-section { padding: 8rem 2rem 9rem; margin-top: 4rem; }
}

@media (min-width: 1024px) {
    .cta-section { padding: 9rem 2rem 10rem; margin-top: 5rem; }
}

.cta-section h2 {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    line-height: 1.15;
}

.cta-section p {
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto 2rem;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
    max-width: 320px;
    margin: 0 auto;
}

@media (min-width: 600px) {
    .cta-actions { flex-direction: row; max-width: none; justify-content: center; }
}

/* Soft-CTA-Hint unter den Haupt-Buttons (Instagram-Verweis) */
.cta-instagram-hint {
    margin-top: 2rem !important;
    color: var(--text-dim) !important;
    font-size: 0.9rem !important;
    max-width: 480px !important;
}

.cta-instagram-hint a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.cta-instagram-hint a:hover {
    color: var(--text);
}

/* Desktop zeigt langen Text, Mobile (s.u.) den kurzen */
.cta-instagram-hint .ig-hint-mobile { display: none; }

/* Mobile: kompakter Pill-Button statt umbrechende Inline-Zeile */
@media (max-width: 600px) {
    .cta-instagram-hint {
        margin-top: 1.5rem !important;
        max-width: none !important;
    }
    .cta-instagram-hint a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 0.55rem 1.1rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 999px;
        font-size: 0.82rem;
        white-space: nowrap;
        color: var(--text);
    }
    .cta-instagram-hint a svg {
        width: 16px;
        height: 16px;
        margin-right: 0 !important;
        vertical-align: 0 !important;
    }
    .cta-instagram-hint .ig-hint-desktop { display: none; }
    .cta-instagram-hint .ig-hint-mobile { display: inline; }
}

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
    border-top: 1px solid var(--border);
    padding: 2.5rem 1.25rem 2rem;
    background: rgba(0, 0, 0, 0.5);
}

.site-footer .footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.site-footer .footer-brand-img {
    height: 32px;
    width: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
}

.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 320px;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-dim);
    margin-bottom: 0.875rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col a {
    color: var(--text-muted);
    font-size: 0.92rem;
    transition: color 0.15s;
}

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

.footer-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    color: var(--text-dim);
    font-size: 0.85rem;
}

.footer-meta a { color: var(--text-dim); }
.footer-meta a:hover { color: var(--text); }

/* ============================================================
   Use-Case Persona Page
   ============================================================ */

.persona-section {
    padding: 3rem 0;
    border-bottom: 1px solid var(--border);
}

.persona-section:last-child { border-bottom: none; }

.persona-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.persona-header-icon {
    width: 56px; height: 56px;
    flex-shrink: 0;
    background: rgba(139,26,26,0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blood-light);
}

.persona-header h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.persona-header-tag {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--blood-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.persona-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .persona-content { grid-template-columns: 2fr 1fr; }
}

.persona-story p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.persona-uses {
    list-style: none;
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.persona-uses li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--text);
}

.persona-uses li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--blood-light);
    font-weight: 700;
}

.persona-recommendation {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    /* Flex-Column mit Top-Block + Action-Block — Buttons unten geankert,
       Karte streckt sich auf volle Höhe der persona-content-row. */
    display: flex;
    flex-direction: column;
    height: 100%;
}

.persona-recommendation .rec-top {
    flex: 1 1 auto;
}

.persona-recommendation .rec-actions {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.persona-recommendation .rec-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.persona-recommendation .rec-features li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

.persona-recommendation .rec-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 14px;
    height: 14px;
    background: rgb(var(--hover-accent-color));
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12l5 5L20 7"/></svg>') center/contain no-repeat;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12l5 5L20 7"/></svg>') center/contain no-repeat;
    opacity: 0.85;
}

/* Plan-spezifische Primary-Buttons in Metallic-Farbe */
.btn-plan-single,
.btn-plan-pro,
.btn-plan-ultimate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    border: 0;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-plan-single {
    background: linear-gradient(135deg, #e0a564 0%, #a86d2a 100%);
    color: #1a1410;
    box-shadow: 0 4px 14px rgba(216, 144, 84, 0.25);
}

.btn-plan-single:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(216, 144, 84, 0.4);
    filter: brightness(1.08);
}

.btn-plan-pro {
    background: linear-gradient(135deg, var(--blood-light) 0%, var(--blood) 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(139, 26, 26, 0.3);
}

.btn-plan-pro:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(139, 26, 26, 0.45);
    filter: brightness(1.08);
}

.btn-plan-ultimate {
    background: linear-gradient(135deg, #f4c04a 0%, var(--accent-amber) 100%);
    color: #1a1410;
    box-shadow: 0 4px 14px rgba(212, 148, 10, 0.3);
}

.btn-plan-ultimate:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(212, 148, 10, 0.45);
    filter: brightness(1.08);
}

.persona-recommendation h4 {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.persona-recommendation .rec-plan {
    font-size: 1.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text);
    line-height: 1;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.persona-recommendation .rec-price {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* ============================================================
   Coach Mockup Gallery (use-cases / features)
   ============================================================ */

.mockup-showcase {
    margin: 2rem 0 2.5rem;
}

.mockup-showcase-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.mockup-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .mockup-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* ============================================================
   Mockup Slider
   ============================================================ */

.mockup-slider {
    position: relative;
    margin: 0 auto;
}

/* Desktop: Slider auf max 760px deckeln, linksbündig (Rest des Contents
   ist auch linksbündig). Mobile bleibt 100%. Click öffnet Lightbox in
   Vollbild — also kein Detail-Verlust bei kleinerer Inline-Darstellung. */
@media (min-width: 768px) {
    .mockup-slider { max-width: 760px; margin-left: 0; margin-right: auto; }
}

.mockup-slider-viewport {
    overflow: hidden;
    border-radius: var(--radius);
}

.mockup-slider-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.mockup-slider .mockup-card {
    flex: 0 0 100%;
    min-width: 0;
    margin-right: 0;  /* Slider gibt 100% pro Slide */
}

.mockup-slider-arrow {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    line-height: 1;
    padding-bottom: 3px;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.12s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.mockup-slider-arrow:hover {
    background: rgba(0, 0, 0, 0.75);
    border-color: var(--blood-light);
    transform: translateY(-50%) scale(1.05);
}

.mockup-slider-arrow.prev { left: 0.6rem; }
.mockup-slider-arrow.next { right: 0.6rem; }

.mockup-slider-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.mockup-slider-tab {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.mockup-slider-tab:hover {
    color: var(--text);
    border-color: rgba(212, 90, 90, 0.4);
}

.mockup-slider-tab.is-active {
    background: rgba(212, 90, 90, 0.12);
    border-color: rgba(212, 90, 90, 0.6);
    color: var(--blood-light);
}

@media (max-width: 575.98px) {
    .mockup-slider-arrow { width: 38px; height: 38px; font-size: 1.3rem; top: 40%; }
    .mockup-slider-arrow.prev { left: 0.3rem; }
    .mockup-slider-arrow.next { right: 0.3rem; }
    .mockup-slider-tab { padding: 0.4rem 0.85rem; font-size: 0.78rem; }
    .mockup-slider-tabs { margin-top: 1rem; }
}

.mockup-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.mockup-card:hover {
    border-color: rgba(212, 90, 90, 0.4);
    transform: translateY(-2px);
}

.mockup-card-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.85rem;
}

.mockup-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(212, 90, 90, 0.15);
    color: var(--blood-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mockup-card-icon svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 1.6; fill: none; }

.mockup-card-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
}

.mockup-card-caption {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Composite: Macbook-Bild als Hauptbild, iPhone als Overlay rechts unten */
.mockup-composite {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: visible;
}

.mockup-composite-desktop {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.mockup-composite-mobile {
    position: absolute;
    bottom: -8%;
    right: -2%;
    width: 22%;
    height: auto;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.45));
    transition: transform 0.2s ease;
}

.mockup-card:hover .mockup-composite-mobile {
    transform: translateY(-3px);
}

@media (max-width: 575.98px) {
    .mockup-composite-mobile { width: 26%; bottom: -6%; }
}

/* Single-Variante: nur Desktop, ohne iPhone-Overlay */
.mockup-composite.is-desktop-only .mockup-composite-mobile { display: none; }

/* Klickbare Bilder = zoom-in cursor */
.mockup-composite img { cursor: zoom-in; }

/* ============================================================
   Mockup Lightbox (full-screen overlay)
   ============================================================ */

.mockup-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 5rem 1.5rem 4rem;
    animation: mockupLightboxFadeIn 0.18s ease;
}

.mockup-lightbox.is-open { display: flex; }

@keyframes mockupLightboxFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.mockup-lightbox-stage {
    max-width: min(1280px, 100%);
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

/* Composite im Lightbox: gleiche Layout-Logik wie im Card, aber größer */
.mockup-lightbox-composite {
    position: relative;
    width: 100%;
    max-width: min(1100px, 92vw);
    aspect-ratio: 16 / 10;
    animation: mockupLightboxZoom 0.22s ease;
}

.mockup-lightbox-desktop {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
    display: block;
}

.mockup-lightbox-mobile {
    position: absolute;
    bottom: -6%;
    right: -2%;
    width: 18%;
    height: auto;
    filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.6));
}

@keyframes mockupLightboxZoom {
    from { transform: scale(0.96); opacity: 0; }
    to   { transform: scale(1);     opacity: 1; }
}

.mockup-lightbox-caption {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.mockup-lightbox-counter {
    position: absolute;
    top: 1.2rem;
    left: 1.5rem;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.04em;
}

.mockup-lightbox-close,
.mockup-lightbox-nav {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.15s ease, transform 0.12s ease, border-color 0.15s ease;
    line-height: 1;
}

.mockup-lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    width: 42px;
    height: 42px;
    font-size: 1.6rem;
}

.mockup-lightbox-close:hover,
.mockup-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.20);
    border-color: rgba(255, 255, 255, 0.35);
    transform: scale(1.05);
}

.mockup-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    font-size: 2rem;
    padding-bottom: 4px;
}

.mockup-lightbox-nav.prev { left: 1.5rem; }
.mockup-lightbox-nav.next { right: 1.5rem; }

.mockup-lightbox-nav:hover { transform: translateY(-50%) scale(1.05); }

@media (max-width: 575.98px) {
    .mockup-lightbox { padding: 4rem 0.5rem 3rem; }
    .mockup-lightbox-nav { width: 44px; height: 44px; font-size: 1.6rem; }
    .mockup-lightbox-nav.prev { left: 0.5rem; }
    .mockup-lightbox-nav.next { right: 0.5rem; }
    .mockup-lightbox-counter { top: 0.8rem; left: 1rem; font-size: 0.8rem; }
    .mockup-lightbox-close { top: 0.7rem; right: 0.7rem; width: 38px; height: 38px; font-size: 1.4rem; }
    .mockup-lightbox-composite { max-width: 96vw; }
    .mockup-lightbox-mobile { width: 24%; bottom: -4%; right: -1%; }
}

/* ============================================================
   Security page — info cards
   ============================================================ */

.sec-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sec-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.sec-card-head {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    margin-bottom: 0.6rem;
}

.sec-card-icon {
    width: 36px; height: 36px;
    flex-shrink: 0;
    background: rgba(139,26,26,0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blood-light);
}

.sec-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.sec-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ============================================================
   Reading Progress Bar (top of viewport)
   ============================================================ */

.read-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    background: var(--blood-light);
    z-index: 200;
    width: 0;
    transition: width 0.05s linear;
}

/* ============================================================
   Reveal-on-scroll
   ============================================================ */

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal.in-view { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}

/* ============================================================
   Utility
   ============================================================ */

.text-center { text-align: center; }
.muted { color: var(--text-muted); }
.dim { color: var(--text-dim); }
.mt-4 { margin-top: 4rem; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }


/* Changelog-Teaser-Section — horizontales Layout auf Desktop, gestapelt auf Mobile */
.changelog-teaser {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem 2rem 2.25rem;
    background: linear-gradient(135deg, rgba(139,26,26,0.08), rgba(139,26,26,0.02));
    border: 1px solid rgba(165,34,34,0.2);
    border-radius: var(--radius-lg);
}

.changelog-teaser .changelog-text {
    flex: 1;
}

.changelog-teaser .section-title {
    margin-bottom: 0.6rem;
}

.changelog-teaser .section-desc {
    margin-bottom: 0;
}

.changelog-teaser .changelog-cta {
    flex-shrink: 0;
    align-self: stretch;
}

@media (min-width: 900px) {
    .changelog-teaser {
        flex-direction: row;
        align-items: center;
        gap: 2.5rem;
        padding: 2.5rem 3rem;
    }
    .changelog-teaser .changelog-cta {
        align-self: auto;
    }
}


/* Plan-Anchor-Nav — größere Pills mit metallic-Namen + Sprung-Icon */
.plan-anchor-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .plan-anchor-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 0.85rem;
    }
}

.plan-anchor {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.9rem 1.4rem;
    min-height: 60px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s, background 0.2s;
    position: relative;
    flex: 1;
    min-width: 0;
}

@media (min-width: 640px) {
    .plan-anchor {
        flex: 0 0 auto;
        min-width: 140px;
    }
}

.plan-anchor-name {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1;
    padding-bottom: 0;
}
.plan-anchor-name::after { display: none; }

.plan-anchor-arrow {
    width: 16px;
    height: 16px;
    color: var(--text-dim);
    transition: transform 0.25s, color 0.2s;
    flex-shrink: 0;
}

.plan-anchor:hover {
    border-color: var(--border-strong);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

.plan-anchor:hover .plan-anchor-arrow {
    transform: translateY(3px);
    color: var(--text);
}

.plan-anchor.featured {
    border-color: rgba(165,34,34,0.3);
    background: linear-gradient(135deg, rgba(139,26,26,0.05), transparent);
}
.plan-anchor.featured:hover {
    border-color: var(--blood-light);
    background: linear-gradient(135deg, rgba(139,26,26,0.1), rgba(139,26,26,0.02));
    box-shadow: 0 4px 14px rgba(139,26,26,0.2);
}
.plan-anchor.featured:hover .plan-anchor-arrow { color: var(--blood-light); }

.plan-anchor.ultimate {
    border-color: rgba(212,148,10,0.32);
    background: linear-gradient(135deg, rgba(212,148,10,0.05), transparent);
}
.plan-anchor.ultimate:hover {
    border-color: var(--accent-amber);
    background: linear-gradient(135deg, rgba(212,148,10,0.1), rgba(212,148,10,0.02));
    box-shadow: 0 4px 14px rgba(212,148,10,0.18);
}
.plan-anchor.ultimate:hover .plan-anchor-arrow { color: var(--accent-amber); }

.plan-anchor.basic {
    background: linear-gradient(135deg, rgba(200,200,204,0.04), transparent);
    border-color: rgba(200,200,204,0.2);
}
.plan-anchor.basic:hover {
    border-color: #c8c8cc;
    background: linear-gradient(135deg, rgba(200,200,204,0.08), rgba(200,200,204,0.02));
    box-shadow: 0 4px 14px rgba(200,200,204,0.12);
}
.plan-anchor.basic:hover .plan-anchor-arrow { color: #c8c8cc; }


/* ============================================================
   Unified Hover-Accent System (port aus Landing v1)
   Boxen liften beim Hover, bekommen einen farbigen Top-Akzent +
   farbigen Drop-Shadow. Farbe per --hover-accent-color (RGB-Triplet)
   pro Element/Klasse überschreibbar.
   ============================================================ */

.tile,
.persona,
.sec-card,
.pricing-card,
.persona-recommendation {
    --hover-accent-color: 139, 26, 26;  /* default red */
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.tile::before,
.persona::before,
.sec-card::before,
.pricing-card::before,
.persona-recommendation::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgb(var(--hover-accent-color)), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.tile:hover,
.persona:hover,
.sec-card:hover,
.pricing-card:hover,
.persona-recommendation:hover {
    border-color: rgba(var(--hover-accent-color), 0.4);
    transform: translateY(-4px);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.35),
        0 0 30px rgba(var(--hover-accent-color), 0.18);
}

.tile:hover::before,
.persona:hover::before,
.sec-card:hover::before,
.pricing-card:hover::before,
.persona-recommendation:hover::before {
    opacity: 1;
}

/* Sicherheit "Security by Design" Cards: grün */
.sec-card { --hover-accent-color: 46, 160, 67; }

/* Pricing-Cards: per-plan Farbe */
.pricing-card.single   { --hover-accent-color: 216, 144, 84; }
.pricing-card.basic    { --hover-accent-color: 200, 200, 204; }
.pricing-card.pro      { --hover-accent-color: 139, 26, 26; }
.pricing-card.ultimate { --hover-accent-color: 212, 148, 10; }

/* Use-Cases Plan-Recommendation: per-plan Farbe via :has() */
.persona-recommendation:has(.metallic-bronze) { --hover-accent-color: 216, 144, 84; }
.persona-recommendation:has(.metallic-silver) { --hover-accent-color: 200, 200, 204; }
.persona-recommendation:has(.metallic-red)    { --hover-accent-color: 139, 26, 26; }
.persona-recommendation:has(.metallic-gold)   { --hover-accent-color: 212, 148, 10; }

/* ============================================================
   Privacy Banner — ehrliche „wir tracken nicht"-Notiz
   ============================================================ */

.privacy-banner {
    position: fixed;
    left: 50%;
    bottom: 16px;
    transform: translate(-50%, 200%);
    max-width: calc(100vw - 32px);
    width: 720px;
    z-index: 9999;
    background: rgba(13, 13, 18, 0.96);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.privacy-banner.is-visible {
    transform: translate(-50%, 0);
}

.privacy-banner-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    flex-wrap: wrap;
}

.privacy-banner-content {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    flex: 1 1 300px;
}

.privacy-banner-icon {
    color: var(--accent-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.privacy-banner-text {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.privacy-banner-text strong {
    color: var(--text);
    margin-right: 4px;
}

.privacy-banner-text a {
    color: var(--blood-light);
    text-decoration: none;
    margin-left: 4px;
    border-bottom: 1px dotted rgba(165, 34, 34, 0.4);
}

.privacy-banner-text a:hover {
    border-bottom-color: var(--blood-light);
}

.privacy-banner-dismiss {
    background: var(--blood);
    color: #fff;
    border: 0;
    border-radius: 8px;
    padding: 0.55rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.privacy-banner-dismiss:hover {
    background: var(--blood-light);
}

@media (max-width: 480px) {
    .privacy-banner { bottom: 8px; }
    .privacy-banner-inner { padding: 0.875rem 1rem; }
    .privacy-banner-text { font-size: 0.82rem; }
}


/* ============================================================
   COMING SOON Button (Pre-Launch — ersetzt pricing-buy-btn)
   Visuell identisch zum Buy-Button, aber gegraut + nicht klickbar.
   ============================================================ */

.pricing-buy-btn-coming-soon {
    cursor: not-allowed;
    opacity: 0.55;
    background: linear-gradient(135deg, #3a3a45 0%, #2a2a30 100%) !important;
    color: var(--text-muted) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    box-shadow: none !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    pointer-events: none;
    user-select: none;
}

.pricing-buy-btn-coming-soon:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Ultimate-Card-Override neutralisieren — alle Coming-Soon-Buttons identisch */
.pricing-card.ultimate .pricing-buy-btn-coming-soon,
.pricing-card.featured .pricing-buy-btn-coming-soon {
    background: linear-gradient(135deg, #3a3a45 0%, #2a2a30 100%) !important;
    color: var(--text-muted) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    box-shadow: none !important;
}

/* ============================================================
   Public-Launch-Toggle (data-launch-state am <body>)

   Im Prelaunch-Modus (default): COMING-SOON-Button sichtbar,
   Real-Buy-Button versteckt. Bei Launch via launch.sh: Body-Attribut
   auf "live" gesetzt → Real-Buttons werden sichtbar, COMING-SOON
   verschwindet.
   ============================================================ */

body[data-launch-state="prelaunch"] .launch-only,
body:not([data-launch-state]) .launch-only {
    display: none !important;
}

body[data-launch-state="live"] .prelaunch-only {
    display: none !important;
}
