:root {
  --brand-orange: #FF7F41;
  --brand-orange-dark: #e96d33;
  --bg: #ffffff;
  --bg-soft: #faf8f5;
  --bg-section: #fbfbfd;
  --text: #1a1f2e;
  --text-secondary: #5b6478;
  --text-muted: #97a0b2;
  --border: #e6e8ec;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-card: 0 1px 3px rgba(16,24,40,0.05), 0 4px 12px rgba(16,24,40,0.04);
  --max-w: 1100px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--text); text-decoration: none; }
a:hover { color: var(--brand-orange); }

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* ========== Topbar ========== */
.topbar {
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 50;
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.brand-mark {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand-orange);
}
.brand-text em {
  font-style: normal;
  color: var(--brand-orange);
}
.nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: .92rem;
  color: var(--text-secondary);
}
.nav a:not(.cta-light) { color: var(--text-secondary); }
.cta-light {
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-weight: 500;
}
.cta-light:hover {
  border-color: var(--brand-orange);
  background: rgba(255,127,65,0.04);
}

/* ========== Hero ========== */
.hero {
  padding: 96px 0 88px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  text-align: center;
}
.hero .kicker {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255,127,65,0.10);
  color: var(--brand-orange-dark);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  font-weight: 700;
}
.hero h1 em {
  font-style: normal;
  color: var(--brand-orange);
}
.hero .lede {
  font-size: 1.18rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 32px;
}
.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-row.centered { margin-top: 24px; }
.cta-primary {
  display: inline-block;
  padding: 12px 24px;
  background: var(--brand-orange);
  color: #fff !important;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  box-shadow: 0 2px 8px rgba(255,127,65,0.25);
  transition: background .15s, transform .15s;
}
.cta-primary:hover {
  background: var(--brand-orange-dark);
  transform: translateY(-1px);
}
.cta-secondary {
  display: inline-block;
  padding: 12px 18px;
  color: var(--text-secondary);
  font-weight: 500;
}
.cta-secondary:hover { color: var(--brand-orange); }

.hero-meta {
  margin-top: 36px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.meta-pill {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255,127,65,0.08);
  color: var(--brand-orange-dark);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 500;
}

.hero-shot {
  margin: 56px auto 0;
  max-width: 1080px;
}
.hero-shot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

/* Feature-Showcase Cards */
.feature-showcase {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.shot-card {
  margin: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.shot-card img {
  width: 100%;
  height: auto;
  display: block;
}
.shot-card figcaption {
  padding: 14px 20px 18px;
  font-size: .88rem;
  color: var(--text-secondary);
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
}

/* Kontakt-Form */
.contact {
  padding: 88px 0 96px;
  background: var(--bg-section);
}
.contact h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin: 0 0 18px;
  text-align: center;
  letter-spacing: -0.01em;
  font-weight: 700;
}
.contact-lede {
  text-align: center;
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 36px;
}
.contact-form {
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.contact-form label {
  display: block;
  margin-bottom: 16px;
}
.contact-form label:last-of-type { margin-bottom: 0; }
.form-label {
  display: block;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.form-label em {
  font-style: normal;
  color: var(--brand-orange);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .94rem;
  font-family: inherit;
  background: var(--bg);
  color: var(--text);
  box-sizing: border-box;
  transition: border-color .15s, box-shadow .15s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 3px rgba(255,127,65,0.12);
}
.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}
.form-actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.form-actions button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.form-hint {
  font-size: .82rem;
  color: var(--text-muted);
}
.form-hint.ok  { color: var(--brand-orange-dark); }
.form-hint.err { color: #ef4444; }

.form-intro {
  margin: 0 0 20px;
  padding: 14px 16px;
  background: var(--bg-soft);
  border-left: 3px solid var(--brand-orange);
  border-radius: 0 6px 6px 0;
  font-size: .9rem;
  color: var(--text-secondary);
  line-height: 1.55;
  font-style: italic;
}

.form-fieldset {
  border: none;
  padding: 0;
  margin: 8px 0 16px;
}
.form-fieldset legend {
  padding: 0;
  margin-bottom: 10px;
}
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 16px;
}
.check-item {
  display: flex !important;
  align-items: center;
  gap: 10px;
  margin: 0 !important;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg);
  font-size: .88rem;
  color: var(--text);
  cursor: pointer;
  transition: border-color .12s, background .12s;
}
.check-item:hover {
  border-color: rgba(255,127,65,0.4);
  background: rgba(255,127,65,0.03);
}
.check-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--brand-orange);
  cursor: pointer;
  flex-shrink: 0;
}
.check-item input[type="checkbox"]:checked + span {
  font-weight: 600;
  color: var(--brand-orange-dark);
}

