/* =========================================================
   pinpoint.css
   Gemeinsames Stylesheet für alle Unterseiten von PicPins.
   Variablen, Header, Footer, Buttons, Section-Layouts.
   ========================================================= */

:root {
  --bg: #FFFFFF;
  --bg-soft: #F5F5F7;
  --ink: #1F2937;
  --ink-2: #4B5563;
  --muted: #6B7280;
  --line: #E5E7EB;
  --line-soft: #F0F1F3;
  --brand: #ff3f41;
  --brand-dark: #d8262a;
  --brand-soft: #FFEDED;
  --mint: #C5F1E5;
  --footer-bg: #5C6B7A;
  --font: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--brand); color: #fff; }

img { max-width: 100%; display: block; }
a { color: var(--brand); }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); color: #fff; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--ink); }
.btn-text { background: transparent; color: var(--ink); padding: 11px 14px; }
.btn-text:hover { color: var(--brand); }
.btn-lg { padding: 14px 28px; font-size: 16px; }

/* ---------- Header ---------- */
header.site-header {
  background: #fff;
  border-bottom: 1px solid transparent;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: border-color .15s;
}
header.site-header.scrolled { border-bottom-color: var(--line); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.logo-img {
  height: 32px;
  width: auto;
  display: block;
}
.nav-center {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-center a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.nav-center a:hover,
.nav-center a.active { color: var(--brand); }
.nav-right {
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s;
}
.nav-toggle span::before { transform: translateY(-7px); }
.nav-toggle span::after { transform: translateY(5px); }

.nav-desktop-buttons {
  display: flex;
  gap: 6px;
  align-items: center;
}

@media (max-width: 880px) {
  .nav-center { display: none; }
  .nav-toggle { display: block; }
  .nav-desktop-buttons { display: none; }
  .nav-desktop-only { display: none !important; }
}

/* ---------- Mobile Fullscreen Overlay ---------- */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .25s ease;
  visibility: hidden;
}
.mobile-overlay.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-overlay-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line-soft);
  flex-shrink: 0;
}
.mobile-overlay-close {
  background: none;
  border: none;
  color: var(--ink);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-overlay-nav {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 12px 0;
}
.mobile-overlay-nav a {
  display: block;
  padding: 22px 28px;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line-soft);
  letter-spacing: -0.01em;
}
.mobile-overlay-nav a:hover,
.mobile-overlay-nav a:focus { color: var(--brand); }
.mobile-overlay-foot {
  padding: 20px 24px 32px;
  border-top: 1px solid var(--line-soft);
  flex-shrink: 0;
}
.btn-mobile-signup {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--bg-soft);
  color: var(--ink);
  padding: 16px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border: none;
  transition: background .15s;
}
.btn-mobile-signup:hover { background: #e9e9e9; color: var(--ink); }

/* ---------- Hero / Page Header ---------- */
.page-hero {
  padding: 72px 0 56px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 16px;
}
.page-hero p.lead {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.55;
}
.page-hero .badge-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

/* ---------- Section Base ---------- */
section { position: relative; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 56px 0; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--ink);
}
h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--ink);
}
.section-sub {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto;
}

.bg-soft { background: var(--bg-soft); }

