/* ============================================================
   MOTIV STUDIO — Shared Stylesheet
   ============================================================ */

/* --- Fonts (lokal, kein Google-Request) --- */
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 300; font-display: swap; src: url('/assets/fonts/montserrat-v31-latin-300.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 400; font-display: swap; src: url('/assets/fonts/montserrat-v31-latin-regular.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 600; font-display: swap; src: url('/assets/fonts/montserrat-v31-latin-600.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 400; font-display: swap; src: url('/assets/fonts/playfair-display-v40-latin-regular.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 600; font-display: swap; src: url('/assets/fonts/playfair-display-v40-latin-600.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: italic; font-weight: 400; font-display: swap; src: url('/assets/fonts/playfair-display-v40-latin-italic.woff2') format('woff2'); }

/* --- CSS Variables --- */
:root {
    color-scheme: dark;
    --bg-dark:      #0a0a0a;
    --panel-bg:     #141414;
    --border-color: #2a2a2a;
    --text-main:    #f0f0f0;
    --text-muted:   #aaa;
    --accent:       #b8964e;
    --accent-hover: #a68540;
    --error:        #db4437;
    --success:      #34A853;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; }
img { max-width: 100%; }

/* --- Base --- */
body {
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    scrollbar-color: #555 #1a1a1a;
    scrollbar-width: thin;
    overflow-x: hidden;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #1a1a1a; }
::-webkit-scrollbar-thumb { background: #555; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #777; }

h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 600; line-height: 1.3; }

a { text-decoration: none; color: inherit; }

/* --- Header --- */
header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.5rem 5%; border-bottom: 1px solid var(--border-color);
    background: rgba(20, 20, 20, 0.97); backdrop-filter: blur(10px);
    position: fixed; top: 0; left: 0; right: 0; width: 100vw; max-width: 100%; z-index: 1000;
    box-sizing: border-box;
}

.logo {
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 2rem; letter-spacing: 3px; text-transform: uppercase;
    font-family: 'Playfair Display', serif; color: var(--text-main);
    text-decoration: none; line-height: 0.85; white-space: nowrap;
}
.logo:hover { color: var(--text-main); }
.logo img { height: 1.66cap; width: auto; margin-top: 0.13em;}
.logo:hover img { filter: brightness(1.3) drop-shadow(0 0 4px rgba(212,175,55,0.4)); }

.back-link {
    font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px;
    color: var(--text-muted); transition: color 0.2s;
}
.back-link:hover { color: var(--accent); text-decoration: none; }

/* --- Footer --- */
footer {
    border-top: 1px solid var(--border-color);
    padding: 2rem 5%;
    text-align: center;
}
.footer-links {
    display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap;
}
.footer-links a {
    font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px;
    color: var(--text-muted);
}
.footer-links a:hover { color: var(--accent); text-decoration: none; }
.footer-copy { margin-top: 1rem; font-size: 0.78rem; color: var(--text-muted); }

/* ============================================================
   Legal Pages (agb, datenschutz, impressum)
   ============================================================ */

/* --- Page Hero --- */
.page-hero {
    padding: 9rem 5% 4rem;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(180deg, #111 0%, var(--bg-dark) 100%);
}
.page-hero-inner { max-width: 860px; margin: 0 auto; }
.page-hero .eyebrow {
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 3px;
    color: var(--accent); margin-bottom: 1rem;
}
.page-hero h1 { font-size: 2.8rem; margin-bottom: 0.5rem; }
.page-hero .meta { font-size: 0.95rem; color: #bbb; margin-top: 1rem; }

/* --- Notice box --- */
.notice {
    background: var(--panel-bg); border: 1px solid var(--border-color);
    border-left: 3px solid var(--accent);
    padding: 1.2rem 1.5rem; margin: 1.2rem 0;
    font-size: 0.98rem; color: #bbb; border-radius: 2px;
}
.notice strong { color: var(--text-main); }

/* --- Layout --- */
.content-wrapper {
    max-width: 860px;
    margin: 0 auto;
    padding: 4rem 5% 6rem;
}
.content-wrapper.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}
.block-full { grid-column: 1 / -1; }

/* --- TOC --- */
.toc-wrapper {
    max-width: 860px;
    margin: 3rem auto 0;
    padding: 0 5%;
}
.toc {
    background: var(--panel-bg);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--accent);
    padding: 2rem 2.5rem;
    border-radius: 2px;
}
.toc h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 3px;
    color: var(--text-muted); margin-bottom: 1.2rem;
}
.toc ol  { list-style: none; columns: 2; column-gap: 3rem; }
.toc li  { margin-bottom: 0.5rem; break-inside: avoid; }
.toc a   { font-size: 0.95rem; color: #bbb; transition: color 0.2s; display: flex; gap: 0.5rem; align-items: baseline; }
.toc a:hover { color: var(--accent); text-decoration: none; }
.toc .num,
.par-num {
    color: var(--accent);
    font-size: 0.78rem; font-weight: 600;
    flex-shrink: 0; min-width: 2.2rem;
}
.par-num { display: inline-block; width: 2.5rem; }

/* --- Paragraphs --- */
.par-number {
    font-family: 'Montserrat', sans-serif;
}
.par {
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border-color);
    scroll-margin-top: 5rem;
}
.par:last-child    { border-bottom: none; }
.par-title {
    font-size: 1.45rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}
.par p             { font-size: 1.0rem; color: #bbb; margin-bottom: 0.9rem; }
.par p:last-child  { margin-bottom: 0; }
.par a             { color: var(--accent); }
.par h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px;
    color: var(--text-main); margin: 1.8rem 0 0.8rem;
}
.par ul,
.par ol            { margin: 1rem 0; padding: 0; list-style: none; }
.par ul li,
.par ol li {
    font-size: 1.0rem; color: #bbb;
    padding: 0.45rem 0 0.45rem 1.8rem;
    position: relative; border-bottom: 1px solid #1e1e1e;
}
.par ul li:last-child,
.par ol li:last-child  { border-bottom: none; }
.par ul li::before {
    content: '';
    position: absolute; left: 0; top: 9px; width: 14px; height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b8964e' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain; background-repeat: no-repeat;
}
.par ol            { counter-reset: ol-counter; }
.par ol li         { counter-increment: ol-counter; }
.par ol li::before {
    content: counter(ol-counter) ".";
    position: absolute; left: 0; top: 0.45rem;
    color: var(--accent); font-size: 0.78rem; font-weight: 600; line-height: 1.6;
}

/* --- Datenschutz extras --- */
.status-badge {
    display: inline-block;
    font-size: 0.65rem; text-transform: uppercase; letter-spacing: 2px;
    border: 1px solid #444; color: #555;
    padding: 0.15rem 0.6rem; border-radius: 2px;
    margin-left: 0.8rem; vertical-align: middle;
    font-family: 'Montserrat', sans-serif;
}
.address-block {
    background: var(--panel-bg); border: 1px solid var(--border-color);
    padding: 1.5rem 2rem; margin: 1rem 0; border-radius: 2px;
    font-size: 1.0rem; color: #bbb; font-style: normal; line-height: 2;
}

/* --- Impressum blocks --- */
.block {
    background: var(--panel-bg); border: 1px solid var(--border-color);
    padding: 2rem 2.2rem; border-radius: 2px;
    scroll-margin-top: 5rem;
}
.block.highlight   { border-left: 3px solid var(--accent); }
.block-label {
    font-size: 0.7rem; text-transform: uppercase; letter-spacing: 3px;
    color: var(--accent); margin-bottom: 1rem;
}
.block h2 {
    font-size: 1.3rem; margin-bottom: 1.2rem;
    padding-bottom: 0.8rem; border-bottom: 1px solid var(--border-color);
}
.block p,
.block address     { font-size: 1.0rem; color: #bbb; font-style: normal; line-height: 1.9; }
.block p + p       { margin-top: 0.8rem; }
.block a           { color: var(--accent); }
.block a:hover     { color: var(--accent-hover); }
.block.disclaimer p { font-size: 0.95rem; }
.hint-b2b          { margin-top: 0.6rem; font-size: 0.92rem; color: #bbb; }

/* --- Legal responsive --- */
@media (max-width: 640px) {
    .page-hero h1          { font-size: 2rem; }
    .toc ol                { columns: 1; }
    .par-number            { font-size: 1.5rem; }
    .content-wrapper.grid  { grid-template-columns: 1fr; }
    .block-full            { grid-column: 1; }
}

/* ============================================================
   index.html – Landingpage Styles
   ============================================================ */

/* --- Landing Header ---
   Overrides base header: lighter bg, compact padding, flex layout fix  */
header.landing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 5%;
    background: rgba(15, 15, 15, 0.82);
}
header.landing-header .logo { grid-column: unset; }
header.landing-header .nav-links { grid-column: unset; justify-self: unset; }

.nav-links { display: flex; gap: 1.2rem; align-items: center; flex-wrap: nowrap; }
.nav-links a { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; transition: color 0.2s; }
.nav-links a:hover { color: var(--accent); }
.btn-login {
    border: 1px solid var(--accent);
    color: var(--accent) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 2px;
    transition: all 0.25s ease;
}
.btn-login:hover {
    background: linear-gradient(135deg, #a68540 0%, #b8964e 50%, #a68540 100%);
    color: var(--bg-dark) !important;
}

@media (max-width: 780px) {
    header.landing-header { justify-content: space-between; padding: 1rem 4%; width: 100vw; }
    header.landing-header .nav-links { margin-left: auto; }
    header.landing-header .nav-links { display: flex; }
    header.landing-header .nav-links a:not(.btn-login) { display: none; }
    header.landing-header .btn-login { padding: 0.4rem 0.9rem; font-size: 0.75rem; white-space: nowrap; }
    header.landing-header .logo { font-size: 1.1rem; letter-spacing: 1px; }
    header.landing-header .logo img { height: 24px; }
}

/* --- Hero Slideshow ---
   height in rem: skaliert gleichmässig mit Browser-Zoom (wie Text/Padding).
   aspect-ratio + vh würden beim Zoom anders wachsen als rem-basierte Elemente. */
.hero.hero-bg-slide {
    position: relative;
    aspect-ratio: 16/9;
    min-height: 320px;
    background: #0d0d0d;
    overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; opacity: 0; transition: opacity 1.5s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.00) 0%,
        rgba(0,0,0,0.00) 35%,
        rgba(0,0,0,0.50) 62%,
        rgba(0,0,0,0.88) 100%
    );
}
.hero-content {
    position: absolute;
    bottom: 20%; left: 0; right: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 5%;
}
.hero.hero-bg-slide h1 {
    font-size: clamp(2rem, 4.5vw, 4rem);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -1px;
    margin: 0 0 0.6rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.95), 0 4px 20px rgba(0,0,0,0.75), 0 0 48px rgba(0,0,0,0.5);
}
.hero.hero-bg-slide .hero-sub {
    font-size: clamp(0.9rem, 1.6vw, 1.1rem);
    color: rgba(255,255,255,0.85);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    max-width: 560px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
    display: inline-block;
}

/* --- CTA Bar below hero --- */
.hero-cta-bar {
    background: #111;
    border-bottom: 1px solid var(--border-color);
    padding: 2rem 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

/* --- 3-Step Flow --- */
.hero-steps {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0;
    width: 100%;
}
.hero.hero-bg-slide .hero-sub { display: none; }
.hero-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 0.8rem 1.2rem;
    min-width: 130px;
}
.hero-step-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255,255,255,0.85);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0,0,0,0.95), 0 4px 16px rgba(0,0,0,0.7);
}
.hero-step-arrow { font-size: 1.4rem; color: var(--accent); flex-shrink: 0; align-self: center; line-height: 1; position: relative; top: -0.07em; }