.form-optional {
  font-weight: 400;
  color: var(--text-muted);
}

.form-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 20px;
  margin-bottom: 0 !important;
  font-size: .82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--brand-orange);
  cursor: pointer;
  flex-shrink: 0;
}
.form-check a {
  color: var(--brand-orange);
  text-decoration: underline;
}
.form-check a:hover { color: var(--brand-orange-dark); }

/* ========== Legal-Pages (AGB, Datenschutz) ========== */
.legal {
  padding: 64px 0 88px;
  background: var(--bg);
}
.legal .wrap { max-width: 760px; }
.legal h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
}
.legal h2 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 36px 0 12px;
}
.legal .kicker {
  font-size: .78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 6px;
}
.legal .lede {
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 0 0 24px;
}
.legal p, .legal li {
  font-size: .94rem;
  color: var(--text);
  line-height: 1.65;
}
.legal a {
  color: var(--brand-orange);
  text-decoration: underline;
}
.legal a:hover { color: var(--brand-orange-dark); }
.legal ul {
  margin: 8px 0 16px;
  padding-left: 22px;
}
.legal ul li { margin-bottom: 6px; }
.legal strong { color: var(--text); }
.legal em { font-style: italic; color: var(--text-secondary); }
.legal-back {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  font-size: .92rem;
}

/* ========== Features ========== */
.features {
  padding: 88px 0;
  background: var(--bg);
}
.features h2,
.how h2,
.pricing h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin: 0 0 44px;
  text-align: center;
  letter-spacing: -0.01em;
  font-weight: 700;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.feat {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  transition: border-color .15s, box-shadow .15s;
}
.feat:hover {
  border-color: rgba(255,127,65,0.4);
  box-shadow: var(--shadow-card);
}
.feat-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  color: var(--brand-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,127,65,0.10);
  border-radius: 10px;
}
.feat-icon svg { width: 20px; height: 20px; display: block; }
.feat h3 {
  font-size: 1.05rem;
  margin: 0 0 8px;
  font-weight: 600;
}
.feat p {
  color: var(--text-secondary);
  font-size: .92rem;
  margin: 0;
}

/* ========== How ========== */
.how {
  padding: 88px 0;
  background: var(--bg-section);
}
.steps {
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
.steps li {
  position: relative;
  padding: 20px 24px 20px 64px;
  margin-bottom: 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  counter-increment: step;
  font-size: .96rem;
  color: var(--text-secondary);
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: var(--brand-orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .92rem;
}
.steps li strong { color: var(--text); margin-right: 6px; }
.steps li code {
  background: rgba(16,24,40,0.04);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: .82em;
  font-family: 'SF Mono', Menlo, Consolas, monospace;
}

/* ========== Pricing ========== */
.pricing {
  padding: 88px 0;
  background: var(--bg);
  text-align: center;
}
.pricing-note {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 8px;
}

/* ========== Footer ========== */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
  font-size: .85rem;
  color: var(--text-muted);
}
.footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.foot-left { display: flex; gap: 16px; align-items: center; }
.foot-right { display: flex; gap: 22px; }
.foot-right a { color: var(--text-muted); }
.foot-tag { font-size: .78rem; }

/* ========== Responsive ========== */
@media (max-width: 720px) {
  .topbar .wrap { height: 56px; }
  .nav { gap: 16px; font-size: .85rem; }
  .nav a:not(.cta-light) { display: none; }
  .hero { padding: 64px 0 56px; }
  .features, .how, .pricing, .contact { padding: 64px 0; }
  .hero-meta { gap: 8px; }
  .meta-pill { font-size: .72rem; padding: 5px 10px; }
  .hero-shot { margin-top: 40px; }
  .feature-showcase { grid-template-columns: 1fr; gap: 18px; margin-top: 40px; }
  .contact-form { padding: 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
  .form-row label { margin-bottom: 16px; }
}
