/* KI Sofortberatung — static site
   Pure HTML/CSS, no JS. Mobile-first, German UI. */

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont,
               'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: #0a0a0a;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 .5rem; font-weight: 700; letter-spacing: -.01em; }
h1 { font-size: clamp(1.875rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 1.875rem); }
h3 { font-size: 1.125rem; }
p  { margin: 0 0 1rem; }
a  { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
ul { padding-left: 1.25rem; }

:root {
  --c-fg: #0a0a0a;
  --c-bg: #ffffff;
  --c-muted: #5a5a5a;
  --c-muted-bg: #f5f5f5;
  --c-card: #fafafa;
  --c-border: #e5e5e5;
  --c-primary: #2F80ED;
  --c-accent: #3FC1A3;
  --c-green: #7ED957;
  --c-amber-bg: #fef3c7;
  --c-amber-fg: #92400e;
  --c-green-bg: #dcfce7;
  --c-green-fg: #166534;
  --c-red-bg: #fee2e2;
  --c-red-fg: #991b1b;
  --radius: .5rem;
  --radius-lg: 1rem;
  --shadow-md: 0 2px 4px rgba(0,0,0,.04), 0 1px 2px rgba(0,0,0,.06);
  --shadow-lg: 0 8px 24px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.06);
}

/* ---------- Brand gradients ---------- */
.bg-brand-gradient { background: linear-gradient(135deg, #7ED957, #3FC1A3, #2F80ED); }
.text-brand-gradient {
  background: linear-gradient(135deg, #7ED957, #3FC1A3, #2F80ED);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.gradient-line { height: 3px; background: linear-gradient(90deg,#7ED957,#3FC1A3,#2F80ED); border-radius: 2px; }

/* ---------- Layout ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

section { padding: 4rem 0; }
@media (min-width: 768px) { section { padding: 5rem 0; } }
.section-sm { padding: 3rem 0; }
.bg-card { background: var(--c-card); }
.bg-dark { background: var(--c-fg); color: #f5f5f5; }
.bg-dark p { color: rgba(255,255,255,.75); }
.bg-hero-tint { background: linear-gradient(180deg, rgba(47,128,237,.04), #fff); }

.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}
.items-center { align-items: center; }
.text-center { text-align: center; }
.max-w-3xl { max-width: 48rem; margin-left: auto; margin-right: auto; }
.max-w-4xl { max-width: 64rem; margin-left: auto; margin-right: auto; }
.max-w-5xl { max-width: 72rem; margin-left: auto; margin-right: auto; }
.mt-2  { margin-top: .5rem; }
.mt-4  { margin-top: 1rem; }
.mt-6  { margin-top: 1.5rem; }
.mt-8  { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-6  { margin-bottom: 1.5rem; }
.mb-8  { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }

.lead { font-size: 1.125rem; color: var(--c-muted); line-height: 1.65; }
.muted { color: var(--c-muted); }
.small { font-size: .875rem; }
.xs    { font-size: .75rem; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c-border);
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; height: 4rem;
}
.brand img { height: 60px; width: auto; }
.nav-links { display: none; gap: .25rem; align-items: center; }
.nav-links a {
  padding: .5rem .75rem; border-radius: var(--radius);
  font-size: .875rem; font-weight: 500; color: var(--c-muted);
}
.nav-links a:hover { background: var(--c-muted-bg); color: var(--c-fg); text-decoration: none; }
.nav-links a.active { background: var(--c-muted-bg); color: var(--c-fg); }
@media (min-width: 1024px) { .nav-links { display: flex; } }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .65rem 1.1rem; border-radius: var(--radius);
  font-weight: 600; font-size: .9rem; cursor: pointer;
  border: 1px solid transparent; transition: opacity .15s, transform .1s;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn-gradient {
  background: linear-gradient(135deg, #7ED957, #3FC1A3, #2F80ED);
  color: #fff;
}
.btn-gradient:hover { opacity: .9; }
.btn-outline {
  background: #fff; color: var(--c-fg); border-color: var(--c-border);
}
.btn-outline:hover { background: var(--c-muted-bg); }
.btn-lg { padding: .85rem 1.4rem; font-size: 1rem; }
.btn-sm { padding: .45rem .85rem; font-size: .8rem; }
.btn-block { width: 100%; }
.btn .arrow::after { content: "→"; margin-left: .35rem; }

/* ---------- Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--c-border);
  border-radius: var(--radius-lg); padding: 1.5rem;
  box-shadow: var(--shadow-md);
}
.card-tight { padding: 1.25rem; }
.card-soft { background: var(--c-card); }
.card-accent { border-color: rgba(63,193,163,.3); }
.card-accent-tint { background: rgba(63,193,163,.06); border-color: rgba(63,193,163,.25); }

/* Icon chip */
.chip-icon {
  width: 2.5rem; height: 2.5rem; flex: 0 0 2.5rem;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: .5rem; background: rgba(63,193,163,.1); color: var(--c-accent);
  font-size: 1.1rem;
}
.chip-icon.lg { width: 3rem; height: 3rem; font-size: 1.25rem; }
.chip-icon.primary { background: rgba(47,128,237,.1); color: var(--c-primary); }

/* Step number circle */
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem; border-radius: 999px;
  color: #fff; font-weight: 700;
  background: linear-gradient(135deg,#7ED957,#3FC1A3,#2F80ED);
  flex-shrink: 0;
}
.step-num.sm { width: 2rem; height: 2rem; font-size: .85rem; }
.step-num.plain { background: var(--c-primary); }

/* Lists with check marks (use ✓ pseudo) */
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li {
  position: relative; padding-left: 1.5rem;
  font-size: .9rem; color: var(--c-muted); margin-bottom: .35rem;
}
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--c-accent); font-weight: 700;
}
.checklist.cols { display: grid; grid-template-columns: 1fr; gap: .35rem; }
@media (min-width: 640px) { .checklist.cols { grid-template-columns: 1fr 1fr; } }

/* Trust strip stats */
.stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; text-align: center; }
@media (min-width: 768px) { .stats { grid-template-columns: repeat(4,1fr); } }
.stat-val { font-size: clamp(1.5rem,3vw,1.875rem); font-weight: 700; color: var(--c-primary); }
.stat-lbl { font-size: .85rem; color: var(--c-muted); margin-top: .25rem; }

/* Hero image */
.hero-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover; width: 100%; }