/* --- CTA Button --- */
.cta-hint {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.7;
    text-align: center;
    margin-bottom: 0.8rem;
}
.cta-btn {
    background: var(--accent);
    color: #000;
    border: 1.5px solid var(--accent);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    transition: all 0.2s ease;
    display: inline-block;
}
.cta-btn:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: #000;
    transform: translateY(-2px);
}

/* --- Features / USP --- */
.features {
    padding: 3rem 5%;
    background: var(--panel-bg);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}
.section-header p { color: var(--text-muted); font-size: 1.2rem; text-transform: uppercase; letter-spacing: 2px; }

.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 3rem; max-width: 1200px; margin: 0 auto; }
.feature-card {
    background: var(--bg-dark);
    padding: 3rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: transform 0.3s, border-color 0.3s;
}
.feature-card:hover { transform: translateY(-5px); border-color: var(--accent); }
.feature-card h3 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--text-main); font-family: 'Montserrat', sans-serif; font-weight: 600; }
.feature-card p { color: var(--text-muted); font-size: 1.05rem; }

/* --- Use Cases --- */
.use-cases { padding: 3rem 5%; max-width: 1200px; margin: 0 auto; }
.case-row { display: flex; align-items: center; gap: 4rem; margin-bottom: 6rem; }
.case-row:nth-child(even) { flex-direction: row-reverse; }
.case-text { flex: 1; }
.case-text h3 { font-size: 2.2rem; margin-bottom: 1.5rem; font-family: 'Montserrat', sans-serif; font-weight: 600; }
.case-text p { color: var(--text-muted); font-size: 1.2rem; margin-bottom: 1.5rem; }
.case-text ul { list-style: none; color: var(--text-muted); }
.case-text li {
    margin-bottom: 0.5rem;
    padding-left: 1.8rem;
    position: relative;
}
.case-text li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b8964e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}
.case-img {
    flex: 1;
    background: #111;
    border: 1px solid var(--border-color);
    aspect-ratio: 4/3;
    min-height: 18rem;     /* verhindert, dass Bilder beim Zoom kleiner wirken als Text */
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    overflow: hidden;
    position: relative;
}

