/* =====================================================
   TechFix IT Support – Stylesheet
   Encoding: UTF-8 | Kein externes Framework
   Keine Tracker · Keine externen Fonts · DSGVO-konform
   ===================================================== */

/* --- Reset & Base ----------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
               'Helvetica Neue', Arial, sans-serif;
  color: var(--text-primary);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }
:focus-visible { outline: 3px solid var(--primary); outline-offset: 3px; }

/* --- CSS Variables ---------------------------------- */
:root {
  --primary:        #1d4ed8;
  --primary-hover:  #1e40af;
  --primary-dark:   #1e3a8a;
  --primary-light:  #eff6ff;
  --primary-border: #bfdbfe;

  --text-primary:   #0f172a;
  --text-secondary: #334155;
  --text-muted:     #64748b;

  --bg:             #ffffff;
  --bg-subtle:      #f8fafc;
  --bg-muted:       #f1f5f9;

  --border:         #e2e8f0;
  --border-strong:  #cbd5e1;

  --success:        #16a34a;
  --success-light:  #f0fdf4;
  --success-border: rgba(22,163,74,0.22);

  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 3px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
  --shadow:    0 4px 16px rgba(15,23,42,0.08), 0 2px 6px rgba(15,23,42,0.04);
  --shadow-lg: 0 20px 48px rgba(15,23,42,0.10), 0 8px 20px rgba(15,23,42,0.06);

  --nav-height:    72px;
  --container-max: 1180px;
  --section-gap:   96px;
}

/* --- Layout ----------------------------------------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 640px) { .container { padding: 0 16px; } }

section { padding: var(--section-gap) 0; }

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.65;
}
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* --- Navigation ------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.site-header.scrolled { box-shadow: var(--shadow); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  flex-shrink: 0;
  letter-spacing: -0.3px;
}
.nav-logo:hover { text-decoration: none; }
.logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #1d4ed8, #3b82f6);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
}
.logo-accent { color: var(--primary); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: flex-end;
}
.nav-link {
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--text-primary); background: var(--bg-muted); text-decoration: none; }
.nav-link.active { color: var(--primary); font-weight: 600; background: var(--primary-light); }
.nav-cta {
  background: var(--primary) !important;
  color: white !important;
  padding: 9px 20px !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  margin-left: 8px;
  transition: background 0.15s, transform 0.12s !important;
}
.nav-cta:hover {
  background: var(--primary-hover) !important;
  transform: translateY(-1px) !important;
  text-decoration: none !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}
.nav-toggle:hover { background: var(--bg-muted); }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.skip-link {
  position: absolute;
  top: -999px;
  left: 8px;
  padding: 8px 16px;
  background: var(--primary);
  color: white;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600;
  z-index: 999;
}
.skip-link:focus { top: 0; }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: white;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 16px 20px;
  }
  .nav-menu.open { display: flex; }
  .nav-link { padding: 12px 16px; font-size: 15px; }
  .nav-cta { text-align: center; margin-left: 0 !important; margin-top: 8px; }
}

/* --- Buttons ---------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.12s, box-shadow 0.15s, background 0.15s, border-color 0.15s;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 16px rgba(29,78,216,0.28);
}
.btn-primary:hover { background: var(--primary-hover); box-shadow: 0 8px 28px rgba(29,78,216,0.35); }

.btn-secondary {
  background: white;
  color: var(--primary);
  border-color: var(--primary-border);
}
.btn-secondary:hover { background: var(--primary-light); border-color: var(--primary); }

.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.55);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: white; }

.btn-lg { padding: 16px 34px; font-size: 16px; border-radius: var(--radius-lg); }
.btn-sm { padding: 8px 16px; font-size: 13px; border-radius: var(--radius-sm); }

.btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* --- Hero ------------------------------------------- */
.hero {
  padding: 80px 0 96px;
  background: linear-gradient(160deg, #f0f7ff 0%, #ffffff 55%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(59,130,246,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--success);
  background: var(--success-light);
  border: 1px solid var(--success-border);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(22,163,74,0.2); }
  50%       { box-shadow: 0 0 0 5px rgba(22,163,74,0.08); }
}
.hero-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.2px;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.hero-title em { font-style: normal; color: var(--primary); }
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-ctas { margin-bottom: 48px; }
.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label { font-size: 13px; color: var(--text-muted); font-weight: 500; }

