/* =========================================================
   BASIS: Farben, Reset, Grundlayout
========================================================= */

:root {
    --bg: #0b0b0f;
    --bg-alt: #111118;
    --card-bg: rgba(15, 15, 24, 0.85);
     --accent: #1ecad3;
    --accent-soft: rgba(0, 113, 227, 0.15);
    --text: #f5f5f7;
    --text-soft: #a1a1aa;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-soft: 0 24px 60px rgba(0,0,0,0.45);
    --max-width: 1120px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    background: radial-gradient(circle at top, #1f2933 0, #02010a 52%, #000 100%);
    color: var(--text);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

html {
    scrollbar-gutter: stable;
}



/* =========================================================
   NAVIGATION
========================================================= */

.nav {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(20px);
    background: linear-gradient(to bottom, rgba(0,0,0,0.85), rgba(0,0,0,0.5), transparent);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 14px 20px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    letter-spacing: 0.08em;
    color: var(--text-soft);
}

.nav-logo-mark {
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-logo-mark img {
    width: 80px;
    height: 80px;
    display: block;
    filter: drop-shadow(0 0 12px #6abac1);
    border-radius: 6px;
}

.nav-title-version {
    font-size: 24px;
    font-weight: 400;
    color: #e5e5e5;
}

.nav-links a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-icon {
    display: inline-flex;
    width: 20px;
    height: 20px;
}

.nav-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--accent);     /* PowerBEM Türkis */
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Mobile: Icons etwas größer & besser tappbar */
@media (max-width: 720px) {
    .nav-icon {
        width: 22px;
        height: 22px;
    }

    .nav-links a {
        padding: 10px 6px;
        font-size: 16px;
    }
}


/* kleine Apple-Logos (Nav + Buttons) */
.nav-apple-icon {
    height: 18px;
    width: auto;
    margin-right: 6px;
    margin-bottom: -3px;
    filter: drop-shadow(0 0 2px rgba(255,255,255,0.3));
}

.button-video-icon {
    height: 22px;
    width: auto;
    margin-right: 5px;
    margin-bottom: -3px;
    filter: drop-shadow(0 0 2px rgba(255,255,255,0.3));
}

.nav-links {
    display: flex;
    gap: 18px;
    font-size: 14px;
    color: var(--text-soft);
}

.nav-links a {
    position: relative;
    padding-bottom: 2px;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.18s ease-out;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-chip {
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid var(--border-subtle);
    font-size: 11px;
    letter-spacing: 0.12em;
    color: var(--text-soft);
}

.nav-btn {
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    border: 1px solid rgba(148,163,184,0.7);
    background: linear-gradient(to bottom, #111827, #020617);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.nav-btn span {
    font-size: 16px;
    margin-bottom: 2px;
}

@media (max-width: 720px) {
    .nav-inner {
        padding-inline: 16px;
    }
    .nav-links {
        display: none;
    }
    .nav-cta {
        gap: 6px;
    }
    .nav-chip {
        display: none;
    }
}

/* --- Navigation --- */

/* --- Hamburger / mobiles Menü --- */

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.nav-hamburger span {
    width: 24px;
    height: 3px;
    border-radius: 999px;
    background: var(--text);
}

/* Mobile: Hamburger aktiv, Menü als Dropdown-Card */
@media (max-width: 720px) {

    .nav-inner {
        padding-inline: 16px;
    }

    .nav-links {
        position: absolute;
        top: 64px;
        right: 12px;
        background: var(--card-bg);
        padding: 12px 14px;
        border-radius: 18px;
        box-shadow: var(--shadow-soft);
        border: 1px solid var(--border-subtle);
        display: none;              /* standard: versteckt */
        flex-direction: column;
        gap: 6px;
        min-width: 180px;
    }

    .nav-links.show {
        display: flex;              /* wird per JS gesetzt */
    }

    .nav-links a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 6px;          /* größerer „Tap“-Bereich */
        font-size: 16px;            /* größere Schrift auf Handy */
        border-radius: 10px;
    }

    .nav-links a:hover {
        background: rgba(148,163,184,0.16);
    }

    .nav-link-icon {
        font-size: 18px;
        line-height: 1;
    }

    .nav-link-text {
        line-height: 1.2;
    }

    .nav-hamburger {
        display: flex;
    }
}




/* =========================================================
   LAYOUT & SECTIONS
========================================================= */

main {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 32px 20px 64px;
}

section {
    margin-bottom: 80px;
}


/* =========================================================
   HERO-BEREICH (Intro + Gerät rechts)
========================================================= */

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: start;
}

/* kleines Label über der Hauptüberschrift */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px 4px 4px;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.5);
    background: radial-gradient(circle at 0 0, rgba(56,189,248,0.22), transparent 60%);
    font-size: 11px;
    letter-spacing: 0.16em;
    color: var(--text-soft);
    margin-bottom: 20px;
}

.badge-dot {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 0, #38bdf8, #0f766e);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 16px rgba(56,189,248,0.7);
}

.badge-dot::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #e5f3ff;
}

