:root {
  --navy: #14356b;
  --navy-dark: #0d2650;
  --blue: #2a5fc4;
  --amber: #f2a71b;
  --amber-dark: #d68f0e;
  --ink: #1b2330;
  --muted: #5b6675;
  --line: #dfe4ec;
  --paper: #fbfaf7;
  --white: #fff;
  --radius: 14px;
  --max: 1120px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font: 17px/1.6 system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif; color: var(--ink); background: var(--paper); }
h1, h2, h3 { line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.6rem, 7vw, 5.2rem); font-weight: 900; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1em; }
a { color: var(--blue); }
img { max-width: 100%; height: auto; display: block; }
.wrap { max-width: var(--max); margin: 0 auto; padding-inline: 20px; }
section { padding-block: clamp(48px, 8vw, 96px); }
.lead { font-size: 1.2rem; color: var(--muted); max-width: 40ch; }
.eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 700; color: var(--blue); margin-bottom: .6em; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: .5em; padding: .8em 1.4em; border-radius: 999px; font-weight: 700; text-decoration: none; border: 2px solid transparent; cursor: pointer; font-size: 1rem; transition: transform .08s ease, background .15s ease; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--amber); color: var(--navy-dark); border-color: var(--amber); }
.btn-primary:hover { background: var(--amber-dark); border-color: var(--amber-dark); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-ghost:hover { border-color: var(--white); }
.btn-dark { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-dark:hover { background: var(--navy-dark); }

/* Header */
.top { position: sticky; top: 0; z-index: 10; background: rgba(251,250,247,.92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.top .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 1.25rem; color: var(--navy); text-decoration: none; letter-spacing: -.02em; }
.brand svg { width: 34px; height: 34px; }
.nav { display: flex; gap: 22px; align-items: center; }
.nav a { color: var(--ink); text-decoration: none; font-weight: 600; font-size: .95rem; }
.nav a:hover { color: var(--blue); }
.nav a.btn-dark { color: var(--white); }
.nav a.btn-dark:hover { color: var(--white); }
@media (max-width: 720px) { .nav a:not(.btn) { display: none; } }

/* Hero */
.hero { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%); color: var(--white); padding-block: clamp(40px, 6vw, 80px); overflow: hidden; }
.hero .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
@media (max-width: 860px) { .hero .wrap { grid-template-columns: 1fr; } }
.hero h1 { color: var(--white); }
.hero h1 .q { color: var(--amber); }
.hero .lead { color: rgba(255,255,255,.85); font-size: 1.3rem; }
.hero .cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero .note { margin-top: 18px; font-size: .9rem; color: rgba(255,255,255,.65); }
.hero-art { position: relative; aspect-ratio: 4 / 3; max-width: 100%; border-radius: var(--radius); overflow: hidden; background: #0a1d3d; box-shadow: 0 30px 60px rgba(0,0,0,.35); }
.hero-art img, .hero-art svg { width: 100%; height: 100%; object-fit: cover; }

/* Augenzwinkern unter dem Hero */
.honest { padding-block: 18px; background: var(--amber); color: var(--navy-dark); }
.honest p { margin: 0; text-align: center; font-size: 1.05rem; }
.honest a { color: var(--navy-dark); text-decoration: underline; font-weight: 700; }

/* Kennzeichnung KI-erzeugter Bilder (Art. 50 KI-VO) */
.ai-badge { position: absolute; left: 10px; top: 10px; z-index: 1; background: rgba(13,38,80,.78); color: #fff; font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 3px 8px; border-radius: 6px; pointer-events: none; }
.hero-art { position: relative; }

/* Varianten */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .cards { grid-template-columns: 1fr; } }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; display: flex; flex-direction: column; gap: 10px; box-shadow: 0 6px 20px rgba(20,53,107,.05); overflow: hidden; }
.card .card-art { margin: -26px -26px 12px; display: block; aspect-ratio: 4 / 3; background: #0a1d3d; }
.card .card-art { position: relative; }
.card .card-art img { width: 100%; height: 100%; object-fit: cover; }
.card .card-caption { position: absolute; right: 12px; bottom: 12px; background: var(--amber); color: var(--navy-dark); font-weight: 700; font-size: .8rem; padding: 4px 10px; border-radius: 999px; }
.card .tag { display: inline-block; align-self: flex-start; background: #eef3fb; color: var(--navy); font-weight: 700; font-size: .8rem; padding: 4px 10px; border-radius: 999px; }
.card ul { margin: 0; padding-left: 1.1em; color: var(--muted); }
.card li { margin-bottom: .35em; }
.card .quote { margin-top: auto; padding-top: 14px; border-top: 1px dashed var(--line); font-style: italic; color: var(--ink); }
.card .quote b { color: var(--blue); font-style: normal; }

/* Schritte */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: 24px 24px 24px 74px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--line); }
.step::before { counter-increment: step; content: counter(step); position: absolute; left: 22px; top: 22px; width: 36px; height: 36px; border-radius: 50%; background: var(--amber); color: var(--navy-dark); font-weight: 900; display: grid; place-items: center; }

/* Features */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 36px; }
@media (max-width: 720px) { .features { grid-template-columns: 1fr; } }
.feature { display: grid; grid-template-columns: 44px 1fr; gap: 14px; }
.feature .ic { width: 44px; height: 44px; border-radius: 10px; background: #eef3fb; display: grid; place-items: center; color: var(--navy); }
.feature .ic svg { width: 24px; height: 24px; }
.feature p { color: var(--muted); margin: 0; }

/* Preise */
.alt { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .plans { grid-template-columns: 1fr; } }
.plan { border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; background: var(--paper); display: flex; flex-direction: column; }
.plan.featured { border-color: var(--navy); background: var(--navy); color: var(--white); }
.plan .price { font-size: 2.4rem; font-weight: 900; margin: 6px 0; }
.plan .price small { font-size: 1rem; font-weight: 600; opacity: .75; }
.plan ul { padding-left: 1.1em; margin: 12px 0 22px; flex: 1; }
.plan li { margin-bottom: .4em; }
.plan.featured a.btn { background: var(--amber); color: var(--navy-dark); border-color: var(--amber); }
.fineprint { color: var(--muted); font-size: .9rem; margin-top: 20px; }

/* Datenschutz */
.trust { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 860px) { .trust { grid-template-columns: 1fr; } }
.trust ul { padding-left: 1.1em; }
.trust li { margin-bottom: .6em; }

/* Kontakt */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 860px) { .contact { grid-template-columns: 1fr; } }
form { display: grid; gap: 14px; }
label { display: grid; gap: 6px; font-weight: 600; font-size: .95rem; }
input, textarea { font: inherit; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); width: 100%; }
textarea { min-height: 120px; resize: vertical; }
.hp { position: absolute; left: -9999px; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .row2 { grid-template-columns: 1fr; } }

/* Footer */
footer { padding: 36px 0; color: var(--muted); font-size: .9rem; border-top: 1px solid var(--line); }
footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
footer a { color: var(--muted); margin-right: 16px; }

/* Textseiten */
.page { max-width: 760px; }
.page h1 { font-size: clamp(2rem, 5vw, 3rem); }
.page h2 { font-size: 1.4rem; margin-top: 1.6em; }
.notice { background: #fff7e6; border: 1px solid #f5d89a; padding: 14px 18px; border-radius: 10px; color: #7a5200; }

/* Branchenseiten */
.dialog { max-width: 720px; display: grid; gap: 10px; margin-top: 12px; }
.dialog .line { margin: 0; padding: 12px 16px; background: var(--white); border: 1px solid var(--line); border-radius: 12px; }
.dialog .line b { color: var(--blue); }
.faq details { border-bottom: 1px solid var(--line); padding: 12px 0; }
.faq summary { cursor: pointer; font-weight: 700; list-style: none; display: flex; justify-content: space-between; }
.faq summary::after { content: "+"; color: var(--blue); font-weight: 900; }
.faq details[open] summary::after { content: "–"; }
.faq p { margin: 10px 0 0; color: var(--muted); }