/* --- Pricing --- */
.pricing { padding: 3rem 5%; background: var(--panel-bg); border-top: 1px solid var(--border-color); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1.5rem; max-width: 1200px; margin: 0 auto; }
.price-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
}
.price-card.popular { border-color: var(--accent); position: relative; }
.price-card.popular::before {
    content: 'Bestseller';
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: var(--bg-dark);
    font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
    padding: 0.2rem 1rem; border-radius: 2px;
}
.price-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; font-family: 'Montserrat', sans-serif; font-weight: 600; }
.price-card .price { font-size: 3rem; font-family: 'Montserrat', sans-serif; font-weight: 300; margin: 1.5rem 0 0.3rem; white-space: nowrap; }
.price-sub { font-size: 1rem; color: var(--text-muted); margin-bottom: 1.2rem; }
.price-card ul { list-style: none; margin-bottom: 2.5rem; flex: 1; text-align: left; padding: 0 1rem; }
.price-card li { padding: 0.8rem 0; border-bottom: 1px solid var(--border-color); font-size: 1.0rem; color: var(--text-muted); }
.price-card li:last-child { border: none; }
.price-btn {
    background: transparent;
    border: 1px solid var(--text-main);
    color: var(--text-main);
    padding: 1rem;
    width: 100%;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.2s;
    cursor: pointer;
}
.price-btn:hover {
    background: linear-gradient(135deg, #a68540 0%, #b8964e 50%, #a68540 100%);
    border-color: #b8964e;
    color: var(--bg-dark);
}
.price-card.popular .price-btn {
    background: linear-gradient(135deg, #a68540 0%, #b8964e 50%, #a68540 100%);
    border-color: #b8964e;
    color: var(--bg-dark);
}
.price-card.popular .price-btn:hover {
    background: linear-gradient(135deg, #b8921e 0%, #a68540 50%, #b8921e 100%);
    border-color: #b8960f;
}

/* --- Showcase Grid --- */
.showcase-cover { width: 100%; height: 100%; object-fit: cover; display: block; }
.feature-icon { font-size: 2.5rem; margin-bottom: 1.5rem; display: inline-block; color: var(--accent); }
.feature-card-legal { background: var(--panel-bg); }
#legal { background: var(--bg-dark); border-top: none; }
.case-img-marketing { background: #0d0d0d; }
.case-img-schule { background: #0a0d10; }
.showcase { padding: 0; background: var(--bg-dark); }
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}
.showcase-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}
.showcase-item:first-child { aspect-ratio: 16/9; grid-column: 1 / -1; }
.showcase-blur {
    position: absolute; inset: 0;
    filter: blur(32px); transform: scale(1.15);
}
.showcase-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 2rem 1.2rem 0.75rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.65));
    display: flex; flex-direction: column; gap: 0.3rem;
}
.sl-title { display: none; }
.sl-prompt {
    font-size: 0.6rem; letter-spacing: 0.5px; line-height: 1.4;
    color: rgba(255,255,255,0.5);
}
.showcase-item:hover .showcase-blur { filter: blur(28px); transition: filter 0.3s; }

