/* ============================================================
   Byteclue – main.css
   Design: Hell / gemischt · seriös · modern · nahbar
   ============================================================ */

/* Google Fonts werden nach Cookie-Zustimmung dynamisch geladen (cookie.js) */
/* @import url('https://fonts.googleapis.com/css2?...') – ausgelagert für DSGVO */

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  /* Farben */
  --navy:       #0f1e2e;
  --navy2:      #162435;
  --navy3:      #1e3045;
  --accent:     #1a6cf5;
  --accent-l:   #3d85f7;
  --accent-d:   #1459d0;
  --gold:       #c9963a;
  --gold-l:     #e0b05a;

  --white:      #ffffff;
  --off-white:  #f7f8fa;
  --gray-50:    #f0f2f5;
  --gray-100:   #e4e8ee;
  --gray-200:   #cdd3dc;
  --gray-400:   #8a96a8;
  --gray-600:   #4a5568;
  --gray-800:   #1a2333;

  --text:       #1a2333;
  --text-mid:   #4a5568;
  --text-light: #8a96a8;

  --success:    #22c55e;
  --warn:       #f59e0b;
  --danger:     #ef4444;

  /* Fonts */
  --serif:  'Fraunces', Georgia, serif;
  --sans:   'DM Sans', system-ui, sans-serif;
  --mono:   'DM Mono', 'Courier New', monospace;

  /* Layout */
  --max-w:    1120px;
  --radius:   8px;
  --radius-l: 16px;
  --shadow-s: 0 1px 4px rgba(15,30,46,0.08);
  --shadow-m: 0 4px 20px rgba(15,30,46,0.1);
  --shadow-l: 0 12px 48px rgba(15,30,46,0.14);
  --transition: 0.2s ease;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a  { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Container ──────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Typography ─────────────────────────────────────────────── */
.display {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--mono);
}
.lead {
  font-size: 18px;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.7;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 2px 12px rgba(26,108,245,0.3);
}
.btn-primary:hover {
  background: var(--accent-d);
  box-shadow: 0 4px 20px rgba(26,108,245,0.4);
  transform: translateY(-1px);
  text-decoration: none;
  color: white;
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: white;
  text-decoration: none;
}
.btn-ghost {
  background: transparent;
  color: var(--text-mid);
  border: 1.5px solid var(--gray-200);
}
.btn-ghost:hover {
  border-color: var(--gray-400);
  color: var(--text);
  text-decoration: none;
}
.btn-lg { padding: 15px 32px; font-size: 16px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* ── Header ─────────────────────────────────────────────────── */
#site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--accent), var(--accent-l));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: white;
  font-family: var(--mono);
  letter-spacing: -1px;
  flex-shrink: 0;
}
.logo-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: white;
  letter-spacing: -0.3px;
}

nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all var(--transition);
  text-decoration: none;
}
.nav-link:hover { color: white; background: rgba(255,255,255,0.08); text-decoration: none; }
.nav-link.active { color: white; }

.nav-tool {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(26,108,245,0.2);
  color: #7ab4ff;
  border: 1px solid rgba(26,108,245,0.3);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 6px;
  transition: all var(--transition);
  text-decoration: none;
  margin-left: 8px;
}
.nav-tool:hover {
  background: rgba(26,108,245,0.35);
  color: white;
  text-decoration: none;
}

.nav-cta {
  margin-left: 8px;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: all 0.25s;
}

/* ── Hero Section ───────────────────────────────────────────── */
#hero {
  background: var(--navy);
  padding: 88px 0 80px;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26,108,245,0.12) 0%, transparent 65%);
  pointer-events: none;
}
#hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,108,245,0.15);
  border: 1px solid rgba(26,108,245,0.25);
  color: #7ab4ff;
  font-size: 12px;
  font-family: var(--mono);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 24px;
}
.hero-tag-dot {
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--success);
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 700;
  color: white;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  color: #7ab4ff;
  font-weight: 300;
}

.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.62);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.trust-item svg, .trust-item span.icon { color: var(--success); font-size: 15px; }