/* Hero-Texte links */
.hero-title {
    font-size: clamp(34px, 4vw, 42px);
    font-weight: 600;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
}

.hero-sub {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-soft);
    max-width: 34rem;
    margin-bottom: 26px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.meta-pill {
    font-size: 13px;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.5);
    color: var(--text-soft);
}

/* CTA-Buttons im Hero */
.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
}

.btn-primary {
    border-radius: 999px;
    padding: 10px 20px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
    color: #f9fafb;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.45);
}

.btn-primary span {
    font-size: 18px;
    margin-bottom: 1px;
}

.btn-ghost {
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 14px;
    border: 1px solid rgba(148,163,184,0.5);
    cursor: pointer;
    background: radial-gradient(circle at 0 0, rgba(148,163,184,0.15), transparent 55%);
    color: var(--text-soft);
}

.hero-hint {
    font-size: 12px;
    color: var(--text-soft);
}

/* Gerät rechts im Hero */
.hero-right {
    position: relative;
    min-height: 320px;
}

/* ältere Variante device-frame/device-inner (kannst du bei Bedarf später entfernen) */
.device-frame {
    position: relative;
    border-radius: var(--radius-xl);
    padding: 10px;
    background: radial-gradient(circle at top, rgba(37,99,235,0.8), #020617 60%, #000 100%);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(148, 163, 184, 0.25);
}

.device-inner {
    border-radius: calc(var(--radius-xl) - 10px);
    padding: 16px;
    background: radial-gradient(circle at top left, #020617, #020617 40%, #02010a 100%);
    border: 1px solid rgba(148,163,184,0.3);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* neue iPhone-Gerätehülle */
.hero-device {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.device-shell {
    border-radius: 40px;
    padding: 10px 12px;
    background:
        radial-gradient(circle at top left, rgba(148,163,184,0.45), transparent 60%),
        radial-gradient(circle at bottom right, rgba(56,189,248,0.7), transparent 60%),
        linear-gradient(145deg, #020617, #020617);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(148,163,184,0.6);
    position: relative;
    overflow: hidden;
}

.device-notch {
    width: 36%;
    height: 14px;
    border-radius: 0 0 16px 16px;
    background: rgba(15,23,42,0.85);
    margin: 0 auto 8px;
}

.device-screen {
    border-radius: 28px;
    overflow: hidden;
    background: #020617;
    border: 1px solid rgba(15,23,42,0.9);
}

.device-screenshot {
    display: block;
    width: 100%;
    height: auto;
}

.device-footer {
    display: flex;
    justify-content: space-between;
    padding: 8px 10px 2px;
    font-size: 11px;
    color: rgba(226,232,240,0.9);
}

.device-footer-center {
    justify-content: center !important;
}

.device-pill-center {
    width: 76px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148,163,184,0.6);
    box-shadow: 0 8px 20px rgba(0,0,0,0.45);
}

/* Apple-Logo im Kreis */
.device-pill-icon {
    width: 20px;
    height: auto;
    filter: drop-shadow(0 0 2px rgba(255,255,255,0.4));
}

.device-pill {
    border-radius: 999px;
    padding: 4px 10px;
    background: rgba(15,23,42,0.9);
    border: 1px solid rgba(148,163,184,0.6);
}

/* kleine Statusleiste über dem Placeholder */
.device-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: var(--text-soft);
}

.device-status-indicators {
    display: flex;
    gap: 6px;
    align-items: center;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
}

.indicator-dot:nth-child(2) {
    background: #facc15;
}
.indicator-dot:nth-child(3) {
    background: #ef4444;
}

.device-title {
    font-size: 13px;
    font-weight: 500;
}

/* Placeholder-Bereich im Gerät (für Slideshow) */
.placeholder-screen {
    margin-top: 4px;
    border-radius: 18px;
    background: linear-gradient(145deg, #020617, #020617 30%, #0b1120 100%);
    border: 1px solid rgba(148,163,184,0.35);
    padding: 14px;
    display: grid;
    gap: 10px;
    width: 100%;
    max-width: 800px;
}

.placeholder-tagline {
    font-size: 12px;
    color: var(--text-soft);
}

.placeholder-main {
    padding: 0;
    border: none;
    background: none;
    display: block;
    height: auto;
    text-align: center;
}

.placeholder-main span {
    font-size: 12px;
    color: var(--text-soft);
}

/* kleine Info-Karte am Gerät unten rechts */
.device-float-card {
    position: absolute;
    right: -24px;
    bottom: -28px;
    width: 180px;
    border-radius: 20px;
    padding: 12px 14px;
    background: rgba(15,23,42,0.96);
    border: 1px solid rgba(148,163,184,0.55);
    box-shadow: 0 18px 40px rgba(15,23,42,0.9);
    display: grid;
    gap: 4px;
    font-size: 12px;
}

.device-float-label {
    letter-spacing: 0.16em;
    font-size: 10px;
    color: var(--text-soft);
}

.device-float-value {
    font-size: 13px;
}

.device-float-sub {
    font-size: 11px;
    color: var(--text-soft);
}

/* Hero-Layout für kleinere Bildschirme */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: minmax(0, 1fr);
    }
    .hero-right {
        order: -1;
    }
    .device-float-card {
        position: static;
        margin-top: 14px;
    }
}


/* =========================================================
   GENERISCHE SECTION-STYLES (Überschriften, Subtexte)
========================================================= */

.section-label {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 11px;
    color: var(--text-soft);
    margin-bottom: 10px;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.section-sub {
    font-size: 15px;
    color: var(--text-soft);
    max-width: 34rem;
    margin-bottom: 28px;
}


/* =========================================================
   FEATURES-GRID (3 Karten)
========================================================= */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.feature-card {
    border-radius: var(--radius-lg);
    padding: 18px 18px 16px;
    background: radial-gradient(circle at 0 0, rgba(15,23,42,0.95), #020617);
    border: 1px solid var(--border-subtle);
    box-shadow: 0 14px 30px rgba(0,0,0,0.45);
}

.feature-icon {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 0 0, var(--accent-soft), rgba(15,23,42,0.85));
    margin-bottom: 10px;
    font-size: 16px;
}

.feature-title {
    font-size: 15px;
    margin-bottom: 6px;
}

.feature-text {
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .feature-grid {
        grid-template-columns: minmax(0,1fr);
    }
}


/* =========================================================
   SCREENSHOTS-BEREICH (Screenshots + Bild Frau)
========================================================= */

.screenshot-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 18px;
}

.screenshot-card {
    border-radius: var(--radius-xl);
    padding: 14px;
    background: radial-gradient(circle at 0 0, rgba(15,23,42,0.96), #020617);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
}

.screenshot-placeholder {
    border-radius: 18px;
    padding: 0;
    border: 3px solid rgba(148,163,184,0.35);
    background: repeating-linear-gradient(
        135deg,
        rgba(15,23,42,0.92),
        rgba(15,23,42,0.92) 7px,
        rgba(30,64,175,0.4) 7px,
        rgba(30,64,175,0.4) 8px
    );
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.screenshot-placeholder span {
    font-size: 13px;
    color: var(--text-soft);
}

.screenshot-placeholder img {
    border-radius: 18px;
    max-width: 100%;
    height: auto;
}

.screenshot-caption {
    font-size: 12px;
    color: var(--text-soft);
    margin-top: 10px;
}

.screenshot-stack {
    display: grid;
    gap: 14px;
}

/* Bild + Text-Header ("Screenshots" + Frau links) */
.screenshot-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}

.screenshot-side-image {
    width: 250px;     /* bei Bedarf auf 150px ändern */
    height: 250px;
    object-fit: cover;
    border-radius: 16px;
    flex-shrink: 0;
}

.screenshot-header-text {
    flex: 1;
}

/* Info-Streifen unter Screenshots */
.info-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 26px;
    font-size: 12px;
    color: var(--text-soft);
}

.info-strip strong {
    display: block;
    font-size: 13px;
    color: var(--text);
    margin-bottom: 4px;
}

@media (max-width: 900px) {
    .screenshot-layout {
        grid-template-columns: minmax(0,1fr);
    }
    .info-strip {
        grid-template-columns: minmax(0,1fr);
    }
}


/* =========================================================
   DETAILS / TECHNIK & REVIEWS
========================================================= */

.details-grid {
    display: grid;
    grid-template-columns: minmax(0,1.2fr) minmax(0,0.8fr);
    gap: 24px;
}

.details-card {
    border-radius: var(--radius-lg);
    padding: 18px 18px 16px;
    background: radial-gradient(circle at 0 0, rgba(15,23,42,0.96), #020617);
    border: 1px solid var(--border-subtle);
}

.details-list {
    list-style: none;
    display: grid;
    gap: 6px;
    font-size: 13px;
    color: var(--text-soft);
}

.details-list li::before {
    content: "• ";
    color: var(--accent);
}

.badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.tech-badge {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.6);
    color: var(--text-soft);
}

@media (max-width: 900px) {
    .details-grid {
        grid-template-columns: minmax(0,1fr);
    }
}


/* ---------- Reviews – gemeinsame Styles (Text + Dots) ---------- */

.review-text {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.5;
}

.review-meta {
    display: flex;
    gap: 8px;
    color: #e5e7eb;
    font-size: 13px;
}

.review-stars {
    color: #fbbf24;
    font-size: 13px;
}

.review-name {
    opacity: 0.9;
}

/* Punkte unter der Rezension */
.review-dots {
    margin-top: 10px;
    display: flex;
    gap: 6px;
}

.review-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    display: inline-block;
    transition: background 0.3s ease;
}

.review-dots .active {
    background: #6abac1;
}

/* ---------- Reviews – horizontale Slideshow ---------- */

.review-container-horizontal {
    overflow: hidden;
    width: 100%;
    height: 120px;   /* Höhe eines Items */
    position: relative;
}

.review-track-horizontal {
    display: flex;
    flex-direction: row;
    transition: transform 0.6s ease;
}

.review-item-horizontal {
    min-width: 100%;
    height: 120px;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}


/* =========================================================
   CTA-KARTE
========================================================= */

.cta-card {
    border-radius: var(--radius-xl);
    padding: 26px 22px;
    background: radial-gradient(circle at 0 0, rgba(59,130,246,0.25), #020617);
    border: 1px solid rgba(129,140,248,0.4);
    box-shadow: var(--shadow-soft);
    display: grid;
    grid-template-columns: minmax(0,1.4fr) auto;
    align-items: center;
    gap: 20px;
}

.cta-title {
    font-size: 20px;
    margin-bottom: 6px;
}

.cta-text {
    font-size: 14px;
    color: var(--text-soft);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

@media (max-width: 720px) {
    .cta-card {
        grid-template-columns: minmax(0,1fr);
    }
    .cta-actions {
        justify-content: flex-start;
    }
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 18px 20px 32px;
    font-size: 11px;
    color: var(--text-soft);
    border-top: 1px solid rgba(31,41,55,0.9);
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

@media (max-width: 720px) {
    footer {
        flex-direction: column;
    }
}


/* =========================================================
   MODALS (Video + Impressum)
========================================================= */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 50;
}

.modal-overlay.show {
    display: flex;
}

.modal {
    background: #f5f5f2;
    color: #303030;
    border-radius: 24px;
    padding: 20px 20px 16px;
    max-width: 520px;
    width: 90%;
    max-height: 80vh;
    box-shadow: 0 24px 60px rgba(0,0,0,0.8);
    border: 1px solid rgba(148,163,184,0.4);
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
}

.modal-close {
    z-index: 10;
    position: absolute;
    top: 20px;
    right: 30px;
    border: none;
    background: transparent;
    color: #438c8c;
    font-size: 36px;
    cursor: pointer;
}

/* Video im Modal – an Höhe angepasst, nicht beschneiden */
.modal video {
    width: auto;
    height: 100%;
    max-height: calc(50vh - 80px);
    max-width: 100%;
    object-fit: contain;
    border-radius: 16px;
    display: block;
    margin: 0 auto;
    background: black;
}


/* =========================================================
   ENTWICKLUNGS-SECTION (Bild rechts, Text links)
========================================================= */

.entwicklung-section {
    padding: 60px 20px;
}

.entwicklung-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Textseite */
.entwicklung-text .section-label {
    font-size: 14px;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 10px;
}

.entwicklung-text .section-title {
    font-size: 32px;
    margin-bottom: 12px;
}

.entwicklung-text .section-sub {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-soft);
}

/* Bildseite */
.entwicklung-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
    object-fit: cover;
}

@media (max-width: 900px) {
    .entwicklung-inner {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .entwicklung-image img {
        margin-top: 20px;
    }
}


/* =========================================================
   SCREENSHOT-GRID (4 Screens übereinander)
========================================================= */

.screenshot-grid-vertical {
    display: grid;
    gap: 14px;
}

.screenshot-slot {
    background: linear-gradient(145deg, #020617, #0b1120);
    border: 3px solid rgba(148,163,184,0.35);
    border-radius: 16px;
    padding: 10px;
    overflow: hidden;
}

.screenshot-slot img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    display: block;
}

/* Akkordeon für Anleitungen */

.accordion-item {
    border: none;
    margin-bottom: 12px;
    background: transparent;
}

.accordion-summary {
    list-style: none;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: var(--radius-lg);
    background: var(--card-bg);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
}

.accordion-summary::-webkit-details-marker {
    display: none;
}

.accordion-icon {
    color: #6abac1;                 /* PowerBEM-Türkis */
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.2s ease, color 0.2s ease;
}

/* Optional: leicht heller beim Hover */
.accordion-summary:hover .accordion-icon {
    color: #8fd6dd;
}

/* Inhalt */
.accordion-content {
    margin-top: 8px;
}

/* App-Style Hintergrund für aufgeklappte Anleitungs-Karten */
.accordion-content .details-card {
    background: #1b1e21;                 /* dunkles mattes Grau wie Buttons */
    border-radius: 18px;
    border: 1px solid rgba(0, 200, 200, .22);
    box-shadow:
        0 0 0 1px rgba(0, 200, 200, .18),
        0 12px 28px rgba(0, 0, 0, .45);
}


/* Zustand wenn geöffnet */
/* Zustand wenn geöffnet – dezente Hervorhebung */
.accordion-item[open] .accordion-summary {
    background: rgba(106, 186, 193, 0.10);   /* sehr helles Türkis */
    border-color: rgba(106, 186, 193, 0.35);
}


.accordion-item[open] .accordion-icon {
    transform: rotate(45deg); /* + wird zu X */
}


/* --- Support-Card & Formular --- */

.support-card {
    padding: 20px 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.support-card-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 4px;
}

.support-card-header h2 {
    font-size: 18px;
    margin-bottom: 4px;
    color: var(--text);
}

.support-card-header p {
    font-size: 14px;
    color: var(--text-soft);
}

.support-badge {
    align-self: flex-start;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--accent-soft);
    border: 1px solid var(--accent);
    font-size: 12px;
    color: var(--text);
}

/* Meldungen */
.support-message {
    margin-top: 4px;
    margin-bottom: 4px;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 13px;
}

.support-message.error {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.7);
}