@media (max-width: 900px) {
    .showcase-grid { grid-template-columns: repeat(2, 1fr); }
    .showcase-item:first-child { grid-column: 1 / -1; }
}

/* --- Hero Mobile --- */
@media (max-width: 700px) {
    .hero.hero-bg-slide {
        height: 56.25vw;    /* 16:9 proportional auf kleinen Screens */
        min-height: 180px;
        max-height: none;
        margin-top: 55px;
        padding-top: 0;
        overflow: hidden;
    }
    .hero-bg { top: 0; height: 100%; position: absolute; }
    .hero-overlay { top: 0; height: 100%; position: absolute; }
    .hero-content { display: flex; bottom:0; }
    .hero.hero-bg-slide h1 { font-size: clamp(1.4rem, 6vw, 10rem); max-width: 60vw; }
    .hero.hero-bg-slide .hero-sub { display: none; }
    .hero-cta-bar { gap: 0.6rem; padding: 0.75rem 5% 0.5rem; }
    .hero-step { flex-direction: row; align-items: center; padding: 0.2rem 0.3rem; gap: 0.2rem; min-width: unset; background: none; border: none; }
    .hero-step-label { font-size: 0.68rem; color: rgba(255,255,255,0.9); white-space: normal; }
    .hero-step-arrow { display: inline; font-size: 0.75rem; color: var(--accent); margin: 0 0.15rem; }
    .cta-btn { font-size: 0.9rem; padding: 0.8rem 1.75rem; letter-spacing: 0.5px; }
}