/* ---------- Prose ---------- */
.prose p { margin-bottom: 16px; color: var(--ink-2); font-size: 16px; line-height: 1.7; }
.prose p strong { color: var(--ink); }
.prose ul, .prose ol { margin: 0 0 18px 22px; }
.prose li { margin-bottom: 6px; color: var(--ink-2); line-height: 1.6; }
.prose h2 { margin-top: 36px; margin-bottom: 14px; font-size: 28px; }
.prose h3 { margin-top: 28px; margin-bottom: 10px; font-size: 20px; }
.prose code {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 13px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: var(--ink);
}
.prose pre {
  background: #1F2937;
  color: #E5E7EB;
  padding: 18px 20px;
  border-radius: 10px;
  overflow-x: auto;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 18px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.prose pre code { background: none; border: none; padding: 0; color: inherit; font-size: inherit; }
.prose blockquote {
  border-left: 3px solid var(--brand);
  padding: 6px 0 6px 18px;
  margin: 18px 0;
  color: var(--ink-2);
  font-style: italic;
}

/* ---------- Card-Grid ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 720px) {
  .card-grid { grid-template-columns: 1fr; }
}
.card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  transition: transform .15s, box-shadow .15s;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.06); }
.card-visual {
  position: relative;
  overflow: hidden;
}
.card-visual img {
  width: 100%;
  height: auto;
  display: block;
}
.card-body { padding: 22px 26px 26px; }
.card-body h3 { font-size: 18px; margin-bottom: 8px; letter-spacing: -0.01em; }
.card-body p { font-size: 14px; color: var(--ink-2); line-height: 1.55; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  color: var(--brand);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.card-link:hover { text-decoration: underline; }

/* ---------- Newsletter / Reviews / Footer-Links ---------- */
.newsletter-section {
  background: var(--mint);
  padding: 64px 0;
}
.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 720px) {
  .newsletter-grid { grid-template-columns: 1fr; gap: 28px; }
}
.app-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.app-buttons a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: #1F2937;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
}
.newsletter h3 { font-size: 24px; margin-bottom: 8px; }
.newsletter p { color: var(--ink-2); font-size: 15px; }
.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}
.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font);
  font-size: 14px;
  outline: none;
  background: #fff;
}
.newsletter-form input:focus { border-color: var(--brand); }
.newsletter-form button {
  padding: 12px 22px;
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}
.newsletter-form button:hover { background: var(--brand); }
.newsletter-disclaimer { margin-top: 10px; font-size: 12px; color: var(--muted); }
.newsletter-disclaimer a { color: var(--ink-2); }

.reviews { padding: 36px 0; background: var(--bg-soft); }
.reviews-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--ink-2);
}
.reviews-label { font-weight: 600; color: var(--ink); }
.stars { color: #F59E0B; font-size: 18px; letter-spacing: 2px; }
.stars span { color: var(--line); }

.footer-links-section { padding: 56px 0 40px; background: #fff; border-top: 1px solid var(--line); }
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 720px) { .footer-links { grid-template-columns: repeat(2, 1fr); } }
.footer-links h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
}
.footer-links ul { list-style: none; }
.footer-links ul li { padding: 4px 0; }
.footer-links ul a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 13px;
}
.footer-links ul a:hover { color: var(--brand); text-decoration: underline; }