/* Hero visual card */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  width: 100%;
  max-width: 360px;
}
.hero-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.hero-card-icon {
  width: 42px; height: 42px;
  background: var(--primary-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.hero-card-title { font-weight: 700; font-size: 14px; color: var(--text-primary); }
.hero-card-sub { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.hero-card-items { display: grid; gap: 10px; }
.hero-card-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--bg-subtle);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.hero-card-item-icon {
  width: 30px; height: 30px;
  background: var(--primary-light);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
}
.hero-card-item-text { flex: 1; font-size: 13px; font-weight: 600; color: var(--text-primary); }
.hero-card-item-status {
  font-size: 10px; font-weight: 700;
  padding: 3px 8px; border-radius: 999px;
}
.status-ok   { background: var(--success-light); color: var(--success); }
.status-wait { background: #fef9c3; color: #854d0e; }
.status-now  { background: #dbeafe; color: #1d4ed8; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .hero-card { max-width: 100%; }
}
@media (max-width: 640px) {
  .hero { padding: 56px 0 64px; }
  .hero-stats { gap: 24px; }
}

/* --- Services Grid ---------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.15s, border-color 0.2s;
  display: flex; flex-direction: column; gap: 0;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--primary-border);
}
.service-icon {
  width: 48px; height: 48px;
  background: var(--primary-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 16px;
}
.service-title {
  font-size: 17px; font-weight: 700;
  margin-bottom: 8px; color: var(--text-primary);
}
.service-desc {
  font-size: 14px; color: var(--text-muted); line-height: 1.6;
  flex: 1; margin-bottom: 16px;
}
.service-link {
  font-size: 13px; font-weight: 600; color: var(--primary);
  display: inline-flex; align-items: center; gap: 4px;
}
.service-link:hover { text-decoration: underline; }

@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .services-grid { grid-template-columns: 1fr; } }

/* --- Process Steps ---------------------------------- */
.steps-wrap { background: var(--bg-subtle); }
.steps-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.steps-list::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(12.5% + 26px);
  right: calc(12.5% + 26px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary-border), var(--primary), var(--primary-border));
  opacity: 0.5;
}
.step { text-align: center; position: relative; }
.step-num {
  width: 54px; height: 54px;
  background: white;
  border: 2px solid var(--primary-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800; color: var(--primary);
  margin: 0 auto 16px;
  position: relative; z-index: 1;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.step:hover .step-num {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(29,78,216,0.28);
}
.step-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); }
.step-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

@media (max-width: 860px) {
  .steps-list { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps-list::before { display: none; }
}
@media (max-width: 480px) { .steps-list { grid-template-columns: 1fr; } }

/* --- Trust / USP ----------------------------------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-item {
  text-align: center;
  padding: 32px 20px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.15s;
}
.trust-item:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.trust-icon { font-size: 38px; margin-bottom: 14px; }
.trust-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; color: var(--text-primary); }
.trust-desc { font-size: 14px; color: var(--text-muted); line-height: 1.55; }

@media (max-width: 860px) { .trust-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .trust-grid { grid-template-columns: 1fr; } }

/* --- FAQ ------------------------------------------- */
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 10px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: white;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-size: 16px; font-weight: 600;
  color: var(--text-primary);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: background 0.15s;
  cursor: pointer;
}
.faq-question:hover { background: var(--bg-subtle); }
.faq-question[aria-expanded="true"] { color: var(--primary); background: var(--primary-light); }
.faq-chevron {
  width: 22px; height: 22px; flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.22s, color 0.15s;
  display: flex; align-items: center; justify-content: center;
}
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); color: var(--primary); }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 15px; color: var(--text-secondary); line-height: 1.7;
  border-top: 1px solid var(--border);
}
.faq-answer p { padding-top: 16px; }
.faq-answer.open { display: block; }