/* --- General Mobile --- */
@media (max-width: 600px) {
    .section-header h2 { font-size: 2.0rem; }
    .case-text h3 { font-size: 1.6rem; }
    .showcase { padding-bottom: 3rem; }
    .showcase-grid { grid-template-columns: 1fr; }
    .showcase-item:first-child { grid-column: 1; aspect-ratio: 4/3; }
    .features { padding: 2rem 5%; }
    .feature-card { padding: 1.75rem; }
    .grid-3 { gap: 1.5rem; }
    .use-cases { padding: 2rem 5%; }
    .case-row { margin-bottom: 2.5rem; }
    .pricing { padding: 2rem 5%; }
    .cta-section { padding: 3rem 5% !important; }
    footer { padding: 2rem 5%; }
    .case-row, .case-row:nth-child(even) { flex-direction: column; }
    .nav-links { display: none; }
    header.landing-header { justify-content: space-between; }
    header.landing-header .nav-links { display: flex; }
    header.landing-header .nav-links a:not(.btn-login) { display: none; }
}

/* --- FAQ --- */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-color); padding: 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 {
    font-size: 1.35rem; color: var(--text-main);
    font-family: 'Montserrat', sans-serif; font-weight: 600;
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    gap: 1rem; padding: 1.5rem 0; margin: 0;
    user-select: none;
}
.faq-item h3::after {
    content: '+';
    color: var(--accent); font-size: 1.6rem; font-weight: 300;
    flex-shrink: 0; line-height: 1; font-family: 'Montserrat', sans-serif;
}
.faq-item.open h3::after { content: '−'; }
.faq-answer { display: none; padding-bottom: 1.5rem; }
.faq-item.open .faq-answer { display: block; }
.faq-item p { color: var(--text-muted); font-size: 1.1rem; line-height: 1.7; margin: 0; }

/* --- Prompt Examples --- */
.prompt-examples { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.prompt-chip { font-size: 0.78rem; color: var(--text-muted); border: 1px solid var(--border-color); border-radius: 2px; padding: 0.3rem 0.75rem; font-style: italic; }

/* --- Trust Bar --- */
.trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    padding: 1.25rem 5%;
    background: var(--panel-bg);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.6rem 1.1rem;
    background: rgba(184, 150, 78, 0.05);
    border: 1px solid rgba(184, 150, 78, 0.15);
    border-radius: 4px;
    transition: border-color 0.2s;
}
.trust-item:hover { border-color: rgba(184, 150, 78, 0.35); }
.trust-item svg { flex-shrink: 0; width: 28px; height: 28px; }
.trust-text { display: flex; flex-direction: column; gap: 0.1rem; }
.trust-text strong { font-size: 0.82rem; font-weight: 600; color: var(--text-main); letter-spacing: 0.3px; }
.trust-text span { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.2px; }
.trust-sep { display: none; }
@media (max-width: 900px) {
    .trust-bar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
        gap: 0.4rem;
        padding: 0.4rem 4% 0.75rem;
    }
    .trust-item {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 0.45rem 0.4rem;
        gap: 0.25rem;
    }
    .trust-item svg { width: 18px; height: 18px; flex-shrink: 0; }
    .trust-text strong { font-size: 0.72rem; }
    .trust-text span { font-size: 0.65rem; }
}