.hero-image-wrap {
  position: relative;
}
.hero-image-wrap img {
  width: 100%;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-l);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.hero-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-l);
  background: linear-gradient(135deg, var(--navy2), var(--navy3));
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.25);
  font-size: 14px;
}
.hero-image-placeholder .icon { font-size: 40px; opacity: 0.4; }

.hero-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: white;
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-l);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-badge-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #1a6cf5, #3d85f7);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.hero-badge-text { font-size: 12px; color: var(--text-mid); line-height: 1.4; }
.hero-badge-text strong { font-size: 14px; color: var(--text); display: block; }

.hero-fi-note { font-size: 14px; color: var(--text-mid); margin-top: 10px; line-height: 1.6; }
.hero-fi-link { color: var(--accent); font-weight: 500; text-decoration: none; }
.hero-fi-link:hover { text-decoration: underline; }

/* ── Section Base ───────────────────────────────────────────── */
section { padding: 80px 0; }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.section-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--text);
  margin-top: 10px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.section-sub { font-size: 17px; color: var(--text-mid); margin-top: 14px; font-weight: 300; }

/* ── Leistungen ─────────────────────────────────────────────── */
#leistungen { background: var(--off-white); }

.leistungen-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
  background: var(--white);
  border-radius: var(--radius-l);
  padding: 40px 48px;
  box-shadow: var(--shadow-s);
  border: 1px solid var(--gray-100);
}
.leistungen-intro-text h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.leistungen-intro-text p {
  color: var(--text-mid);
  font-size: 16px;
  line-height: 1.75;
}
.leistungen-intro-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-label { font-size: 13px; color: var(--text-light); margin-top: 4px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-l);
  padding: 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-l));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  border-color: var(--gray-200);
  box-shadow: var(--shadow-m);
  transform: translateY(-3px);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--gray-50);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  transition: background var(--transition);
}
.service-card:hover .service-icon { background: rgba(26,108,245,0.08); }

.service-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.service-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
}
.service-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}
.service-card.featured h3 { color: white; }
.service-card.featured p  { color: rgba(255,255,255,0.65); }
.service-card.featured .service-icon { background: rgba(255,255,255,0.1); }
.service-card.featured::before { background: linear-gradient(90deg, var(--gold), var(--gold-l)); }

/* ── Über Mich ──────────────────────────────────────────────── */
#ueber-mich { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.about-image-wrap { position: relative; }
.about-img {
  width: 100%;
  border-radius: var(--radius-l);
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-l);
}
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--gray-50);
  border-radius: var(--radius-l);
  border: 2px dashed var(--gray-200);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 13px;
}
.about-img-placeholder .icon { font-size: 36px; }

.about-location-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow-m);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}
.about-location-badge strong { display: block; color: var(--text); font-size: 14px; }
.about-location-badge span { color: var(--text-mid); font-size: 12px; }

/* OpenStreetMap Karte */
.maps-embed {
  margin-top: 24px;
  margin-bottom: 24px;
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-s);
}
.maps-embed iframe { display: block; width: 100%; height: 260px; border: none; }

.about-content { padding-top: 8px; }
.about-content h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.about-content p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}

.checklist {
  list-style: none;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-mid);
}
.check-icon {
  width: 20px;
  height: 20px;
  background: rgba(26,108,245,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.why-box {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-l);
  padding: 28px;
  margin-top: 32px;
}
.why-box h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ── Kontakt ────────────────────────────────────────────────── */
#kontakt { background: var(--off-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.contact-info p { font-size: 15px; color: var(--text-mid); line-height: 1.75; margin-bottom: 28px; }

.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-mid);
}
.contact-detail-icon {
  width: 36px;
  height: 36px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: var(--shadow-s);
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-l);
  padding: 36px;
  box-shadow: var(--shadow-m);
  border: 1px solid var(--gray-100);
}
.contact-form-wrap h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}
.contact-form-wrap .sub {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 28px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26,108,245,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238a96a8' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }

.form-submit { width: 100%; justify-content: center; margin-top: 4px; }

/* ── Bewertungen ────────────────────────────────────────────── */
#bewertungen { background: var(--white); }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 36px; }

.review-card {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-l);
  padding: 24px;
  transition: box-shadow var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-m); }