footer.bottom {
  background: var(--footer-bg);
  color: rgba(255,255,255,0.75);
  padding: 48px 0 32px;
  position: relative;
  z-index: 1;
}
footer.bottom .wave {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  width: 100%;
  height: 24px;
  display: block;
  margin-bottom: -1px;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.lang-pill {
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  color: rgba(255,255,255,0.85);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-social a:hover { color: #fff; }
.footer-bottom-row {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
}
.footer-bottom-row a { color: rgba(255,255,255,0.75); text-decoration: none; }
.footer-bottom-row a:hover { color: #fff; }
.footer-bottom-row .legal { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- Reveal-Animation ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Hilfe-spezifisch ---------- */
.help-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 880px) { .help-layout { grid-template-columns: 1fr; gap: 0; } }

.help-toc {
  position: sticky;
  top: 96px;
  border-left: 2px solid var(--line);
  padding-left: 16px;
}
.help-toc h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 12px;
}
.help-toc ul { list-style: none; }
.help-toc li { margin-bottom: 8px; }
.help-toc a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 14px;
  display: block;
  padding: 4px 0;
}
.help-toc a:hover,
.help-toc a.active { color: var(--brand); font-weight: 600; }
@media (max-width: 880px) {
  .help-toc { position: static; border-left: none; padding-left: 0; margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
  .help-toc ul { display: flex; flex-wrap: wrap; gap: 8px; }
  .help-toc li { margin: 0; }
  .help-toc a { background: var(--bg-soft); padding: 6px 14px; border-radius: 999px; font-size: 13px; }
}

.help-section {
  margin-bottom: 56px;
  scroll-margin-top: 96px;
}
.help-section > h2 {
  font-size: 28px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.help-section > h3 {
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 10px;
}

/* ---------- Help: Video-Grid ---------- */
.help-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 12px 0 28px;
}
@media (max-width: 880px) { .help-video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .help-video-grid { grid-template-columns: 1fr; } }

.help-video {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: #fff;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.help-video:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px -8px rgba(31, 41, 55, 0.15);
}
.help-video-thumb {
  position: relative;
  height: 110px;
  background: linear-gradient(135deg, #e5e7eb 0%, #cbd5e1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.help-video-play {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding-left: 3px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}
.help-video-time {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(31, 41, 55, 0.85);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
}
.help-video-meta {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.help-video-meta strong {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.3;
}
.help-video-meta span {
  font-size: 12px;
  color: var(--ink-2);
}

/* ---------- FAQ / Akkordeon ---------- */
details.faq {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 10px;
  background: #fff;
  transition: border-color .15s;
}
details.faq[open] { border-color: var(--brand); }
details.faq summary {
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--muted);
  transition: transform .15s;
}
details.faq[open] summary::after { content: '–'; }
details.faq .faq-body {
  margin-top: 12px;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.65;
}
details.faq .faq-body p { margin-bottom: 8px; }
details.faq .faq-body p:last-child { margin-bottom: 0; }

/* ---------- Use-Cases / Inspirationen-Grid ---------- */
.inspiration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.insp-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform .2s, border-color .2s;
}
.insp-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.insp-visual {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand-soft) 0%, #fff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.insp-visual .pin-demo {
  width: 22px;
  height: 22px;
  background: var(--brand);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  position: absolute;
}
.insp-body { padding: 20px 22px 22px; }
.insp-body h3 { font-size: 17px; margin-bottom: 6px; }
.insp-body p { font-size: 14px; color: var(--ink-2); line-height: 1.5; }

/* ---------- Tutorial Video Cards ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.video-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  transition: border-color .15s, transform .15s;
}
.video-card:hover { border-color: var(--ink); }
.video-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1F2937 0%, #4B5563 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.video-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  transition: background .15s;
}
.video-thumb:hover::after { background: rgba(0,0,0,0.05); }
.video-play {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}
.video-play svg { margin-left: 4px; }
.video-body { padding: 18px 22px 22px; }
.video-body h3 { font-size: 16px; margin-bottom: 6px; }
.video-body p { font-size: 13px; color: var(--ink-2); }
.video-meta {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
}

/* ---------- Über-Seite ---------- */
.about-hero-image {
  width: 100%;
  max-width: 760px;
  height: 360px;
  margin: 24px auto 48px;
  background: linear-gradient(135deg, #f3eee6 0%, #d4c5a8 100%);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.about-hero-image .demo-pin {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--brand);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.about-hero-image .demo-pin::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid var(--brand);
  opacity: 0.4;
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ---------- Funktionen Feature-Block ---------- */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0;
}
.feature-block.reverse > div:first-child { order: 2; }
@media (max-width: 720px) {
  .feature-block { grid-template-columns: 1fr; gap: 32px; padding: 40px 0; }
  .feature-block.reverse > div:first-child { order: 0; }
}
.feature-block + .feature-block { border-top: 1px solid var(--line); }
.feature-block .label-pill {
  display: inline-block;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.feature-block h2 {
  font-size: 32px;
  margin-bottom: 14px;
}
.feature-block p {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 14px;
}
.feature-block ul.checklist {
  list-style: none;
  margin: 0;
}
.feature-block ul.checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  color: var(--ink-2);
  line-height: 1.5;
}
.feature-block ul.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  background: var(--brand-soft);
  border-radius: 50%;
}
.feature-block ul.checklist li::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 9px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: rotate(-45deg);
}
.feature-mock {
  border: none;
  background: transparent;
  padding: 0;
  position: relative;
  overflow: visible;
}
.feature-mock > img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

/* CTA-Box */
.cta-box {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  border-radius: 18px;
  padding: 48px 36px;
  text-align: center;
  margin: 56px auto;
  max-width: 880px;
}
.cta-box h2 { color: #fff; font-size: 28px; margin-bottom: 12px; }
.cta-box p { color: rgba(255,255,255,0.85); margin-bottom: 24px; }
.cta-box .btn-primary { background: #fff; color: var(--brand); }
.cta-box .btn-primary:hover { background: rgba(255,255,255,0.9); color: var(--brand-dark); }

/* Tabellen */
table.simple {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
  font-size: 14px;
}
table.simple th,
table.simple td {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
table.simple th {
  font-weight: 700;
  color: var(--ink);
  background: var(--bg-soft);
}
table.simple td { color: var(--ink-2); }
table.simple code { font-size: 12px; }
