/* =========================================================
   JTL KI out of the box - Theme Styles
   Farben & Abstaende sind als CSS-Variablen zentral steuerbar.
   ========================================================= */

:root {
	/* Marke – Produkt-Identitaet "KI out of the box" (Indigo/Violett -> Cyan) */
	--brand:        #6366f1;
	--brand-dark:   #4f46e5;
	--brand-tint:   #eef2ff;
	--accent:       #06b6d4;
	--accent-2:     #22d3ee;
	--brand-rgb:    99, 102, 241;
	--accent-rgb:   6, 182, 212;

	/* Neutrale Toene */
	--ink:          #0f172a;
	--ink-soft:     #334155;
	--muted:        #64748b;
	--line:         #e2e8f0;
	--bg:           #ffffff;
	--bg-alt:       #f8fafc;
	--dark:         #0b1224;
	--dark-soft:    #111a33;

	/* Layout */
	--maxw:         1120px;
	--radius:       16px;
	--radius-sm:    10px;
	--shadow:       0 10px 30px -12px rgba(15, 23, 42, .18);
	--shadow-lg:    0 30px 60px -20px rgba(15, 23, 42, .35);
	--gap:          clamp(1rem, 2.5vw, 2rem);
}

/* --------- Reset / Base --------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: var(--ink);
	background: var(--bg);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; }
h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 .5em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1rem; }
.sr-only {
	position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2rem); }

/* --------- Buttons --------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center;
	gap: .5rem; font-weight: 600; font-size: .98rem;
	padding: .8rem 1.4rem; border-radius: 999px; border: 2px solid transparent;
	cursor: pointer; transition: transform .12s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
	white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 12px 24px -10px rgba(var(--brand-rgb),.7); }
.btn-primary:hover { background: var(--brand-dark); }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.5); }
.btn-ghost:hover { background: rgba(255,255,255,.22); }
.btn-outline { background: transparent; color: var(--brand); border-color: var(--brand); }
.btn-outline:hover { background: var(--brand); color: #fff; }
.btn-lg { padding: 1rem 1.8rem; font-size: 1.05rem; }
.btn-sm { padding: .5rem 1rem; font-size: .9rem; }
.btn-block { display: flex; width: 100%; }

/* --------- Header --------- */
.site-header {
	position: sticky; top: 0; z-index: 50;
	background: rgba(255,255,255,.85);
	backdrop-filter: saturate(180%) blur(12px);
	border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: .55rem; color: var(--ink); font-weight: 800; }
.brand-mark { color: var(--brand); font-size: 1.2rem; }
.brand-svg { display: block; flex: none; }
.brand-text { font-size: 1.05rem; letter-spacing: -0.01em; }
.brand img { max-height: 40px; width: auto; }

.site-nav { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; gap: 1.4rem; list-style: none; margin: 0; padding: 0; }
.nav-list a { color: var(--ink-soft); font-weight: 500; font-size: .96rem; }
.nav-list a:hover { color: var(--brand); }
.nav-cta a { color: var(--brand); }
.nav-toggle { display: none; }