.stars { color: var(--gold); font-size: 15px; letter-spacing: 1px; margin-bottom: 12px; }
.review-text { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-author { font-size: 13px; font-weight: 600; color: var(--text); }
.review-date   { font-size: 12px; color: var(--text-light); }

/* Write Review Toggle */
.write-review-wrap { max-width: 600px; margin: 0 auto; }
.write-review-toggle {
  width: 100%;
  justify-content: center;
  margin-bottom: 24px;
}

.write-review-form {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-l);
  padding: 32px;
  display: none;
}
.write-review-form.open { display: block; }
.write-review-form h3 { font-family: var(--serif); font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.write-review-form .sub { font-size: 14px; color: var(--text-mid); margin-bottom: 24px; }

/* Star Rating Input */
.star-input { display: flex; gap: 6px; margin-bottom: 4px; }
.star-input label {
  font-size: 28px;
  cursor: pointer;
  color: var(--gray-200);
  transition: color 0.1s;
  line-height: 1;
}
.star-input input { display: none; }
.star-input label:hover,
.star-input label:hover ~ label,
.star-input input:checked ~ label { color: var(--gray-200); }
.star-input label:has(~ input:checked),
.star-input input:checked + label { color: var(--gold); }
/* Fallback for browsers without :has */
.star-input.s1 label:nth-child(-n+2),
.star-input.s2 label:nth-child(-n+4),
.star-input.s3 label:nth-child(-n+6),
.star-input.s4 label:nth-child(-n+8),
.star-input.s5 label { color: var(--gold); }

.consent-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  padding: 14px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
}
.consent-row p { font-size: 13px; color: var(--text-mid); line-height: 1.5; }

/* Toggle Switch */
.toggle-switch { position: relative; width: 44px; height: 24px; flex-shrink: 0; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-track {
  position: absolute; inset: 0;
  background: var(--gray-200);
  border-radius: 99px;
  cursor: pointer;
  transition: background 0.2s;
}
.toggle-track::after {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 18px; height: 18px;
  background: white;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.toggle-switch input:checked + .toggle-track { background: var(--accent); }
.toggle-switch input:checked + .toggle-track::after { transform: translateX(20px); }

/* ── FileInsight CTA Banner ─────────────────────────────────── */
#fileinsight-cta {
  background: var(--navy);
  padding: 56px 0;
}
.fi-cta-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  justify-content: space-between;
}
.fi-cta-icon {
  width: 72px;
  height: 72px;
  background: rgba(26,108,245,0.2);
  border: 1px solid rgba(26,108,245,0.3);
  border-radius: var(--radius-l);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  flex-shrink: 0;
}
.fi-cta-text { flex: 1; }
.fi-cta-text h2 {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}
.fi-cta-text p { font-size: 15px; color: rgba(255,255,255,0.6); max-width: 500px; }
.btn-fi {
  background: rgba(26,108,245,0.2);
  color: #7ab4ff;
  border: 1px solid rgba(26,108,245,0.35);
  flex-shrink: 0;
}
.btn-fi:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  text-decoration: none;
}

/* ── Footer ─────────────────────────────────────────────────── */
#site-footer {
  background: var(--navy);
  padding: 56px 0 32px;
  color: rgba(255,255,255,0.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand .logo-name { font-size: 18px; margin-bottom: 10px; margin-top: 8px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; }
.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
  font-family: var(--mono);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col a:hover { color: white; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── Notification Toast ─────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--text);
  color: white;
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  box-shadow: var(--shadow-l);
  z-index: 999;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { background: var(--success); }

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; transform: translateY(16px); transition: opacity 0.4s ease, transform 0.4s ease; }
/* Sicherheitsnetz: nach 2s immer sichtbar */
.fade-up { animation: forceVisible 0s 2s forwards; }
@keyframes forceVisible { to { opacity: 1; transform: none; } }
.fade-up.visible { opacity: 1; transform: translateY(0); animation: none; }

