/* ─────────────────────────────────────────────
   seitenschmied · Shared styles for SEO subpages
───────────────────────────────────────────── */

:root {
  --teal: #14b8a6;
  --teal-dark: #0d9488;
  --teal-light: #f0fdfa;
  --teal-mid: #99f6e4;
  --green: #16a34a;
  --green-light: #f0fdf4;
  --ink: #1c1917;
  --ink-mid: #57534e;
  --ink-soft: #a8a29e;
  --border: #e7e5e4;
  --bg: #faf9f7;
  --card: #ffffff;
  --dark: #111110;
  --dark2: #1e1d1b;
  --grad: linear-gradient(135deg, #14b8a6 0%, #10b981 100%);
  --grad-shadow: rgba(20,184,166,0.28);
  --heading: 'Outfit', sans-serif;
  --body: 'DM Sans', sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --r: 14px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); background: var(--bg); color: var(--ink); line-height: 1.6; font-size: 16px; }
img { display: block; max-width: 100%; }
button, a { cursor: pointer; font-family: var(--body); }
a { text-decoration: none; color: inherit; }

/* ── LAYOUT ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section--sm { padding: 64px 0; }
.section-dark { background: var(--dark); color: white; }
.section-dark .h2 { color: white; }
.section-dark .body-l { color: rgba(255,255,255,.65); }
.section-dark .eyebrow { color: rgba(255,255,255,.35); }

.eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-soft); margin-bottom: 14px;
  display: block;
}
.h1 {
  font-family: var(--heading); font-weight: 900;
  font-size: clamp(36px, 5vw, 60px); line-height: 1.05;
  color: var(--ink); margin-bottom: 22px;
}
.h2 {
  font-family: var(--heading); font-weight: 900; font-size: clamp(28px, 4vw, 46px);
  line-height: 1.1; color: var(--ink); margin-bottom: 16px;
}
.h2 em { font-style: normal; color: var(--teal); }
.h3 { font-family: var(--heading); font-weight: 700; font-size: 19px; color: var(--ink); margin-bottom: 6px; }
.body-l { font-size: 17px; color: var(--ink-mid); line-height: 1.7; }
.body { font-size: 15.5px; color: var(--ink-mid); line-height: 1.7; }
.text-teal { color: var(--teal-dark); }
.text-white-soft { color: rgba(255,255,255,.65); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; font-family: var(--body); font-weight: 600;
  font-size: 15px; border-radius: 10px; border: none;
  transition: transform .2s, box-shadow .2s; white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--grad); color: white;
  box-shadow: 0 6px 20px var(--grad-shadow);
}
.btn-primary:hover { box-shadow: 0 10px 28px var(--grad-shadow); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); box-shadow: none; }
.btn-outline-white { background: transparent; color: white; border: 2px solid rgba(255,255,255,.4); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); box-shadow: none; }
.btn-sm { padding: 10px 18px; font-size: 13.5px; }

.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--ink-mid); line-height: 1.5; }
.check-list li i { color: var(--green); font-size: 17px; flex-shrink: 0; margin-top: 2px; }

.card { background: var(--card); border: 1.5px solid var(--border); border-radius: var(--r); }

/* ── NAV ── */
nav {
  position: sticky; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,249,247,.93); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 14px 24px; max-width: 1100px; margin: 0 auto;
}
.nav-logo img { height: 26px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a, .nav-links button {
  font-size: 14px; font-weight: 500; color: var(--ink-mid); background: none; border: none;
  transition: color .15s; padding: 0; font-family: var(--body);
}
.nav-links a:hover { color: var(--ink); }
.nav-links .active { color: var(--teal); font-weight: 600; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-actions .btn { padding: 9px 18px; font-size: 13.5px; }

/* ── BREADCRUMBS ── */
.crumbs {
  font-size: 13px; color: var(--ink-soft);
  padding: 18px 24px; max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.crumbs a { color: var(--ink-soft); transition: color .15s; }
.crumbs a:hover { color: var(--teal); }
.crumbs i { font-size: 12px; opacity: .5; }
.crumbs span.current { color: var(--ink); font-weight: 500; }

/* ── PAGE HERO (SEO subpages) ── */
.page-hero {
  background: var(--bg);
  padding: 32px 0 72px;
  border-bottom: 1.5px solid var(--border);
}
.page-hero-inner { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.page-hero h1 {
  font-family: var(--heading); font-weight: 900;
  font-size: clamp(32px, 4.5vw, 52px); line-height: 1.08;
  color: var(--ink); margin-bottom: 18px;
}
.page-hero h1 em { font-style: normal; color: var(--teal); }
.page-hero p.lede {
  font-size: 18px; color: var(--ink-mid); line-height: 1.65;
  max-width: 640px; margin-bottom: 28px;
}
.page-hero .hero-meta {
  display: flex; gap: 24px; flex-wrap: wrap;
  font-size: 13px; color: var(--ink-soft);
  padding-top: 18px; border-top: 1px solid var(--border);
  margin-top: 20px;
}
.page-hero .hero-meta strong { color: var(--ink); font-weight: 600; margin-right: 4px; }
.page-hero .hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── TOC ── */
.toc {
  background: var(--card); border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 20px 24px;
  margin-bottom: 36px;
}
.toc-label { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 10px; }
.toc ol { list-style: none; counter-reset: toc; display: flex; flex-direction: column; gap: 6px; }
.toc li {
  counter-increment: toc;
  display: flex; gap: 10px; align-items: baseline;
  font-size: 14.5px;
}
.toc li::before {
  content: counter(toc, decimal-leading-zero);
  font-family: var(--mono); font-size: 11px; color: var(--teal);
  font-weight: 600;
}
.toc li a { color: var(--ink-mid); transition: color .15s; }
.toc li a:hover { color: var(--teal); }

/* ── FAQ ── */
.faq { display: flex; flex-direction: column; gap: 10px; }
details.faq-item { background: var(--card); border: 1.5px solid var(--border); border-radius: 12px; overflow: hidden; }
details.faq-item[open] { border-color: var(--teal); }
summary {
  list-style: none; padding: 18px 22px; cursor: pointer;
  font-family: var(--heading); font-weight: 700; font-size: 15px; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; font-size: 22px; color: var(--teal); flex-shrink: 0; transition: transform .2s; }
details[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 22px 20px; font-size: 14.5px; color: var(--ink-mid); line-height: 1.7; }

/* ── FOOTER CTA ── */
.footer-cta { background: var(--grad); padding: 88px 0; text-align: center; color: white; }
.footer-cta h2 { font-family: var(--heading); font-size: clamp(26px, 4vw, 46px); font-weight: 900; color: white; margin-bottom: 14px; line-height: 1.15; }
.footer-cta p { font-size: 16px; color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 36px; line-height: 1.65; }
.footer-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.footer-cta .btn { font-weight: 700; }

/* ── FOOTER ── */
footer { background: var(--dark); padding: 56px 0 32px; color: white; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand img { height: 28px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.4); line-height: 1.65; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.5); transition: color .15s; }
.footer-col a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.footer-bottom span { font-size: 13px; color: rgba(255,255,255,.3); }

/* ── RELATED CARDS (cross-link block on subpages) ── */
.related-wrap { background: var(--card); border-top: 1.5px solid var(--border); padding: 64px 0; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
.related-card {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 22px 24px;
  transition: border-color .15s, transform .15s;
  display: flex; flex-direction: column; gap: 10px;
}
.related-card:hover { border-color: var(--teal); transform: translateY(-2px); }
.related-card-tag { font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal-dark); }
.related-card h4 { font-family: var(--heading); font-weight: 700; font-size: 17px; color: var(--ink); line-height: 1.25; }
.related-card p { font-size: 13.5px; color: var(--ink-mid); line-height: 1.55; }
.related-card-link { font-size: 13.5px; color: var(--teal-dark); font-weight: 600; display: inline-flex; align-items: center; gap: 5px; margin-top: 4px; }
.related-card-link i { transition: transform .15s; }
.related-card:hover .related-card-link i { transform: translateX(2px); }

/* ── COMMON BLOCKS ── */
.callout {
  background: var(--teal-light); border: 1.5px solid var(--teal-mid);
  border-radius: var(--r); padding: 20px 24px; margin: 24px 0;
}
.callout p { font-size: 15px; color: var(--ink-mid); margin: 0; line-height: 1.6; }
.callout strong { color: var(--ink); }

.fixed-price-card {
  background: var(--dark); color: white; border-radius: var(--r);
  padding: 28px 32px; margin: 32px 0;
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
}
.fixed-price-card .label { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #5eead4; margin-bottom: 6px; }
.fixed-price-card h3 { font-family: var(--heading); font-size: 22px; font-weight: 800; color: white; margin-bottom: 6px; }
.fixed-price-card p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.6; }
.fixed-price-card .price { font-family: var(--heading); font-size: 36px; font-weight: 900; color: white; line-height: 1; }
.fixed-price-card .price-sub { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 4px; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .fixed-price-card { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
}