.support-message.error ul {
    margin-top: 4px;
    margin-left: 16px;
}

/* Formular-Layout */
.support-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.support-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.support-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.support-label {
    font-size: 13px;
    color: var(--text-soft);
}

.support-label-sub {
    font-size: 12px;
    color: var(--text-soft);
}

.support-required {
    color: #f97373;
    margin-left: 2px;
}

/* Inputs & Textarea */
.support-input,
.support-textarea {
    padding: 9px 11px;
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    background: rgba(15, 15, 24, 0.9);
    color: var(--text);
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.support-input::placeholder,
.support-textarea::placeholder {
    color: rgba(148, 163, 184, 0.9);
}

.support-input:focus,
.support-textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent-soft);
    background: rgba(15, 15, 24, 1);
}

.support-textarea {
    resize: vertical;
    min-height: 120px;
}

.support-input-small {
    max-width: 110px;
    text-align: center;
}

/* Captcha-Row & Info */
.support-meta-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: flex-start;
}

.support-captcha-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.support-captcha-question {
    font-size: 14px;
    color: var(--text);
}

/* Datenschutz-Hinweis */
.support-info p {
    font-size: 12px;
    color: var(--text-soft);
    line-height: 1.5;
}

.support-info a {
    color: var(--accent);
    text-decoration: none;
}