/* Fallback: wenn JS nicht läuft oder Observer zu langsam */
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; }
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image-wrap { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrap { display: none; }
  .about-location-badge { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .fi-cta-inner { flex-direction: column; text-align: center; }
  .fi-cta-text p { margin: 0 auto; }
  .leistungen-intro { grid-template-columns: 1fr; }
}

@media (max-width: 660px) {
  section { padding: 56px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid  { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-group { margin-bottom: 10px; }
  .footer-grid { grid-template-columns: 1fr; }
  nav { display: none; }
  nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: var(--navy);
    padding: 16px 28px 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
    gap: 4px;
    z-index: 99;
  }
  .nav-toggle { display: flex; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 12px; }
}

@media (max-width: 400px) {
  .container { padding: 0 18px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ── Scroll bar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--gray-200); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-400); }

/* ── Pricing Toggle ─────────────────────────────────────────── */
.pricing-toggle-wrap {
  margin-top: 32px;
}

.pricing-toggle-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-l);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  transition: all var(--transition);
  box-shadow: var(--shadow-s);
}
.pricing-toggle-btn:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26,108,245,0.06);
}
.pricing-toggle-label {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pricing-toggle-icon { font-size: 20px; }
.pricing-toggle-arrow {
  font-size: 12px;
  color: var(--text-light);
  transition: transform 0.25s ease;
}
.pricing-toggle-arrow.open { transform: rotate(180deg); }

.pricing-panel {
  margin-top: 4px;
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-l);
  padding: 28px;
  box-shadow: var(--shadow-s);
  animation: slideDown 0.25s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.pricing-intro {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
  border-left: 3px solid var(--accent);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 860px) { .pricing-grid { grid-template-columns: 1fr; } }

.pricing-card {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
}
.pricing-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-100);
}
.pricing-icon { font-size: 18px; }
.pricing-card-header h3 { font-size: 15px; font-weight: 600; }

.pricing-items { padding: 4px 0; }
.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 18px;
  border-bottom: 1px solid var(--gray-50);
  gap: 12px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.5;
}
.pricing-item:last-child { border-bottom: none; }
.pricing-item small { display: block; font-size: 12px; color: var(--text-light); margin-top: 2px; }
.pricing-value { font-weight: 600; color: var(--text); white-space: nowrap; flex-shrink: 0; font-size: 14px; }
.pricing-value.free { color: var(--success); }

.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

/* ── Reviews Placeholder ────────────────────────────────────── */
.reviews-placeholder {
  margin-bottom: 36px;
}
.reviews-placeholder-inner {
  text-align: center;
  padding: 48px 32px;
  background: var(--off-white);
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius-l);
  max-width: 560px;
  margin: 0 auto;
}
.placeholder-stars {
  font-size: 32px;
  color: var(--gray-200);
  letter-spacing: 4px;
  margin-bottom: 16px;
}
.placeholder-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}
.placeholder-sub {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
}

/* ── Star Rating Input (button-based) ───────────────────────── */
.star-rating-input {
  display: flex;
  gap: 4px;
  margin-bottom: 6px;
}
.star-btn {
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--gray-200);
  padding: 2px 4px;
  line-height: 1;
  transition: color 0.1s, transform 0.1s;
  border-radius: 4px;
}
.star-btn:hover { transform: scale(1.15); }
.star-btn.active { color: var(--gold); }
.star-btn.hover  { color: var(--gold-l); }

.star-hint {
  font-size: 12px;
  color: var(--text-light);
  font-style: italic;
}

.review-moderation-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-light);
  text-align: center;
  padding: 10px;
  background: var(--off-white);
  border-radius: var(--radius);
}

/* ── Dynamic Review Cards ───────────────────────────────────── */
.reviews-grid-dynamic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
@media (max-width: 760px) { .reviews-grid-dynamic { grid-template-columns: 1fr; } }