/* Hero-Mockup: aktiver Anruf bei Anna (ersetzt das Hero-Foto) */
.hero-mockup {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(60% 50% at 15% 20%, rgba(126,217,87,.18), transparent 70%),
    radial-gradient(55% 50% at 85% 80%, rgba(47,128,237,.18), transparent 70%),
    radial-gradient(40% 35% at 80% 15%, rgba(63,193,163,.16), transparent 70%),
    linear-gradient(135deg, #f6fbff 0%, #f0f9f4 100%);
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center;
}
.hero-mockup .hint {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(15,40,70,.12), 0 2px 6px rgba(15,40,70,.06);
  padding: .55rem .8rem;
  font-size: .78rem;
  display: flex; align-items: center; gap: .5rem;
  color: #0a0a0a;
  font-weight: 500;
  border: 1px solid rgba(0,0,0,.04);
}
.hero-mockup .hint--top { top: 8%; left: 4%; }
.hero-mockup .hint--bottom { bottom: 9%; right: 4%; max-width: 220px; }
.hero-mockup .hint .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #25D366; flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(37,211,102,.18);
}
.hero-mockup .hint svg { flex-shrink: 0; }
.hero-mockup .hint b { font-weight: 700; }

.hero-mockup .phone {
  position: relative;
  width: 38%;
  max-width: 230px;
  aspect-ratio: 9/19;
  background: #0a0a0a;
  border-radius: 32px;
  padding: 6px;
  box-shadow:
    0 30px 60px -20px rgba(15,40,70,.35),
    0 18px 36px -12px rgba(15,40,70,.18),
    inset 0 0 0 1.5px rgba(255,255,255,.08);
  transform: rotate(-3deg);
}
.hero-mockup .phone::before {
  content: "";
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 56px; height: 16px; background: #0a0a0a; border-radius: 12px;
  z-index: 3;
}
.hero-mockup .phone::after {
  content: "";
  position: absolute; left: 50%; bottom: 6px; transform: translateX(-50%);
  width: 36%; height: 3px; background: rgba(255,255,255,.5); border-radius: 2px;
  z-index: 3;
}
.hero-mockup .screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 26px;
  background: linear-gradient(180deg, #0a1628 0%, #061021 100%);
  overflow: hidden;
  color: #fff;
  display: flex; flex-direction: column;
  padding: 30px 14px 14px;
}
.hero-mockup .statusbar {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .55rem; font-weight: 700; padding: 0 4px 6px;
  color: rgba(255,255,255,.92);
}
.hero-mockup .statusbar .icons { display: flex; gap: 3px; align-items: center; }
.hero-mockup .statusbar .signal { display: inline-flex; gap: 1px; align-items: flex-end; }
.hero-mockup .statusbar .signal i { display: inline-block; width: 2px; background: #fff; border-radius: 1px; }
.hero-mockup .statusbar .signal i:nth-child(1) { height: 3px; }
.hero-mockup .statusbar .signal i:nth-child(2) { height: 5px; }
.hero-mockup .statusbar .signal i:nth-child(3) { height: 7px; }
.hero-mockup .statusbar .signal i:nth-child(4) { height: 9px; }
.hero-mockup .statusbar .battery {
  width: 16px; height: 7px; border: 1px solid rgba(255,255,255,.7);
  border-radius: 2px; position: relative; padding: 1px;
}
.hero-mockup .statusbar .battery::after {
  content: ""; position: absolute; right: -2px; top: 2px;
  width: 1px; height: 3px; background: rgba(255,255,255,.7); border-radius: 0 1px 1px 0;
}
.hero-mockup .statusbar .battery i { display: block; height: 100%; width: 75%; background: #fff; border-radius: 1px; }
.hero-mockup .call-label {
  text-align: center;
  font-size: .55rem; font-weight: 600;
  color: rgba(255,255,255,.55);
  letter-spacing: .12em; text-transform: uppercase;
  margin-top: 6px;
}
.hero-mockup .avatar-wrap {
  margin: 14px auto 8px;
  width: 64px; height: 64px;
  position: relative;
  flex-shrink: 0;
}
.hero-mockup .avatar-wrap .pulse {
  position: absolute; inset: -10px;
  border-radius: 50%;
  border: 1.5px solid rgba(63,193,163,.35);
  animation: hero-pulse 1.8s ease-out infinite;
}
.hero-mockup .avatar-wrap .pulse:nth-child(2) { animation-delay: .6s; }
.hero-mockup .avatar-wrap .pulse:nth-child(3) { animation-delay: 1.2s; }
@keyframes hero-pulse {
  0%   { transform: scale(.85); opacity: .9; }
  100% { transform: scale(1.6);  opacity: 0;  }
}
.hero-mockup .avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7ED957, #3FC1A3, #2F80ED);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 1.6rem;
  box-shadow: 0 8px 20px rgba(63,193,163,.35);
  position: relative; z-index: 1;
  letter-spacing: -.02em;
}
.hero-mockup .name { text-align: center; font-size: 1rem; font-weight: 700; margin-top: 6px; }
.hero-mockup .subname { text-align: center; font-size: .58rem; color: rgba(255,255,255,.55); margin-top: 2px; letter-spacing: .04em; }
.hero-mockup .status {
  text-align: center;
  margin-top: 10px;
  font-size: .6rem;
  color: #7ED957;
  display: flex; align-items: center; justify-content: center; gap: 5px;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}
.hero-mockup .status .live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #7ED957;
  box-shadow: 0 0 0 3px rgba(126,217,87,.2);
  animation: hero-blink 1.4s ease-in-out infinite;
}
@keyframes hero-blink { 0%,100% { opacity: 1; } 50% { opacity: .45; } }
.hero-mockup .status .timer { color: rgba(255,255,255,.9); font-weight: 500; }
.hero-mockup .waveform {
  display: flex; gap: 2px;
  align-items: center; justify-content: center;
  height: 30px; margin-top: 12px;
}
.hero-mockup .waveform i {
  display: block;
  width: 2px; border-radius: 1px;
  background: linear-gradient(180deg, #7ED957, #3FC1A3);
  animation: hero-wave 1s ease-in-out infinite;
}
.hero-mockup .waveform i:nth-child(1)  { height: 30%; animation-delay: -1.0s; }
.hero-mockup .waveform i:nth-child(2)  { height: 55%; animation-delay: -.9s; }
.hero-mockup .waveform i:nth-child(3)  { height: 80%; animation-delay: -.8s; }
.hero-mockup .waveform i:nth-child(4)  { height: 45%; animation-delay: -.7s; }
.hero-mockup .waveform i:nth-child(5)  { height: 70%; animation-delay: -.6s; }
.hero-mockup .waveform i:nth-child(6)  { height: 95%; animation-delay: -.5s; }
.hero-mockup .waveform i:nth-child(7)  { height: 60%; animation-delay: -.4s; }
.hero-mockup .waveform i:nth-child(8)  { height: 85%; animation-delay: -.3s; }
.hero-mockup .waveform i:nth-child(9)  { height: 40%; animation-delay: -.2s; }
.hero-mockup .waveform i:nth-child(10) { height: 65%; animation-delay: -.1s; }
.hero-mockup .waveform i:nth-child(11) { height: 50%; animation-delay:  0s;  }
.hero-mockup .waveform i:nth-child(12) { height: 30%; animation-delay: -.55s; }
@keyframes hero-wave {
  0%,100% { transform: scaleY(.4); }
  50%     { transform: scaleY(1.2); }
}
.hero-mockup .controls {
  margin-top: auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  padding: 0 4px 6px;
}
.hero-mockup .ctrl {
  aspect-ratio: 1;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: rgba(255,255,255,.85);
  font-size: .42rem;
  font-weight: 500;
  gap: 1px;
  backdrop-filter: blur(8px);
}
.hero-mockup .ctrl svg { width: 14px; height: 14px; }
.hero-mockup .ctrl--end {
  grid-column: 2;
  background: #e23b3b;
  color: #fff;
  box-shadow: 0 6px 14px rgba(226,59,59,.4);
}
@media (max-width: 560px) {
  .hero-mockup .phone { width: 48%; max-width: 200px; }
  .hero-mockup .hint--top { top: 6%; left: 3%; padding: .45rem .65rem; font-size: .72rem; }
  .hero-mockup .hint--bottom { bottom: 6%; right: 3%; max-width: 180px; padding: .45rem .65rem; font-size: .72rem; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-mockup .avatar-wrap .pulse,
  .hero-mockup .status .live-dot,
  .hero-mockup .waveform i { animation: none; }
}

/* Tags / badges */
.tag {
  display: inline-flex; align-items: center;
  padding: .15rem .55rem; border-radius: 999px;
  font-size: .7rem; font-weight: 600; text-transform: none;
  background: var(--c-muted-bg); color: var(--c-muted);
}
.tag-accent { background: rgba(63,193,163,.12); color: var(--c-accent); }
.tag-primary { background: rgba(47,128,237,.1); color: var(--c-primary); }
.tag-chart3 { background: rgba(47,128,237,.1); color: var(--c-primary); }
.tag-klein { background: var(--c-green-bg); color: var(--c-green-fg); }
.tag-mittel { background: var(--c-amber-bg); color: var(--c-amber-fg); }
.tag-gross { background: var(--c-red-bg); color: var(--c-red-fg); }

/* Tables */
table { width: 100%; border-collapse: collapse; font-size: .9rem; }
th, td { text-align: left; padding: .75rem; border-bottom: 1px solid var(--c-border); }
th { background: var(--c-muted-bg); font-weight: 600; }
td.num { text-align: right; font-variant-numeric: tabular-nums; }
.table-wrap { overflow-x: auto; border: 1px solid var(--c-border); border-radius: var(--radius-lg); }

/* FAQ / details */
details {
  border-bottom: 1px solid var(--c-border);
  padding: 1rem 0;
}
details > summary {
  cursor: pointer; list-style: none;
  font-weight: 600; font-size: 1rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
details > summary::-webkit-details-marker { display: none; }
details > summary::after {
  content: "+"; color: var(--c-muted); font-weight: 400; font-size: 1.25rem;
  transition: transform .2s;
}
details[open] > summary::after { content: "−"; }
details > div, details > p { margin-top: .75rem; color: var(--c-muted); font-size: .95rem; }

/* CSS-only tabs via :target — fallback: stacked sections with anchors */
.tabnav { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.tabnav a {
  padding: .5rem .9rem; border-radius: var(--radius);
  background: var(--c-muted-bg); font-size: .9rem; font-weight: 500;
  color: var(--c-muted);
}
.tabnav a:hover { background: #ebebeb; text-decoration: none; }

/* Forms */
form .field { margin-bottom: 1rem; }
form label { display: block; font-size: .85rem; font-weight: 500; margin-bottom: .35rem; }
form input, form select, form textarea {
  width: 100%; padding: .55rem .7rem; font: inherit;
  border: 1px solid var(--c-border); border-radius: var(--radius);
  background: #fff; color: var(--c-fg);
}
form input:focus, form select:focus, form textarea:focus {
  outline: 2px solid var(--c-accent); outline-offset: 0; border-color: var(--c-accent);
}
form textarea { resize: vertical; min-height: 5rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .form-row.two { grid-template-columns: 1fr 1fr; } }

/* Footer */
.site-footer { background: var(--c-card); border-top: 1px solid var(--c-border); }
.site-footer .cols {
  display: grid; gap: 2rem; padding: 3rem 0;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .site-footer .cols { grid-template-columns: repeat(3,1fr); } }
.site-footer h4 { margin: 0 0 1rem; font-size: 1rem; font-weight: 600; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { font-size: .9rem; color: var(--c-muted); margin-bottom: .5rem; }
.site-footer ul li a { color: inherit; }
.site-footer ul li a:hover { color: var(--c-fg); }
.footer-bottom {
  display: flex; flex-direction: column; gap: 1rem;
  padding: 2rem 0; font-size: .85rem; color: var(--c-muted);
  border-top: 1px solid var(--c-border);
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; } }

/* Misc helpers */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.center { display: flex; align-items: center; gap: .75rem; }
.between { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

/* Process timeline */
.timeline { position: relative; }
.timeline-row { display: flex; gap: 1rem; align-items: flex-start; }
.timeline-row .stem { display: flex; flex-direction: column; align-items: center; }
.timeline-row .line { width: 1px; flex: 1; background: var(--c-border); margin-top: .5rem; min-height: 1rem; }
.timeline-row + .timeline-row { margin-top: 0; }
.timeline-row .body { padding-bottom: 1.5rem; flex: 1; }

/* Team card */
.team-card { overflow: hidden; padding: 0; }
.team-card .row { display: flex; flex-direction: column; }
.team-card .photo { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.team-card .info { padding: 1.5rem; }
@media (min-width: 768px) {
  .team-card .row { flex-direction: row; }
  .team-card .row.reverse { flex-direction: row-reverse; }
  .team-card .photo-wrap { flex: 0 0 33%; }
  .team-card .photo { aspect-ratio: auto; height: 100%; }
  .team-card .info { flex: 1; padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
}

/* Quote */
.quote { background: rgba(63,193,163,.05); border: 1px solid rgba(63,193,163,.2); border-radius: var(--radius-lg); padding: 1.5rem; display: flex; gap: 1rem; }
.quote .mark { font-size: 2.5rem; line-height: 1; color: var(--c-accent); flex-shrink: 0; font-family: Georgia, serif; }
.quote blockquote { margin: 0; font-style: italic; font-size: 1.1rem; line-height: 1.5; }
.quote cite { display: block; margin-top: .75rem; font-size: .85rem; color: var(--c-muted); font-style: normal; }

/* Quote – Variants */
.quote.quote-card { flex-direction: column; gap: .5rem; height: 100%; padding: 1.5rem; }
.quote.quote-card .mark { font-size: 2rem; margin-bottom: -.25rem; }
.quote.quote-card blockquote { font-size: 1rem; }

.quote-pull { max-width: 42rem; margin: 1.5rem auto 0; text-align: center; padding: 1rem; }
.quote-pull blockquote { margin: 0; font-style: italic; font-size: 1.1rem; line-height: 1.55; color: var(--c-text); }
.quote-pull blockquote::before { content: "„"; color: var(--c-accent); font-family: Georgia, serif; font-size: 1.3em; margin-right: .05em; }
.quote-pull blockquote::after { content: "“"; color: var(--c-accent); font-family: Georgia, serif; font-size: 1.3em; margin-left: .05em; }
.quote-pull cite { display: block; margin-top: .85rem; font-size: .85rem; color: var(--c-muted); font-style: normal; }

.quote-inset { border-left: 3px solid var(--c-accent); padding: .5rem 0 .5rem .9rem; margin-top: 1.25rem; }
.quote-inset blockquote { margin: 0; font-style: italic; font-size: .95rem; line-height: 1.45; color: var(--c-text); }
.quote-inset cite { display: block; margin-top: .35rem; font-size: .78rem; color: var(--c-muted); font-style: normal; }

/* Section heading helper */
.section-head { max-width: 48rem; margin: 0 auto 3rem; text-align: center; }
.section-head .lead { margin-top: 1rem; }

/* Buttons row */
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }
@media (max-width: 639px) { .btn-row .btn { width: 100%; } }