/* --- CTA Banner ------------------------------------ */
.cta-section {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 50%, #1e3a8a 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before,
.cta-section::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section::before { top: -200px; left: -100px; }
.cta-section::after  { bottom: -200px; right: -100px; }
.cta-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: white;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

/* --- Contact Form ---------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: start;
}
.contact-info { display: grid; gap: 24px; }
.contact-info-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.contact-info-icon {
  width: 42px; height: 42px;
  background: var(--primary-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.contact-info-label {
  font-size: 11px; color: var(--text-muted);
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px;
  margin-bottom: 4px;
}
.contact-info-value { font-weight: 600; color: var(--text-primary); font-size: 15px; }
.contact-info-value a { color: var(--primary); }

.contact-form {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 14px; font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 7px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px; color: var(--text-primary);
  background: white;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(29,78,216,0.1);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-hint { font-size: 12px; color: var(--text-muted); margin-top: 5px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-consent {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 13px; color: var(--text-muted); line-height: 1.55;
  margin-bottom: 24px;
}
.form-consent input[type="checkbox"] {
  width: 16px; height: 16px;
  margin-top: 2px; flex-shrink: 0;
  accent-color: var(--primary);
}
.form-consent a { color: var(--primary); }
.form-success {
  display: none;
  padding: 20px 24px;
  background: var(--success-light);
  border: 1px solid var(--success-border);
  border-radius: var(--radius-lg);
  color: #14532d;
  font-weight: 600;
  font-size: 15px;
  margin-top: 16px;
}

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) {
  .contact-form { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; }
}

/* --- Footer ---------------------------------------- */
.site-footer {
  background: var(--text-primary);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { color: white; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; max-width: 300px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65); font-size: 16px; text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.footer-social a:hover { background: rgba(255,255,255,0.16); color: white; text-decoration: none; }
.footer-col h4 {
  font-size: 11px; font-weight: 700; color: white;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px;
}
.footer-links { display: grid; gap: 8px; }
.footer-links a {
  font-size: 14px; color: rgba(255,255,255,0.55); text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: white; }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: 13px;
}
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.15s; }
.footer-legal a:hover { color: rgba(255,255,255,0.85); }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 580px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* --- Page Hero (Unterseiten) ----------------------- */
.page-hero {
  padding: 64px 0 56px;
  background: linear-gradient(160deg, #f0f7ff 0%, #ffffff 70%);
  border-bottom: 1px solid var(--border);
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-muted); margin-bottom: 18px;
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color 0.15s; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb-sep { color: var(--border-strong); }
.page-hero-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  letter-spacing: -0.6px;
  margin-bottom: 14px;
  color: var(--text-primary);
}
.page-hero-sub { font-size: 17px; color: var(--text-muted); max-width: 600px; line-height: 1.65; }

/* --- Leistungen (Detailseite) ---------------------- */
.leistung-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.leistung-detail:last-child { border-bottom: none; }
.leistung-detail.reverse .leistung-text { order: 2; }
.leistung-detail.reverse .leistung-visual { order: 1; }
.leistung-num {
  font-size: 56px; font-weight: 900;
  color: var(--primary-border); line-height: 1; margin-bottom: 10px;
}
.leistung-title { font-size: 26px; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.3px; }
.leistung-desc { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.leistung-features { display: grid; gap: 10px; margin-bottom: 24px; }
.leistung-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; color: var(--text-secondary);
}
.leistung-feature::before {
  content: '✓';
  width: 22px; height: 22px;
  background: var(--success-light);
  color: var(--success);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; flex-shrink: 0;
}
.leistung-visual {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  min-height: 260px;
  display: flex; align-items: center; justify-content: center;
  font-size: 72px;
}

@media (max-width: 860px) {
  .leistung-detail { grid-template-columns: 1fr; gap: 32px; }
  .leistung-detail.reverse .leistung-text,
  .leistung-detail.reverse .leistung-visual { order: unset; }
  .leistung-visual { min-height: 140px; font-size: 56px; }
}