/* ── "Leistungen ansehen" Ghost Button (dezenter Hover) ─────── */
.btn-hero-ghost {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-hero-ghost:hover {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.95);
  border-color: rgba(255,255,255,0.35);
  text-decoration: none;
  transform: none;
}

/* ── nav-tool hover (FileInsight im Header) ─────────────────── */
.nav-tool {
  transition: all 0.2s ease;
}
.nav-tool:hover {
  background: var(--accent) !important;
  color: white !important;
  border-color: var(--accent) !important;
}

/* ── Logo SVG ───────────────────────────────────────────────── */
.logo-svg { flex-shrink: 0; }
.logo-mark { display: none; } /* alten Bc-Block ausblenden falls noch vorhanden */

/* ── Service Card als Link (featured) ───────────────────────── */
.service-card-link { display: block; cursor: pointer; }
.service-card-link:hover { text-decoration: none; }
.service-card-link.featured:hover { transform: translateY(-3px); filter: brightness(1.08); }

/* ── contact-detail-icon mit SVG ───────────────────────────── */
.contact-detail-icon--svg {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Label Optional Hint ─────────────────────────────────────── */
.label-optional {
  font-weight: 400;
  color: var(--text-light);
  font-size: 12px;
}

/* ── Form Validation Styles ─────────────────────────────────── */
.field-error {
  display: block;
  font-size: 12px;
  color: var(--danger);
  margin-top: 4px;
  min-height: 16px;
}
.field-invalid {
  border-color: var(--danger) !important;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1) !important;
}
.form-feedback {
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}
.form-feedback--success {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.25);
  color: #15803d;
}
.form-feedback--error {
  background: rgba(239,68,68,0.06);
  border: 1px solid rgba(239,68,68,0.2);
  color: #b91c1c;
}

/* ── Review Toggle Button (neu – kein Emoji, mittig) ─────────── */
.write-review-wrap {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.review-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-s);
  margin-bottom: 0;
}
.review-toggle-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26,108,245,0.08);
}
.review-toggle-btn.is-open {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(26,108,245,0.03);
}
.review-toggle-chevron {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.review-toggle-btn.is-open .review-toggle-chevron {
  transform: rotate(180deg);
}

/* Aufklappbares Formular */
.write-review-form {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-l);
  padding: 32px;
  margin-top: 16px;
  text-align: left;
  display: none;
  animation: slideDown 0.2s ease;
}
.write-review-form.open { display: block; }
.write-review-form h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}
.write-review-form .sub {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 24px;
}


/* ── Service Icon SVG ─────────────────────────────────────────── */
.service-icon--svg {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(26,108,245,0.08);
  border: 1px solid rgba(26,108,245,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 18px;
  flex-shrink: 0;
}
.service-card.featured .service-icon--svg {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.2);
  color: white;
}

/* ── Service Disclaimer ──────────────────────────────────────── */
.service-disclaimer {
  display: block;
  font-style: normal;
  font-size: 11.5px;
  color: var(--text-mid);
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--gray-100);
  opacity: 0.75;
}

/* ── Pricing Toggle – kein Emoji, zentriert ──────────────────── */
.pricing-toggle-label {
  flex: 1;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}
.pricing-toggle-icon { display: none; } /* alten Emoji-Span ausblenden */

/* ── Pricing Icon SVG ────────────────────────────────────────── */
.pricing-icon--svg {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

/* ── Logo als img-Element ─────────────────────────────────────── */
.logo-img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: contain;
  flex-shrink: 0;
}

/* ── Preisliste-Button: sichtbarer, größer, fett ─────────────── */
.pricing-toggle-btn {
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em;
  padding: 16px 32px !important;
  border: 2px solid var(--gray-200) !important;
  color: var(--text) !important;
}
.pricing-toggle-btn:hover,
.pricing-toggle-btn[aria-expanded="true"] {
  border-color: var(--accent) !important;
  color: var(--accent) !important;
  background: rgba(26,108,245,0.03) !important;
}
.pricing-toggle-wrap {
  text-align: center;
}
.pricing-toggle-btn {
  display: inline-flex !important;
  width: auto !important;
  min-width: 340px;
  justify-content: center;
}

