/* ============================================================
   Computerservice Probst — style.css
   Farbschema der Original-Website: Stahlblau #506b8f,
   helle Textur, Verlaufsbuttons mit Doppelpfeil.
   Schriften lokal (keine externen Server, DSGVO-sicher).
   ============================================================ */

@font-face {
  font-family: 'Bebas Neue';
  src: url('fonts/bebas-neue-latin-400-normal.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Noto Sans';
  src: url('fonts/noto-sans-latin-400-normal.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Noto Sans';
  src: url('fonts/noto-sans-latin-700-normal.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

@font-face {
  font-family: 'IBM Plex Mono';
  src: url('fonts/ibm-plex-mono-latin-500-normal.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}

:root {
  --blau: #506b8f;         /* Stahlblau der alten Seite / Logo-Monitor */
  --blau-dunkel: #3e5573;  /* Verlauf unten / Hover */
  --blau-hell: #6b87ab;    /* Verlauf oben */
  --grau-bg: #efefef;      /* Seitenhintergrund alt */
  --text: #616161;         /* Fließtext alt */
  --dunkel: #1d1d1c;       /* Überschriften alt */
  --weiss: #ffffff;
  --linie: #e0e0e0;
  --akzent-warm: #ffaf88;  /* dezenter Warm-Akzent alt */
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

body {
  font-family: 'Noto Sans', 'Droid Sans', Arial, sans-serif;
  background: var(--grau-bg) url('bg-textur.png');
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
}

h1, h2, h3, .display {
  font-family: 'Bebas Neue', 'Arial Narrow', Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--dunkel);
}

.wrap { max-width: 1060px; margin: 0 auto; padding: 0 22px; }
a { color: var(--blau); }
a:focus-visible { outline: 3px solid var(--blau); outline-offset: 2px; }

/* ---------- Buttons im Stil der alten Seite ---------- */
.btn {
  display: inline-block;
  padding: 12px 24px 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-family: 'Bebas Neue', 'Arial Narrow', Arial, sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: #fff;
  background: linear-gradient(to bottom, var(--blau-hell), var(--blau) 45%, var(--blau-dunkel));
  border: 1px solid var(--blau-dunkel);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35), 0 1px 3px rgba(0,0,0,.25);
  text-shadow: 0 1px 1px rgba(0,0,0,.3);
}
.btn::before { content: "» "; font-weight: 700; }
.btn:hover {
  background: linear-gradient(to bottom, #7a94b6, var(--blau-dunkel) 55%, #33475f);
}
.btn-hell {
  background: linear-gradient(to bottom, #ffffff, #ececec 55%, #dddddd);
  color: var(--blau-dunkel);
  border: 1px solid #c4c4c4;
  text-shadow: none;
}
.btn-hell:hover { background: linear-gradient(to bottom, #f4f4f4, #e0e0e0 55%, #d0d0d0); }

/* ---------- Kopf ---------- */
header { background: var(--weiss); border-bottom: 4px solid var(--blau); }
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 16px 0; flex-wrap: wrap;
}
.brand img { height: 48px; width: auto; display: block; }
nav { display: flex; flex-wrap: wrap; }
nav a {
  color: var(--blau);
  text-decoration: none;
  margin-left: 22px;
  font-family: 'Bebas Neue', 'Arial Narrow', Arial, sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
}
nav a:hover { color: var(--blau-dunkel); text-decoration: underline; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(to bottom, #ffffff, #f5f5f5);
  border-bottom: 1px solid var(--linie);
  padding: 48px 0 56px;
}
.hero .cols {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center;
}
@media (max-width: 760px) { .hero .cols { grid-template-columns: 1fr; } }
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); line-height: 1.05; }
.hero h1 span { color: var(--blau); }
.hero p { margin-top: 16px; max-width: 56ch; }
.cta-row { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero img { width: 100%; max-width: 340px; height: auto; justify-self: center; }

/* ---------- Abschnitte ---------- */
section { padding: 58px 0; }
.kicker {
  color: var(--blau); font-family: 'Bebas Neue', Arial, sans-serif;
  letter-spacing: 0.14em; font-size: 1rem; margin-bottom: 4px;
}
h2 { font-size: 2rem; margin-bottom: 12px; }
.intro { max-width: 64ch; margin-bottom: 34px; }

/* Leistungen */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 18px;
}
.card {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: 6px;
  padding: 24px 22px;
  border-top: 4px solid var(--blau);
  box-shadow: 0 1px 3px rgba(0,0,0,.07);
}
.card .eyebrow {
  font-family: 'IBM Plex Mono', Consolas, monospace;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a97a8;
  margin-bottom: 10px;
}
.card h3 { font-size: 1.35rem; margin-bottom: 8px; color: var(--blau-dunkel); }
.card p { font-size: 0.95rem; }

/* Fernwartung */
.fernwartung { background: var(--weiss); border-top: 1px solid var(--linie); border-bottom: 1px solid var(--linie); }
.fernwartung .cols { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
@media (max-width: 760px) { .fernwartung .cols { grid-template-columns: 1fr; } }
.schritte { list-style: none; counter-reset: s; margin-top: 8px; }
.schritte li {
  counter-increment: s;
  padding: 10px 0 10px 46px; position: relative;
  border-bottom: 1px solid var(--linie);
}
.schritte li:last-child { border-bottom: none; }
.schritte li::before {
  content: counter(s);
  position: absolute; left: 0; top: 8px;
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(to bottom, var(--blau-hell), var(--blau-dunkel));
  color: #fff; font-family: 'Bebas Neue', Arial, sans-serif;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4);
}
.tv-box {
  background: var(--grau-bg) url('bg-textur.png');
  border: 1px solid var(--linie); border-radius: 6px;
  padding: 24px;
}
.tv-box h3 { font-size: 1.3rem; color: var(--blau-dunkel); margin-bottom: 6px; }
.tv-box p { font-size: 0.92rem; margin-bottom: 14px; }
.tv-box + .tv-box { margin-top: 16px; }

/* Partner */
.partner {
  margin-top: 34px; padding: 26px 28px;
  background: var(--weiss); border: 1px solid var(--linie); border-radius: 6px;
  display: inline-block;
}
.partner-logos { display: flex; align-items: center; gap: 34px; flex-wrap: wrap; margin: 10px 0 12px; }
.partner-logos img { display: block; height: auto; }
.partner-text { font-size: 0.9rem; margin: 0; }

/* Kontakt */
.kontakt-box {
  background: linear-gradient(to bottom, var(--blau-hell), var(--blau) 40%, var(--blau-dunkel));
  color: #fff; border-radius: 8px;
  padding: 40px 38px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 2px 6px rgba(0,0,0,.2);
}
@media (max-width: 760px) { .kontakt-box { grid-template-columns: 1fr; padding: 30px 24px; } }
.kontakt-box h2, .kontakt-box .kicker { color: #fff; }
.kontakt-box p { color: #e8edf4; }
.k-liste { list-style: none; margin-top: 6px; }
.k-liste li { padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.25); }
.k-liste li:last-child { border-bottom: none; }
.k-liste .label {
  font-family: 'Bebas Neue', Arial, sans-serif; letter-spacing: 0.1em;
  color: #cfdae8; display: block; font-size: 0.95rem;
}
.k-liste a { color: #fff; text-decoration: none; }
.k-liste a:hover { text-decoration: underline; }

/* ---------- Fuß ---------- */
footer {
  background: var(--dunkel); color: #b6b6b6;
  padding: 24px 0; font-size: 0.88rem;
}
footer .wrap { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; }
footer a { color: #b6b6b6; text-decoration: none; margin-right: 18px; }
footer a:hover { color: #fff; }

/* ---------- Unterseiten ---------- */
.rechtstext { max-width: 780px; padding: 48px 22px 72px; margin: 0 auto; }
.rechtstext { background: var(--weiss); margin-top: 32px; margin-bottom: 48px; border: 1px solid var(--linie); border-radius: 6px; }
.rechtstext h1 { font-size: 2.2rem; margin-bottom: 22px; }
.rechtstext h2 { font-size: 1.35rem; margin: 28px 0 6px; color: var(--blau-dunkel); }
.rechtstext p, .rechtstext li { color: var(--text); }
.rechtstext ul { padding-left: 22px; }