/* --------- Hero --------- */
.hero {
	position: relative; overflow: hidden;
	background:
		radial-gradient(1200px 500px at 15% -10%, rgba(var(--brand-rgb),.14), transparent 60%),
		radial-gradient(900px 500px at 100% 0%, rgba(var(--accent-rgb),.12), transparent 55%),
		var(--bg);
	padding: clamp(3rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
}
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.eyebrow {
	display: inline-block; font-size: .82rem; font-weight: 700; letter-spacing: .02em;
	color: var(--brand-dark); background: var(--brand-tint);
	padding: .4rem .8rem; border-radius: 999px; margin-bottom: 1.1rem;
}
.hero-title { font-size: clamp(2.1rem, 5.2vw, 3.6rem); font-weight: 800; }
.grad { background: linear-gradient(100deg, var(--brand), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--ink-soft); max-width: 34rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.6rem 0 1.2rem; }
.hero-cta.center { justify-content: center; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.2rem; list-style: none; padding: 0; margin: 0; color: var(--muted); font-size: .92rem; font-weight: 500; }

/* Hero-Visual: Chat-Card */
.hero-visual { display: flex; justify-content: center; }
.chat-card {
	width: 100%; max-width: 420px; background: #fff; border: 1px solid var(--line);
	border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden;
	transform: rotate(.5deg);
}
.chat-head { display: flex; align-items: center; gap: .4rem; padding: .8rem 1rem; background: var(--dark); }
.chat-head .dot { width: 10px; height: 10px; border-radius: 50%; background: #64748b; }
.chat-head .dot:nth-child(1){ background:#ef4444; } .chat-head .dot:nth-child(2){ background:#f59e0b; } .chat-head .dot:nth-child(3){ background:#22c55e; }
.chat-title { color: #cbd5e1; font-size: .8rem; margin-left: .5rem; }
.chat-body { padding: 1rem; display: flex; flex-direction: column; gap: .7rem; background: var(--bg-alt); }
.bubble { padding: .7rem .9rem; border-radius: 14px; font-size: .92rem; max-width: 85%; }
.bubble.user { align-self: flex-end; background: var(--brand); color: #fff; border-bottom-right-radius: 4px; }
.bubble.ai { align-self: flex-start; background: #fff; border: 1px solid var(--line); color: var(--ink); border-bottom-left-radius: 4px; }
.bubble.typing { display: inline-flex; gap: 4px; }
.bubble.typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--muted); animation: blink 1.2s infinite; }
.bubble.typing span:nth-child(2){ animation-delay:.2s; } .bubble.typing span:nth-child(3){ animation-delay:.4s; }
@keyframes blink { 0%,60%,100%{ opacity:.25; } 30%{ opacity:1; } }

/* --------- Strip --------- */
.strip { background: var(--dark); color: #cbd5e1; }
.strip-inner { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; justify-content: center; text-align: center; padding: 1rem 0; font-size: .98rem; }
.strip strong { color: #fff; }

/* --------- Sections --------- */
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section:nth-of-type(even) { background: var(--bg-alt); }
.section-head { margin-bottom: 2.5rem; }
.section-head.center { text-align: center; max-width: 46rem; margin-left: auto; margin-right: auto; }
.kicker, .eyebrow.kicker { display: inline-block; font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--brand); margin-bottom: .6rem; }
.section-lead { font-size: 1.1rem; color: var(--ink-soft); }

/* Grids */
.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* Problem */
.pain { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow); }
.pain-ico { font-size: 1.8rem; margin-bottom: .6rem; }
.pain h3 { margin-bottom: .3rem; }
.pain p { color: var(--muted); margin: 0; }

/* Loesung */
.solution-split { align-items: center; }
.check-list { list-style: none; padding: 0; margin: 0 0 1.6rem; display: grid; gap: .9rem; }
.check-list li { position: relative; padding-left: 2rem; color: var(--ink-soft); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 1.4rem; height: 1.4rem; background: var(--brand-tint); color: var(--brand-dark); border-radius: 50%; display: grid; place-items: center; font-size: .8rem; font-weight: 700; }
.check-list strong { color: var(--ink); }
.solution-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.mini-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.2rem 1rem; font-weight: 600; box-shadow: var(--shadow); display: flex; align-items: center; gap: .6rem; }
.mini-ico { font-size: 1.4rem; }

/* Features */
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow); transition: transform .15s ease, box-shadow .2s ease; }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-ico { width: 3rem; height: 3rem; display: grid; place-items: center; font-size: 1.5rem; background: var(--brand-tint); border-radius: 12px; margin-bottom: .9rem; }
.feature h3 { margin-bottom: .3rem; }
.feature p { color: var(--muted); margin: 0; }

/* Ablauf */
.steps { list-style: none; counter-reset: step; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.6rem 1.6rem; box-shadow: var(--shadow); }
.step-num { position: absolute; top: -1.1rem; left: 1.6rem; width: 2.4rem; height: 2.4rem; background: linear-gradient(135deg, var(--brand), var(--accent)); color: #fff; border-radius: 50%; display: grid; place-items: center; font-weight: 800; box-shadow: 0 8px 16px -6px rgba(var(--brand-rgb),.7); }
.step h3 { margin: .4rem 0 .3rem; }
.step p { color: var(--muted); margin: 0; }

/* Pricing – zwei Pakete nebeneinander */
.price-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--gap); max-width: 860px; margin: 0 auto; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.price-card.featured { border-color: var(--brand); box-shadow: var(--shadow-lg); }
.price-badge { position: absolute; top: 1rem; right: 1rem; background: linear-gradient(135deg, var(--brand), var(--accent)); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: .3rem .7rem; border-radius: 999px; }
.price-top { padding: 2rem 1.6rem 1.4rem; background: linear-gradient(180deg, var(--brand-tint), #fff); }
.price-card.featured .price-top { background: linear-gradient(180deg, #eef2ff, #fff); }
.price-top h3 { margin-bottom: .6rem; font-size: 1.3rem; }
.price-amount { font-size: 2.4rem; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.price-amount small { font-size: .95rem; font-weight: 600; color: var(--muted); margin-left: .3rem; }
.price-sub { color: var(--ink-soft); font-size: .95rem; margin: .4rem 0 0; }
.price-list { list-style: none; padding: 1.4rem 1.6rem; margin: 0; display: grid; gap: .7rem; flex: 1; }
.price-list li { color: var(--ink-soft); padding-left: 1.6rem; position: relative; font-size: .96rem; }
.price-list li::before { content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 700; }
.price-list li.muted { color: var(--muted); }
.price-list li.muted::before { content: "–"; color: var(--muted); }
.price-cta { padding: 0 1.6rem 1.6rem; display: grid; gap: .6rem; }
.price-hint { font-size: .86rem; color: var(--muted); text-align: center; margin: .3rem auto 0; max-width: 40rem; }
.price-foot-note { text-align: center; color: var(--muted); font-size: .9rem; margin: 1.4rem 0 0; }

/* Demo */
.demo-embed { max-width: 760px; margin: 0 auto; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.demo-embed iframe { width: 100%; min-height: 640px; border: 0; display: block; }
.demo-fallback { max-width: 560px; margin: 0 auto; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2.2rem; box-shadow: var(--shadow); }
.demo-alt { color: var(--muted); font-size: .92rem; margin: 1rem 0 0; }

/* FAQ */
.faq-list { max-width: 720px; margin: 0 auto; display: grid; gap: .8rem; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 0 1.2rem; box-shadow: var(--shadow); }
.faq-item summary { cursor: pointer; font-weight: 600; padding: 1.1rem 0; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--brand); font-size: 1.4rem; font-weight: 400; margin-left: 1rem; transition: transform .2s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--muted); margin: 0 0 1.1rem; }

/* Final CTA */
.final-cta { background: linear-gradient(120deg, var(--dark), var(--dark-soft)); color: #fff; }
.final-inner { text-align: center; max-width: 44rem; margin: 0 auto; }
.final-cta h2 { color: #fff; }
.final-cta p { color: #cbd5e1; font-size: 1.1rem; }

/* --------- Footer --------- */
.site-footer { background: var(--dark); color: #94a3b8; padding: 3rem 0 1.5rem; }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand-top { display: inline-flex; align-items: center; gap: .5rem; }
.footer-brand .brand-text { color: #fff; font-weight: 800; }
.footer-tag { max-width: 22rem; margin: .6rem 0 0; font-size: .92rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.2rem; align-items: center; }
.footer-links a { color: #cbd5e1; font-size: .95rem; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 1.2rem; font-size: .85rem; }
.footer-legal a { color: #94a3b8; }

/* Basis: Claude + Make */
.basis-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: var(--gap); align-items: start; }
.basis-points { display: grid; gap: 1.3rem; }
.basis-point { padding-left: 3.2rem; position: relative; }
.basis-point .bp-ico { position: absolute; left: 0; top: 0; width: 2.4rem; height: 2.4rem; display: grid; place-items: center; font-size: 1.3rem; background: var(--brand-tint); border-radius: 12px; }
.basis-point h3 { margin-bottom: .25rem; }
.basis-point p { color: var(--muted); margin: 0; }
.req-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.6rem; }
.req-card h3 { margin-bottom: 1rem; }
.req-badges { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.req-badge { display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; font-size: .92rem; padding: .5rem .9rem; border: 1px solid var(--line); border-radius: 999px; background: var(--bg-alt); }
.req-list { list-style: none; padding: 0; margin: 0 0 1.2rem; display: grid; gap: .7rem; }
.req-list li { padding-left: 1.8rem; position: relative; color: var(--ink-soft); }
.req-list li::before { content: "✓"; position: absolute; left: 0; top: .05rem; width: 1.3rem; height: 1.3rem; background: var(--brand-tint); color: var(--brand-dark); border-radius: 50%; display: grid; place-items: center; font-size: .72rem; font-weight: 700; }
.link-btn { background: none; border: 0; color: var(--brand); font: inherit; font-weight: 600; cursor: pointer; padding: 0; text-decoration: underline; text-underline-offset: 3px; }
.link-btn:hover { color: var(--brand-dark); }
.req-note { font-size: .86rem; color: var(--muted); margin: 1rem 0 0; }

/* Ausbau: Stundenpakete */
.hours-wrap { max-width: 640px; margin: 0 auto; overflow-x: auto; }
.hours-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.hours-table th, .hours-table td { padding: .95rem 1.4rem; text-align: left; border-bottom: 1px solid var(--line); }
.hours-table thead th { background: var(--brand-tint); color: var(--brand-dark); font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; }
.hours-table tbody tr:last-child td { border-bottom: none; }
.hours-table tbody tr:hover { background: var(--bg-alt); }
.hours-table .price-h, .hours-table td.price { text-align: right; white-space: nowrap; }
.hours-table td.price { font-weight: 800; color: var(--ink); }
.hours-table td.price small { font-weight: 600; color: var(--muted); }
.hours-note { text-align: center; color: var(--muted); font-size: .9rem; margin: 1.2rem 0 0; }
.hours-cta { text-align: center; margin-top: 1.6rem; }

/* Modal */
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 1rem; }
.modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(11,18,36,.6); }
.modal-card { position: relative; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); max-width: 580px; width: 100%; max-height: 86vh; overflow-y: auto; padding: 2rem clamp(1.2rem, 4vw, 2.2rem); }
.modal-card h3 { font-size: 1.4rem; padding-right: 2.4rem; margin-bottom: .3rem; }
.modal-sub { color: var(--muted); margin: 0 0 .4rem; }
.modal-close { position: absolute; top: 1rem; right: 1rem; width: 2.2rem; height: 2.2rem; border-radius: 50%; border: 1px solid var(--line); background: #fff; font-size: 1.2rem; line-height: 1; cursor: pointer; color: var(--muted); }
.modal-close:hover { background: var(--bg-alt); color: var(--ink); }
.modal-list { list-style: none; padding: 0; margin: 1.2rem 0 0; display: grid; gap: 1rem; }
.modal-list li { padding-left: 2rem; position: relative; color: var(--ink-soft); }
.modal-list li::before { content: "✓"; position: absolute; left: 0; top: .05rem; width: 1.4rem; height: 1.4rem; background: var(--brand-tint); color: var(--brand-dark); border-radius: 50%; display: grid; place-items: center; font-size: .78rem; font-weight: 700; }
.modal-list strong { color: var(--ink); display: block; margin-bottom: .1rem; }
.modal-foot { margin: 1.5rem 0 0; padding-top: 1rem; border-top: 1px solid var(--line); font-size: .86rem; color: var(--muted); }
body.modal-open { overflow: hidden; }

/* Integrations-Marquee (rotierende Logos) */
.logos { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.logos + .logos { margin-top: 1rem; }
.logos-track { display: flex; gap: 1rem; width: max-content; animation: marquee 46s linear infinite; }
.logos-rev .logos-track { animation-direction: reverse; animation-duration: 54s; }
.logos:hover .logos-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.logo-chip { display: inline-flex; align-items: center; gap: .6rem; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: .6rem 1.1rem; box-shadow: var(--shadow); white-space: nowrap; font-weight: 600; color: var(--ink); }
.logo-dot { width: 1.5rem; height: 1.5rem; border-radius: 6px; display: grid; place-items: center; color: #fff; font-size: .8rem; font-weight: 800; flex: none; }
.logos-note { text-align: center; color: var(--muted); font-size: .92rem; margin: 1.6rem 0 0; }

/* Prompts */
.prompts-claim { display: inline-flex; align-items: baseline; gap: .5rem; margin: 0 auto 1.4rem; }
.prompts-claim b { font-size: clamp(2.2rem, 5vw, 3rem); color: var(--brand); letter-spacing: -0.02em; }
.prompt-filters { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin: 0 auto 2rem; max-width: 940px; }
.filter-chip { font: inherit; font-size: .86rem; font-weight: 600; color: var(--ink-soft); background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: .45rem .9rem; cursor: pointer; transition: background .15s ease, color .15s ease, border-color .15s ease; }
.filter-chip:hover { border-color: var(--brand); color: var(--brand); }
.filter-chip.active { background: var(--brand); border-color: var(--brand); color: #fff; }
.prompt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.prompt-card[hidden] { display: none; }
.prompt-card { text-align: left; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.3rem; cursor: pointer; font: inherit; color: inherit; display: flex; flex-direction: column; gap: .7rem; transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease; }
.prompt-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--brand); }
.prompt-tags { display: flex; align-items: center; gap: .5rem; }
.prompt-cat { font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--brand-dark); background: var(--brand-tint); padding: .25rem .6rem; border-radius: 999px; }
.tag-new { font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: #fff; background: linear-gradient(135deg, #f59e0b, #ef4444); padding: .22rem .55rem; border-radius: 999px; }
.prompt-q { font-weight: 600; color: var(--ink); line-height: 1.4; flex: 1; }
.prompt-open { font-size: .85rem; font-weight: 600; color: var(--brand); }
.prompts-more { text-align: center; margin: 2rem 0 0; }
.prompts-more .btn { margin-top: .4rem; }

/* Coming soon */
.coming-soon { max-width: 820px; margin: 2.4rem auto 0; background: var(--bg-alt); border: 1px dashed var(--line); border-radius: var(--radius); padding: 1.6rem 1.8rem; }
.coming-soon h3 { margin-bottom: 1rem; display: flex; align-items: center; gap: .6rem; }
.coming-soon .cs-badge { font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: var(--brand-dark); background: #fff; border: 1px solid var(--line); padding: .22rem .55rem; border-radius: 999px; }
.cs-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: .6rem 1.4rem; }
.cs-list li { position: relative; padding-left: 1.5rem; color: var(--ink-soft); }
.cs-list li::before { content: "⏳"; position: absolute; left: 0; font-size: .85rem; }

/* Prompt-Modal Zusatz */
.prompt-answer { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1rem 1.1rem; margin: 1rem 0 0; color: var(--ink-soft); white-space: pre-line; }
.prompt-answer-label, .prompt-sources-label { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin: 1.2rem 0 .4rem; }
.prompt-sources { display: flex; flex-wrap: wrap; gap: .5rem; }
.src-tag { font-size: .82rem; font-weight: 600; color: var(--ink-soft); background: var(--brand-tint); border-radius: 999px; padding: .3rem .7rem; }

/* Preisrechner */
.calc { max-width: 640px; margin: 2rem auto 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.8rem clamp(1.2rem, 4vw, 2rem); }
.calc-top { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: .5rem; margin-bottom: 1.2rem; }
.calc-hours { font-weight: 600; color: var(--ink-soft); }
.calc-hours b { color: var(--ink); font-size: 1.15rem; }
.calc-range { width: 100%; -webkit-appearance: none; appearance: none; height: 8px; border-radius: 999px; background: linear-gradient(90deg, var(--brand), var(--accent)); outline: none; }
.calc-range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 26px; height: 26px; border-radius: 50%; background: #fff; border: 3px solid var(--brand); box-shadow: var(--shadow); cursor: pointer; }
.calc-range::-moz-range-thumb { width: 26px; height: 26px; border-radius: 50%; background: #fff; border: 3px solid var(--brand); box-shadow: var(--shadow); cursor: pointer; }
.calc-scale { display: flex; justify-content: space-between; font-size: .78rem; color: var(--muted); margin-top: .5rem; }
.calc-result { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.6rem; text-align: center; }
.calc-cell { background: var(--bg-alt); border-radius: var(--radius-sm); padding: 1rem .6rem; }
.calc-cell .cc-label { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.calc-cell .cc-value { font-size: 1.5rem; font-weight: 800; color: var(--ink); margin-top: .2rem; }
.calc-cell.total .cc-value { color: var(--brand); }
.calc-note { text-align: center; color: var(--muted); font-size: .86rem; margin: 1.2rem 0 0; }

/* Subpage-Hero (kompakt) */
.page-hero { background: radial-gradient(900px 400px at 20% -20%, rgba(var(--brand-rgb),.14), transparent 60%), var(--bg); padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(1.5rem, 4vw, 2.5rem); border-bottom: 1px solid var(--line); }
.page-hero .eyebrow { margin-bottom: .8rem; }
.page-hero h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); font-weight: 800; margin-bottom: .6rem; }
.page-hero p { font-size: 1.1rem; color: var(--ink-soft); max-width: 42rem; }
.back-link { display: inline-flex; align-items: center; gap: .35rem; color: var(--muted); font-weight: 600; font-size: .9rem; margin-bottom: 1rem; }
.back-link:hover { color: var(--brand); }

/* Video-Platzhalter (16:9) */
.video-ph { position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; background: linear-gradient(135deg, var(--dark), var(--dark-soft)); display: grid; place-items: center; box-shadow: var(--shadow); }
.video-ph::after { content: attr(data-label); position: absolute; bottom: .8rem; left: 1rem; right: 1rem; color: rgba(255,255,255,.7); font-size: .82rem; font-weight: 600; }
.video-ph .play { width: 4rem; height: 4rem; border-radius: 50%; background: rgba(255,255,255,.16); border: 2px solid rgba(255,255,255,.55); display: grid; place-items: center; transition: transform .15s ease, background .2s ease; }
.video-ph:hover .play { transform: scale(1.08); background: rgba(255,255,255,.26); }
.video-ph .play::before { content: ""; border-style: solid; border-width: .7rem 0 .7rem 1.15rem; border-color: transparent transparent transparent #fff; margin-left: .25rem; }
.video-ph iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Testimonials */
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }
.testi-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; display: flex; flex-direction: column; }
.testi-body { padding: 1.5rem 1.6rem 1.6rem; display: flex; flex-direction: column; gap: 1rem; flex: 1; }
.testi-quote { font-size: 1.1rem; line-height: 1.5; color: var(--ink); font-weight: 500; }
.testi-quote::before { content: "\201C"; color: var(--brand); font-size: 2rem; font-weight: 800; line-height: 0; vertical-align: -.35em; margin-right: .15rem; }
.testi-meta { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: auto; }
.testi-author { font-weight: 700; }
.testi-author span { display: block; font-weight: 500; color: var(--muted); font-size: .9rem; }
.testi-logo { font-weight: 800; color: var(--brand-dark); }
.testi-link { font-weight: 600; font-size: .92rem; white-space: nowrap; }

/* Setup-Leitfaden – Schritte mit Video */
.setup-list { display: grid; gap: 1.4rem; counter-reset: setup; max-width: 900px; margin: 0 auto; }
.setup-step { display: grid; grid-template-columns: 3.6rem 1fr; gap: 1.2rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.4rem 1.6rem; align-items: start; }
.setup-num { width: 3rem; height: 3rem; border-radius: 50%; background: linear-gradient(135deg, var(--brand), var(--accent)); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 1.2rem; }
.setup-step h3 { margin-bottom: .3rem; }
.setup-step p { color: var(--muted); margin: 0 0 1rem; }
.setup-video { max-width: 460px; }
.setup-step .video-ph { aspect-ratio: 16/9; }
.setup-tag { display: inline-block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--brand-dark); background: var(--brand-tint); padding: .2rem .55rem; border-radius: 999px; margin-left: .5rem; vertical-align: middle; }

/* Empfehlung / Partner */
.reward-band { background: linear-gradient(120deg, var(--brand), var(--accent)); color: #fff; border-radius: var(--radius); padding: clamp(1.8rem, 4vw, 2.6rem); text-align: center; max-width: 760px; margin: 0 auto; box-shadow: var(--shadow-lg); }
.reward-band .reward-amount { font-size: clamp(2.4rem, 6vw, 3.4rem); font-weight: 800; letter-spacing: -0.02em; }
.reward-band p { color: rgba(255,255,255,.9); margin: .4rem 0 0; }
.reward-band .btn { margin-top: 1.4rem; }
.reward-band .btn-primary { background: #fff; color: var(--brand-dark); }
.reward-band .btn-primary:hover { background: #f1f5f9; }

/* Agentur-Pakete / Preis-Hero */
.offer-card { max-width: 560px; margin: 0 auto; background: #fff; border: 1px solid var(--brand); border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden; }
.offer-card .price-top { background: linear-gradient(180deg, var(--brand-tint), #fff); }

/* Variante B: Vergleich (andere KI vs. unser Ansatz) */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); max-width: 880px; margin: 0 auto; }
.compare-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow); }
.compare-card.good { border-color: var(--brand); box-shadow: var(--shadow-lg); }
.compare-head { display: flex; align-items: center; gap: .5rem; font-weight: 800; font-size: 1.05rem; margin-bottom: 1rem; }
.compare-card.bad .compare-head { color: #b91c1c; }
.compare-card.good .compare-head { color: var(--brand-dark); }
.compare-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.compare-card li { padding-left: 1.7rem; position: relative; color: var(--ink-soft); }
.compare-card.bad li::before { content: "✕"; position: absolute; left: 0; color: #dc2626; font-weight: 700; }
.compare-card.good li::before { content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 700; }

/* Beispiel-Command-Box */
.cmd-box { max-width: 660px; margin: 2rem auto 0; background: var(--dark); color: #e2e8f0; border-radius: var(--radius); padding: 1.3rem 1.5rem; box-shadow: var(--shadow-lg); }
.cmd-box .cmd-label { color: #94a3b8; font-size: .76rem; text-transform: uppercase; letter-spacing: .06em; }
.cmd-box .cmd-prompt { font-weight: 700; color: #fff; margin: .3rem 0 .9rem; font-size: 1.05rem; }
.cmd-box .cmd-line { display: flex; gap: .6rem; align-items: flex-start; font-size: .95rem; }
.cmd-box .cmd-arrow { color: var(--accent-2); font-weight: 800; }

/* Flow: kombinierte Szenarien */
.flow { display: flex; flex-wrap: wrap; align-items: stretch; justify-content: center; gap: .7rem; max-width: 940px; margin: 0 auto; }
.flow-chip { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .9rem 1rem; box-shadow: var(--shadow); font-weight: 600; font-size: .9rem; display: flex; flex-direction: column; gap: .3rem; max-width: 205px; text-align: center; align-items: center; }
.flow-chip .flow-ico { font-size: 1.4rem; }
.flow-plus { display: flex; align-items: center; color: var(--muted); font-weight: 800; font-size: 1.3rem; }
.flow-result { text-align: center; margin-top: 1.4rem; }
.flow-result .fr-arrow { color: var(--brand); font-size: 1.8rem; line-height: 1; }
.flow-result .fr-box { display: inline-block; margin-top: .6rem; background: linear-gradient(135deg, var(--brand), var(--accent)); color: #fff; font-weight: 700; font-size: 1.05rem; padding: 1rem 1.8rem; border-radius: 999px; box-shadow: var(--shadow-lg); }

/* Tabs (Für-wen-Rollen, Kombi-Beispiele) */
.tabs { max-width: 940px; margin: 0 auto; }
.tab-btns { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: 1.8rem; }
.tab-btn { font: inherit; font-size: .9rem; font-weight: 600; color: var(--ink-soft); background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: .5rem 1.05rem; cursor: pointer; display: inline-flex; align-items: center; gap: .45rem; transition: background .15s ease, color .15s ease, border-color .15s ease; }
.tab-btn:hover { border-color: var(--brand); color: var(--brand); }
.tab-btn.active { background: var(--brand); border-color: var(--brand); color: #fff; }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: tabFade .25s ease; }
@keyframes tabFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* Datenfluss-Diagramm */
.dataflow { display: flex; flex-wrap: wrap; align-items: stretch; justify-content: center; gap: .5rem; max-width: 980px; margin: 0 auto; }
.df-node { flex: 1 1 150px; min-width: 128px; max-width: 190px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow); padding: 1.1rem .8rem; text-align: center; }
.df-node .df-ico { font-size: 1.7rem; }
.df-node strong { display: block; margin-top: .35rem; font-size: .95rem; color: var(--ink); }
.df-node span { color: var(--muted); font-size: .78rem; }
.df-node.df-you { border-color: var(--brand); background: var(--brand-tint); }
.df-arrow { display: flex; align-items: center; color: var(--brand); font-size: 1.5rem; font-weight: 700; }
.df-note { text-align: center; color: var(--muted); font-size: .95rem; margin: 1.6rem auto 0; max-width: 46rem; }

/* Vergleichstabelle */
.cmp-wrap { overflow-x: auto; max-width: 980px; margin: 0 auto; }
.cmp-table { width: 100%; border-collapse: separate; border-spacing: 0; min-width: 680px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.cmp-table th, .cmp-table td { padding: .85rem 1rem; text-align: center; border-bottom: 1px solid var(--line); font-size: .92rem; }
.cmp-table thead th { background: var(--bg-alt); font-size: .84rem; font-weight: 700; vertical-align: bottom; }
.cmp-table tbody th { text-align: left; font-weight: 600; color: var(--ink); white-space: nowrap; }
.cmp-table .col-us { background: var(--brand-tint); }
.cmp-table thead th.col-us { background: var(--brand); color: #fff; border-top-right-radius: 0; }
.cmp-table tbody tr:last-child th, .cmp-table tbody tr:last-child td { border-bottom: 0; }
.cmp-yes { color: #16a34a; font-weight: 700; }
.cmp-no { color: #dc2626; font-weight: 700; }
.cmp-mid { color: #d97706; font-weight: 700; }
.cmp-cell-sub { display: block; font-size: .78rem; color: var(--muted); font-weight: 500; }

/* Granulare Rechte – Callout */
.callout { background: linear-gradient(120deg, var(--brand-tint), #fff); border: 1px solid var(--line); border-left: 4px solid var(--brand); border-radius: var(--radius); padding: 1.8rem clamp(1.4rem, 4vw, 2.2rem); max-width: 900px; margin: 0 auto; display: flex; gap: 1.2rem; align-items: flex-start; }
.callout-ico { font-size: 1.8rem; flex: none; }
.callout h3 { margin-bottom: .3rem; }
.callout p { margin: 0; color: var(--ink-soft); }

/* --------- Responsive --------- */
@media (max-width: 900px) {
	.hero-inner { grid-template-columns: 1fr; }
	.hero-visual { order: -1; }
	.grid-3 { grid-template-columns: 1fr 1fr; }
	.steps { grid-template-columns: 1fr; gap: 2rem; }
	.solution-split { grid-template-columns: 1fr; }
	.price-grid { grid-template-columns: 1fr; max-width: 460px; }
	.basis-grid { grid-template-columns: 1fr; }
	.prompt-grid { grid-template-columns: 1fr 1fr; }
	.testi-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
	.nav-list {
		position: absolute; top: 68px; left: 0; right: 0;
		flex-direction: column; align-items: stretch; gap: 0;
		background: #fff; border-bottom: 1px solid var(--line);
		padding: .5rem 1rem 1rem; box-shadow: var(--shadow);
		display: none;
	}
	.nav-list.open { display: flex; }
	.nav-list li { padding: .3rem 0; }
	.nav-cta a { display: inline-flex; margin-top: .4rem; }
	.nav-toggle {
		display: inline-flex; flex-direction: column; justify-content: center;
		width: 44px; height: 40px; background: transparent; border: 1px solid var(--line);
		border-radius: 10px; cursor: pointer;
	}
	.nav-toggle-bar, .nav-toggle-bar::before, .nav-toggle-bar::after {
		content: ""; display: block; width: 20px; height: 2px; background: var(--ink);
		margin: 0 auto; position: relative; transition: transform .2s ease, opacity .2s ease;
	}
	.nav-toggle-bar::before { position: absolute; top: -6px; } .nav-toggle-bar::after { position: absolute; top: 6px; }
	.nav-toggle[aria-expanded="true"] .nav-toggle-bar { background: transparent; }
	.nav-toggle[aria-expanded="true"] .nav-toggle-bar::before { transform: translateY(6px) rotate(45deg); }
	.nav-toggle[aria-expanded="true"] .nav-toggle-bar::after { transform: translateY(-6px) rotate(-45deg); }

	.grid-3 { grid-template-columns: 1fr; }
	.solution-visual { grid-template-columns: 1fr; }
	.footer-inner { flex-direction: column; }
	.prompt-grid { grid-template-columns: 1fr; }
	.cs-list { grid-template-columns: 1fr; }
	.calc-result { grid-template-columns: 1fr; }
	.callout { flex-direction: column; gap: .6rem; }
	.setup-step { grid-template-columns: 1fr; gap: .8rem; }
	.compare-grid { grid-template-columns: 1fr; }
	.flow-plus { transform: rotate(90deg); }
	.dataflow { flex-direction: column; }
	.df-node { max-width: none; }
	.df-arrow { transform: rotate(90deg); justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
	* { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}