/* ── Nav-Tool Tooltip "Tool öffnen" ──────────────────────────── */
.nav-tool { position: relative; overflow: visible; }
.nav-tool-tip {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--navy);
  color: rgba(255,255,255,0.92);
  font-size: 11px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 500;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.nav-tool-tip::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-bottom-color: var(--navy);
}
.nav-tool:hover .nav-tool-tip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Cookie Banner ───────────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  inset: 0;
  z-index: 9900;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  font-family: var(--sans), system-ui, sans-serif;
}
#cookie-banner.bc-visible {
  opacity: 1;
  pointer-events: auto;
}
#cookie-banner.bc-hiding {
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-main {
  background: var(--navy);
  border-radius: 14px;
  padding: 28px 28px 24px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 24px 64px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.06);
  transform: scale(0.95);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
#cookie-banner.bc-visible .cookie-banner-main { transform: scale(1); }
#cookie-banner.bc-hiding .cookie-banner-main  { transform: scale(0.95); }
.cookie-banner-text { margin-bottom: 20px; }
.cookie-banner-text strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  color: white;
}
.cookie-banner-text p {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
  margin: 0;
}
.cookie-banner-text a { color: #7ab4ff; }
.cookie-banner-text a:hover { color: white; }
.cookie-banner-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-btn {
  border: none;
  border-radius: 6px;
  padding: 9px 18px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
  line-height: 1;
}
.cookie-btn--accept { background: var(--accent); color: white; }
.cookie-btn--accept:hover { background: var(--accent-d); }
.cookie-btn--reject {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.2);
}
.cookie-btn--reject:hover { background: rgba(255,255,255,0.16); }
.cookie-btn--settings {
  background: transparent;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.15);
}
.cookie-btn--settings:hover { color: white; border-color: rgba(255,255,255,0.4); }

/* Settings Panel */
.cookie-settings-panel {
  max-width: var(--max-w);
  margin: 16px auto 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 16px;
}
.cookie-category {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.cookie-category:last-child { border-bottom: none; }
.cookie-cat-label {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  cursor: pointer;
}
.cookie-cat-info strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: white;
  margin-bottom: 2px;
}
.cookie-cat-info span {
  font-size: 12px;
  color: rgba(255,255,255,0.52);
  line-height: 1.5;
}
.cookie-always-on {
  font-size: 12px;
  color: #4ade80;
  font-weight: 600;
  white-space: nowrap;
  padding-top: 2px;
  flex-shrink: 0;
}
/* Toggle Switch */
.cookie-toggle-wrap {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.cookie-checkbox {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 22px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  height: 16px;
  width: 16px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: transform 0.2s ease;
}
.cookie-checkbox:checked + .cookie-toggle-slider { background: var(--accent); }
.cookie-checkbox:checked + .cookie-toggle-slider::before { transform: translateX(18px); }
.cookie-settings-footer {
  padding-top: 14px;
  display: flex;
  justify-content: flex-end;
}

/* OSM Placeholder */
.osm-placeholder {
  width: 100%;
  height: 220px;
  background: var(--gray-50);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  border: 1px solid var(--gray-100);
}
.osm-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.osm-placeholder-inner strong {
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
}
.osm-placeholder-inner p {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.4;
  margin: 0;
  max-width: 240px;
}
.osm-consent-btn {
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 8px 18px;
  font-family: var(--sans), system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.15s ease;
}
.osm-consent-btn:hover { background: var(--accent-d); }
.maps-embed #osm-iframe { display: none; }
.maps-embed #osm-iframe[src]:not([src="about:blank"]) { display: block; }

/* Cookie-Einstellungen Link im Footer */
.cookie-settings-link { color: var(--gray-400); font-size: inherit; }
.cookie-settings-link:hover { color: var(--accent-l); text-decoration: none; }

@media (max-width: 600px) {
  #cookie-banner { align-items: flex-end; padding: 0; }
  .cookie-banner-main { border-radius: 14px 14px 0 0; max-width: 100%; padding: 20px 18px 24px; }
  .cookie-banner-actions { width: 100%; justify-content: stretch; }
  .cookie-btn { flex: 1; text-align: center; }
}

/* ── Hero Forensik-Panel ─────────────────────────────────────── */
.hfp {
  width: 100%;
  background: #070f1a;
  border: 1px solid rgba(26,108,245,0.22);
  border-radius: var(--radius-l);
  box-shadow: 0 24px 64px rgba(0,0,0,0.55), 0 0 0 1px rgba(26,108,245,0.06), inset 0 1px 0 rgba(255,255,255,0.03);
  overflow: hidden;
  font-family: var(--mono), 'Courier New', monospace;
  user-select: none;
}

/* Chrome (Titelleiste) */
.hfp-chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.055);
}
.hfp-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hfp-chrome-title {
  flex: 1;
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.06em;
  margin-left: -33px; /* optisch zentrieren trotz dots */
}