.support-info a:hover {
    text-decoration: underline;
}

/* Button-Reihe */
.support-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 4px;
}

.primary-btn {
    padding: 10px 20px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    background: var(--accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.primary-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 30px rgba(0, 113, 227, 0.35);
    background: #0f86ff;
}

.primary-btn:active {
    transform: translateY(0);
    box-shadow: none;
}

/* Desktop-Anpassungen */
@media (min-width: 820px) {
    .support-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .support-meta-row {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    }

    .support-info {
        padding-left: 6px;
    }
}

/* --- Support-Overlay (Bestätigungsfenster) --- */

.support-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    backdrop-filter: blur(6px);
}

.support-overlay-dialog {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 20px 22px;
    max-width: 360px;
    width: calc(100% - 40px);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.support-overlay-dialog h2 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text);
}

.support-overlay-dialog p {
    font-size: 14px;
    margin-bottom: 16px;
    color: var(--text-soft);
}

.support-overlay-dialog .primary-btn {
    width: 100%;
    justify-content: center;
}

/* PowerBEM App-Kachel-Look für Download-Kategorien */
main section > .details-card {
    background: #16181b; /* mattes, dunkles Grau wie App-Buttons */
    border-radius: 18px;
    border: 1px solid rgba(0, 200, 200, .22);
    box-shadow:
        0 0 0 1px rgba(0, 200, 200, .18),
        0 14px 28px rgba(0, 0, 0, .45);
    padding: 18px 18px 16px;
}