/* ── Consent Banner ── */
#ms-consent-banner {
    position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 9999; display: none;
    align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
    background: var(--panel-bg); border-top: 1px solid var(--border-color);
    padding: 0.85rem 5%;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.45);
    font-size: 0.82rem; color: var(--text-muted);
}
#ms-consent-banner.visible { display: flex; }
.ms-consent-btns { display: flex; gap: 0.6rem; flex-shrink: 0; }
.ms-consent-btns button {
    padding: 0.45rem 1.1rem; font-size: 0.78rem; border-radius: 2px;
    cursor: pointer; font-family: 'Montserrat', sans-serif; font-weight: 600;
    border: 1px solid var(--border-color); background: transparent;
    color: var(--text-muted); white-space: nowrap; transition: all 0.2s;
}
.ms-consent-btns button:hover { border-color: var(--text-muted); color: var(--text-main); }
.ms-consent-btns .ms-consent-accept { background: var(--accent); color: #000; border-color: var(--accent); }
.ms-consent-btns .ms-consent-accept:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
@media (max-width: 600px) {
    #ms-consent-banner { gap: 0.75rem; }
    .ms-consent-btns { width: 100%; }
    .ms-consent-btns button { flex: 1; }
}

/* ── Branchen Tab-Box ── */
.branchen-tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 2.5rem; max-width: 1200px; margin-left: auto; margin-right: auto; }
.branche-tab {
    padding: 1.1rem 2.5rem; border-radius: 2rem; border: 1.5px solid var(--border-color);
    background: transparent; color: var(--text-muted); cursor: pointer;
    font-family: 'Montserrat', sans-serif; font-size: 1.15rem; font-weight: 600;
    letter-spacing: 0.04em; transition: all 0.18s;
}
.branche-tab:hover { border-color: var(--accent); color: var(--accent); }
.branche-tab.active { background: var(--accent); border-color: var(--accent); color: #1a1400; box-shadow: 0 2px 12px rgba(212,175,55,0.25); }
.branche-panel { display: none; }
.branche-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; max-width: 1200px; margin-left: auto; margin-right: auto; }
.branche-text h3 { font-family: 'Montserrat', sans-serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 1rem; color: var(--text-main); }
.branche-text p { color: var(--text-muted); line-height: 1.75; margin-bottom: 1.25rem; }
.branche-prompt {
    background: var(--panel-bg); border: 1px solid var(--border-color); border-radius: 4px;
    padding: 0.9rem 1.1rem; font-size: 0.82rem; color: var(--text-muted); line-height: 1.6;
}
.branche-prompt strong { color: var(--accent); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; display: block; margin-bottom: 0.35rem; }
.branche-img img { width: 100%; border-radius: 0; aspect-ratio: 4/3; object-fit: cover; display: block; }
.branche-cta { display: inline-block; margin-top: 1.25rem; padding: 0.6rem 1.4rem; border-radius: 2px; background: var(--accent); color: #1a1400; font-family: 'Montserrat', sans-serif; font-size: 0.82rem; font-weight: 700; text-decoration: none; letter-spacing: 0.04em; }
@media (max-width: 700px) {
    .branche-tab { padding: 0.6rem 1rem; font-size: 0.82rem; }
    .branchen-tabs { gap: 0.4rem; }
    .branche-panel.active { grid-template-columns: 1fr; }
    .branche-img { order: -1; }
}
/* ── Enterprise Bar ── */
.enterprise-bar {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, rgba(180,140,60,0.07) 0%, var(--panel-bg) 60%);
    border: 1px solid var(--accent);
    border-radius: 2px;
}
.enterprise-bar-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.4rem;
    padding-bottom: 1.4rem;
    border-bottom: 1px solid rgba(180,140,60,0.25);
}
.enterprise-bar-heading { display: flex; flex-direction: column; gap: 0.3rem; }
.enterprise-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
}
.enterprise-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-main);
}
.enterprise-bar-price { text-align: right; flex-shrink: 0; }
.enterprise-price-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 0.2rem;
}
.enterprise-price-hint {
    font-size: 0.82rem;
    color: var(--text-muted);
}
.enterprise-bar-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.enterprise-features-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
}
.enterprise-features-inline span {
    font-size: 0.88rem;
    color: #bbb;
    position: relative;
    padding-left: 0.9rem;
}
.enterprise-features-inline span::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 0.75rem;
}
.enterprise-btn { white-space: nowrap; flex-shrink: 0; width: auto !important; padding: 0.9rem 2.5rem; }
@media (max-width: 700px) {
    .enterprise-bar-top { flex-direction: column; align-items: flex-start; }
    .enterprise-bar-price { text-align: left; }
    .enterprise-bar-bottom { flex-direction: column; align-items: flex-start; }
}