/* Body */
.hfp-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

/* Dateiinfo */
.hfp-file-info {}
.hfp-file-name {
  font-size: 13px;
  color: #7ab4ff;
  font-weight: 500;
  margin-bottom: 5px;
  letter-spacing: 0.01em;
}
.hfp-file-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: rgba(255,255,255,0.32);
}
.hfp-tag {
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 3px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.hfp-tag--blue { background: rgba(26,108,245,0.2); color: #7ab4ff; }
.hfp-tag--green { background: rgba(34,197,94,0.15); color: #4ade80; }

/* Section-Label */
.hfp-section-label {
  font-size: 10px;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: -6px;
}

/* Hex-Dump */
.hfp-hex {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hfp-hex-row {
  display: flex;
  gap: 10px;
  font-size: 11.5px;
  line-height: 1.75;
  color: rgba(255,255,255,0.42);
  border-radius: 3px;
  padding: 0 4px;
}
.hfp-hex-row--hl {
  background: rgba(26,108,245,0.1);
  color: rgba(255,255,255,0.78);
}
.hfp-addr {
  color: rgba(74,144,196,0.6);
  flex-shrink: 0;
  min-width: 64px;
}
.hfp-bytes {
  flex: 1;
  letter-spacing: 0.04em;
  color: #c8d6e5;
}
.hfp-hex-row--hl .hfp-bytes em {
  font-style: normal;
  color: #7ab4ff;
  font-weight: 500;
}
.hfp-ascii {
  color: #4ade80;
  flex-shrink: 0;
  opacity: 0.75;
}

/* Hashes */
.hfp-hashes {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hfp-hash-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
}
.hfp-hash-algo {
  color: rgba(74,144,196,0.75);
  min-width: 52px;
  flex-shrink: 0;
}
.hfp-hash-val {
  flex: 1;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
}
.hfp-ok {
  color: #4ade80;
  font-size: 12px;
}

/* Status-Liste */
.hfp-status-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hfp-status-row {
  font-size: 11.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.38);
}
.hfp-s-ok  { color: rgba(74,222,128,0.8); }
.hfp-s-active { color: rgba(251,191,36,0.92); }

/* Blinkender Cursor */
.hfp-cursor {
  display: inline-block;
  color: #f59e0b;
  animation: hfp-blink 1.1s step-end infinite;
}
@keyframes hfp-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* Fortschrittsbalken */
.hfp-progress-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hfp-progress-label {
  font-size: 10.5px;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.06em;
}
.hfp-progress-bar {
  height: 3px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
  overflow: hidden;
}
.hfp-progress-fill {
  height: 100%;
  width: 73%;
  background: linear-gradient(90deg, #1a6cf5 0%, #4ade80 100%);
  border-radius: 2px;
  animation: hfp-pulse 2.4s ease-in-out infinite alternate;
}
@keyframes hfp-pulse {
  from { opacity: 0.65; }
  to   { opacity: 1; }
}