/* --- Tool Vorschau ---------------------------------- */
.tool-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.tool-feature-list { display: grid; gap: 12px; margin-top: 28px; }
.tool-feature {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 16px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.tool-feature:hover { border-color: var(--primary-border); box-shadow: var(--shadow-sm); }
.tool-feature-icon {
  width: 36px; height: 36px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.tool-feature h4 { font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.tool-feature p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* Mockup-Fenster */
.tool-mockup {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.mockup-bar {
  background: #1e293b;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
}
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span { width: 12px; height: 12px; border-radius: 50%; }
.mockup-dots span:nth-child(1) { background: #ef4444; }
.mockup-dots span:nth-child(2) { background: #f59e0b; }
.mockup-dots span:nth-child(3) { background: #22c55e; }
.mockup-url {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 4px 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  font-family: monospace;
}
.mockup-body {
  background: #0f172a;
  padding: 20px;
  min-height: 300px;
  display: grid;
  gap: 10px;
}
.mockup-row {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
}
.mockup-icon { font-size: 18px; }
.mockup-label { font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 500; flex: 1; }
.mockup-badge {
  font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 999px;
}
.mb-blue  { background: rgba(59,130,246,0.2);  color: #93c5fd; }
.mb-green { background: rgba(34,197,94,0.2);   color: #86efac; }
.mb-amber { background: rgba(245,158,11,0.2);  color: #fcd34d; }

@media (max-width: 900px) { .tool-overview { grid-template-columns: 1fr; gap: 40px; } }

/* --- Über uns -------------------------------------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  padding: 28px 24px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: box-shadow 0.2s, transform 0.15s;
}
.value-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.value-icon { font-size: 32px; margin-bottom: 14px; }
.value-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.value-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

@media (max-width: 720px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .values-grid { grid-template-columns: 1fr; } }

/* --- Legal pages ----------------------------------- */
.legal-content { max-width: 760px; }
.legal-content h2 {
  font-size: 22px; font-weight: 700;
  margin: 40px 0 12px; color: var(--text-primary);
  padding-bottom: 8px; border-bottom: 1px solid var(--border);
}
.legal-content h3 {
  font-size: 17px; font-weight: 700; margin: 24px 0 8px; color: var(--text-primary);
}
.legal-content p {
  font-size: 15px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 14px;
}
.legal-content ul, .legal-content ol {
  padding-left: 20px; margin-bottom: 14px;
}
.legal-content ul { list-style: disc; }
.legal-content ol { list-style: decimal; }
.legal-content li {
  font-size: 15px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 6px;
}
.legal-content a { color: var(--primary); text-decoration: underline; }
.legal-box {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
  font-size: 14px; color: var(--text-secondary); line-height: 1.7;
}
.legal-box strong { color: var(--text-primary); }
.legal-warn {
  background: #fefce8;
  border: 1px solid #fde047;
  border-left: 4px solid #ca8a04;
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 14px; color: #713f12; line-height: 1.65; margin: 20px 0;
}

/* --- 404 page -------------------------------------- */
.error-page {
  min-height: 60vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 80px 24px;
}
.error-code {
  font-size: clamp(80px, 20vw, 140px);
  font-weight: 900;
  color: var(--primary-border);
  line-height: 1; margin-bottom: 16px;
  letter-spacing: -4px;
}
.error-title { font-size: clamp(22px, 4vw, 30px); font-weight: 800; margin-bottom: 12px; }
.error-desc {
  font-size: 16px; color: var(--text-muted);
  max-width: 420px; margin: 0 auto 36px; line-height: 1.65;
}
.error-links { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* --- Utilities ------------------------------------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.bg-subtle { background: var(--bg-subtle); }
.divider { height: 1px; background: var(--border); margin: 48px 0; }
.tag {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 12px;
  background: var(--primary-light); color: var(--primary);
  border-radius: 999px; font-size: 12px; font-weight: 600;
}

/* --- Animations ------------------------------------ */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-delay-1 { transition-delay: 0.1s; }
.fade-delay-2 { transition-delay: 0.2s; }
.fade-delay-3 { transition-delay: 0.3s; }