main section > .details-card:hover {
    box-shadow:
        0 0 0 1px rgba(0, 220, 220, .35),
        0 18px 34px rgba(0, 0, 0, .55);
    transform: translateY(-1px);
    transition: all .18s ease;
}

/* Überschrift mit Icon bei Downloads */
.download-heading {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Word-Icon als Maske — bleibt gestochen scharf */
.download-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: inline-block;
}

/* Download-Dateinamen hervorheben */
.details-list a {
    font-weight: 700;              /* Fett */
    color: #6abac1;                /* Türkis passend zum Design */
}

/* Beim Hover noch etwas edler */
.details-list a:hover {
    text-decoration: underline;
    color: #8fd6dd;
}

/* CTA: App Store Badge + QR */
/* CTA: App Store & QR untereinander, mittig */
.store-assets{
    display: flex;
    flex-direction: column;     /* untereinander */
    align-items: center;        /* horizontal zentriert */
    gap: 16px;
}


.store-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 12px;
    border-radius: 16px;
    background: rgba(15,23,42,0.65);
    border: 1px solid rgba(148,163,184,0.35);
    box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}

.store-badge_oben{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:6px 6px;
    border-radius: 16px;
    background: rgba(15,23,42,0.65);
    border: 1px solid rgba(148,163,184,0.35);
    box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}

.cta-actions {
    display: flex;
    justify-content: center;
}


.store-badge img{
    height: 44px;     /* App Store Badge Größe */
    width: auto;
    display:block;
}

.store-badge_oben img{
    height: 44px;     /* App Store Badge Größe */
    width: auto;
    display:block;
}

.store-qr{
    padding:10px;
    border-radius: 18px;
    background: rgba(15,23,42,0.65);
    border: 1px solid rgba(148,163,184,0.35);
    box-shadow: 0 14px 30px rgba(0,0,0,0.35);
    display:flex;
    align-items:center;
    justify-content:center;
}

.store-qr img{
    width: 96px;      /* QR Größe */
    height: 96px;
    display:block;
    border-radius: 12px;
    background: #fff; /* sorgt für gute Lesbarkeit */
    padding: 6px;
}

/* CTA-Card: auf kleinen Screens zentriert */
@media (max-width: 720px){
    .store-assets{
        justify-content:flex-start;
    }
}

/* QR Modal Bild */
.qr-modal-image {
    width: 260px;
    height: 260px;
    max-width: 80vw;
    max-height: 80vw;
    display: block;
    margin: 0 auto;
    border-radius: 16px;
    background: #fff;
    padding: 10px;
}







