/* International Tech — Markenfarben aus 04_farbsystem.svg.
   Ein Akzent, sonst neutral. Keine externen Schriften: das spart eine
   Datenübertragung in die USA und damit ein Kapitel Datenschutzerklärung. */
:root {
  --ink: #0A0A0A;
  --graphite: #3A3A3C;
  --slate: #6E6E73;
  --silver: #C9C9CE;
  --fog: #E3E3E8;
  --paper: #F2F2F4;
  --weiss: #FFFFFF;
  --akzent: #0A6CFF;
  --schrift: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
             "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--schrift);
  color: var(--ink);
  background: var(--weiss);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.rahmen { max-width: 940px; margin: 0 auto; padding: 0 28px; }

/* ---------- Kopf ---------- */
header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--fog);
}
header .rahmen {
  height: 64px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}
.marke {
  font-weight: 600; letter-spacing: -.02em; font-size: 17px;
  color: var(--ink); text-decoration: none; white-space: nowrap;
}
header nav { display: flex; gap: 26px; font-size: 14px; }
header nav a { color: var(--slate); text-decoration: none; white-space: nowrap; }
header nav a:hover { color: var(--ink); }

/* ---------- Abschnitte ---------- */
section { padding: 96px 0; border-bottom: 1px solid var(--fog); }
section:last-of-type { border-bottom: 0; }

h1 {
  font-size: clamp(38px, 6vw, 64px); line-height: 1.08;
  letter-spacing: -.035em; font-weight: 600; margin: 0 0 24px;
  max-width: 16ch;
}
h2 {
  font-size: clamp(26px, 3.4vw, 36px); line-height: 1.2;
  letter-spacing: -.025em; font-weight: 600; margin: 0 0 20px;
  max-width: 22ch;
}
h3 { font-size: 18px; font-weight: 600; letter-spacing: -.01em; margin: 0 0 6px; }

.gross { font-size: clamp(18px, 2.2vw, 21px); color: var(--graphite); max-width: 62ch; }
.leise { color: var(--slate); }
.klein { font-size: 14px; color: var(--slate); }

p { margin: 0 0 18px; max-width: 66ch; }

.marke-oben {
  font-size: 12px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--slate); margin-bottom: 20px;
}

/* ---------- Raster ---------- */
.raster { display: grid; gap: 40px; margin-top: 48px; }
@media (min-width: 720px) { .raster.drei { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 720px) { .raster.zwei { grid-template-columns: repeat(2, 1fr); } }
.raster p { margin: 0; font-size: 15px; color: var(--slate); }

/* ---------- Ablauf ---------- */
.schritte { margin-top: 48px; border-top: 1px solid var(--fog); }
.schritt {
  display: grid; gap: 4px 28px; padding: 22px 0;
  border-bottom: 1px solid var(--fog);
}
@media (min-width: 720px) {
  .schritt { grid-template-columns: 56px 1fr 150px; align-items: baseline; }
}
.nummer { font-variant-numeric: tabular-nums; color: var(--silver); font-size: 15px; }
.dauer { color: var(--slate); font-size: 14px; }
@media (min-width: 720px) { .dauer { text-align: right; } }
.schritt p { margin: 4px 0 0; font-size: 15px; color: var(--slate); }

/* ---------- Zahlen ---------- */
.zahlen { display: grid; gap: 32px; margin-top: 44px; }
@media (min-width: 620px) { .zahlen { grid-template-columns: repeat(3, 1fr); } }
.zahl {
  font-size: clamp(25px, 3.1vw, 34px); font-weight: 600; letter-spacing: -.03em;
}
/* Für Beträge, die nicht mitten im Wert umbrechen dürfen. */
.nb { white-space: nowrap; }

/* ---------- Hinweiskasten ---------- */
.hinweis {
  border-left: 2px solid var(--silver); padding: 2px 0 2px 20px;
  color: var(--slate); font-size: 15px; margin: 32px 0 0; max-width: 62ch;
}

/* ---------- Knopf ---------- */
.knopf {
  display: inline-block; background: var(--akzent); color: var(--weiss);
  text-decoration: none; padding: 13px 26px; border-radius: 999px;
  font-size: 15px; font-weight: 500; margin-top: 8px;
}
.knopf:hover { opacity: .9; }
.knopf.stumm {
  background: transparent; color: var(--ink);
  border: 1px solid var(--silver); margin-left: 10px;
}

a.text { color: var(--akzent); text-decoration: none; }
a.text:hover { text-decoration: underline; }

/* ---------- Fuß ---------- */
footer { padding: 44px 0 64px; font-size: 14px; color: var(--slate); }
footer nav { display: flex; flex-wrap: wrap; gap: 22px; margin-bottom: 16px; }
footer a { color: var(--slate); text-decoration: none; }
footer a:hover { color: var(--ink); }

/* ---------- Rechtstexte ---------- */
.rechtstext { padding: 64px 0; }
.rechtstext h1 { font-size: clamp(30px, 4vw, 40px); max-width: none; }
.rechtstext h2 { font-size: 19px; margin: 40px 0 10px; max-width: none; }
.rechtstext p, .rechtstext li { font-size: 15px; color: var(--graphite); }
.rechtstext ul { padding-left: 20px; max-width: 66ch; }
.rechtstext li { margin-bottom: 7px; }
.pruefen {
  background: var(--paper); border-radius: 10px; padding: 18px 20px;
  font-size: 14px; color: var(--graphite); margin-bottom: 36px; max-width: 66ch;
}

/* ---------- Lead-Magnet: Buchungsformular ---------- */
.hero { padding-top: 110px; }
.hero h1 { max-width: 18ch; }

.knopf.klein-knopf { padding: 8px 18px; font-size: 14px; margin: 0; }

.buchung { background: var(--paper); }

form { margin-top: 44px; }

.honig {
  position: absolute; left: -9999px; width: 1px; height: 1px;
  overflow: hidden;
}

.feldgruppe { display: grid; gap: 18px; }
@media (min-width: 660px) { .feldgruppe { grid-template-columns: 1fr 1fr; } }
.feld.weit { grid-column: 1 / -1; }

.feld label {
  display: block; font-size: 14px; color: var(--slate); margin-bottom: 6px;
}
.pflicht { color: var(--akzent); }

.feld input, .feld select, .feld textarea {
  width: 100%; padding: 11px 13px; font: inherit; font-size: 15px;
  color: var(--ink); background: var(--weiss);
  border: 1px solid var(--silver); border-radius: 9px;
  -webkit-appearance: none; appearance: none;
}
.feld select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%236E6E73' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center;
  padding-right: 34px;
}
.feld textarea { resize: vertical; min-height: 80px; }
.feld input:focus, .feld select:focus, .feld textarea:focus {
  outline: none; border-color: var(--akzent);
  box-shadow: 0 0 0 3px rgba(10,108,255,.13);
}

.trenner {
  display: flex; align-items: center; gap: 14px;
  margin: 40px 0 24px; color: var(--slate); font-size: 13px;
  text-transform: uppercase; letter-spacing: .1em;
}
.trenner::after {
  content: ''; flex: 1; height: 1px; background: var(--fog);
}

/* ---------- Zeiten ---------- */
.zeiten { display: grid; gap: 22px; }
.tagtitel {
  font-size: 14px; color: var(--slate); margin-bottom: 10px;
}
.uhrzeiten { display: flex; flex-wrap: wrap; gap: 8px; }
.zeit {
  font: inherit; font-size: 15px; font-variant-numeric: tabular-nums;
  padding: 9px 16px; border-radius: 999px; cursor: pointer;
  background: var(--weiss); color: var(--ink);
  border: 1px solid var(--silver);
}
.zeit:hover { border-color: var(--slate); }
.zeit.gewaehlt {
  background: var(--akzent); border-color: var(--akzent); color: var(--weiss);
}

/* ---------- Einwilligung und Absenden ---------- */
.einwilligung {
  display: flex; gap: 11px; align-items: flex-start;
  margin: 36px 0 26px; font-size: 14px; color: var(--graphite);
  max-width: 66ch; line-height: 1.5;
}
.einwilligung input { margin-top: 3px; accent-color: var(--akzent); flex-shrink: 0; }

.absenden { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.absenden .knopf { margin-top: 0; }
button.knopf { font: inherit; font-size: 15px; font-weight: 500; cursor: pointer; border: 0; }
button.knopf:disabled { opacity: .6; cursor: default; }
.fehler { color: var(--ink); font-weight: 500; }

.danke {
  background: var(--weiss); border: 1px solid var(--fog);
  border-radius: 12px; padding: 30px 32px; margin-top: 44px;
}
.danke h3 { font-size: 21px; margin-bottom: 8px; }
.danke p { color: var(--graphite); margin: 0; }

/* ---------- Terminwahl: erst Tag, dann Uhrzeit ---------- */
.tagwahl {
  display: flex; gap: 8px; overflow-x: auto; padding-bottom: 6px;
  margin-bottom: 18px;
  scrollbar-width: none;
}
.tagwahl::-webkit-scrollbar { display: none; }

/* Weicher Rand rechts, solange die Reihe breiter ist als der Platz: das
   einzige Zeichen dafuer, dass hinter dem Rand weitere Tage liegen. */
.tagwahl.mehr {
  -webkit-mask-image: linear-gradient(to right, #000 88%, transparent 100%);
  mask-image: linear-gradient(to right, #000 88%, transparent 100%);
}
.wischhinweis { margin: -10px 0 16px; color: var(--slate); }
@media (min-width: 720px) { .wischhinweis { display: none; } }

/* Am Schreibtisch ist Platz fuer zwei Reihen. Seitwaerts scrollen geht dort
   nur mit Trackpad — mit der Maus waeren die hinteren Tage praktisch
   unerreichbar. Umbrechen statt schieben. */
@media (min-width: 720px) {
  .tagwahl { flex-wrap: wrap; overflow-x: visible; }
  .tagwahl.mehr { -webkit-mask-image: none; mask-image: none; }
}

.tagknopf {
  flex: 0 0 auto; display: flex; flex-direction: column; gap: 3px;
  padding: 12px 18px; border: 1px solid var(--fog); border-radius: 12px;
  background: var(--weiss); cursor: pointer; font-family: inherit;
  text-align: left; transition: border-color .15s, background .15s;
}
.tagknopf:hover { border-color: var(--silver); }
.tagknopf.gewaehlt { border-color: var(--akzent); background: #F5F9FF; }
.tagname { font-size: 14px; font-weight: 600; color: var(--ink); white-space: nowrap; }


.uhrzeiten { display: flex; flex-wrap: wrap; gap: 8px; }
.zeit {
  padding: 9px 16px; border: 1px solid var(--fog); border-radius: 999px;
  background: var(--weiss); cursor: pointer; font-family: inherit;
  font-size: 14px; color: var(--ink); transition: border-color .15s, background .15s;
}
.zeit:hover { border-color: var(--silver); }
.zeit.gewaehlt { border-color: var(--akzent); background: var(--akzent); color: var(--weiss); }

.gewaehlt-hinweis { margin-top: 14px; color: var(--ink); font-weight: 500; }

/* ============================================================
   Ergänzungen für die überarbeitete Startseite
   ============================================================ */

/* ---------- Abwechselnder Grund ---------- */
.band { background: var(--paper); }

/* Zwei graue Abschnitte direkt hintereinander brauchen keine Linie. */
.band + .band { border-top: 0; }

/* ---------- Kopf: Zusatzlinks erst ab Tablet ---------- */
.nur-breit { display: none; }
@media (min-width: 720px) { .nur-breit { display: inline; } }

/* ---------- Hero mit Zielgruppen-Zeile ---------- */
.hero .marke-oben { margin-bottom: 16px; }
.hero h1 { max-width: 17ch; }

/* ---------- Zahlenleiste ---------- */
.zahlen { margin-top: 0; }
.zahlen p { margin: 8px 0 0; }
.zahl { line-height: 1.15; }

/* ---------- Herausgestellter Satz ---------- */
.zitat {
  font-size: clamp(21px, 2.8vw, 27px);
  line-height: 1.32; letter-spacing: -.02em; font-weight: 600;
  color: var(--ink); max-width: 22ch;
  margin: 0 0 28px; padding-left: 22px;
  border-left: 3px solid var(--akzent);
}

/* ---------- Eignung: passt / passt nicht ---------- */
.eignung h3 { display: flex; align-items: center; gap: 9px; margin-bottom: 16px; }
.eignung h3::before {
  content: ''; width: 20px; height: 20px; border-radius: 999px;
  flex-shrink: 0; background: no-repeat center/11px 11px;
}
.eignung h3.ja::before {
  background-color: var(--akzent);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M2 6.5l2.5 2.5L10 3.5'/%3E%3C/svg%3E");
}
.eignung h3.nein::before {
  background-color: var(--silver);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' d='M3 3l6 6M9 3l-6 6'/%3E%3C/svg%3E");
}

.liste { list-style: none; margin: 0; padding: 0; max-width: 46ch; }
.liste li {
  position: relative; padding-left: 22px; margin-bottom: 13px;
  font-size: 15px; color: var(--slate); line-height: 1.55;
}
.liste li::before {
  position: absolute; left: 0; top: 0; font-weight: 600;
}
.liste.ja li::before  { content: '+'; color: var(--akzent); }
.liste.nein li::before { content: '–'; color: var(--silver); }

/* ---------- Fragen und Antworten ---------- */
.faq { margin-top: 44px; border-top: 1px solid var(--fog); max-width: 74ch; }
.faq details { border-bottom: 1px solid var(--fog); }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 34px 20px 0;
  position: relative; font-size: 17px; font-weight: 600;
  letter-spacing: -.01em; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; position: absolute; right: 4px; top: 50%;
  width: 11px; height: 11px; margin-top: -7px;
  border-right: 1.5px solid var(--slate); border-bottom: 1.5px solid var(--slate);
  transform: rotate(45deg); transition: transform .18s;
}
.faq details[open] summary::after { transform: rotate(225deg); margin-top: -3px; }
.faq summary:hover { color: var(--akzent); }
.faq details p {
  margin: 0 0 22px; font-size: 15px; color: var(--slate);
  max-width: 68ch; line-height: 1.65;
}

@media (prefers-reduced-motion: reduce) {
  .faq summary::after { transition: none; }
}

/* ---------- Kopfnavigation ----------
   Vorher standen "Ablauf" und "Kosten" rechts neben dem Knopf, in Grau und
   14 px — direkt neben einem blauen Knopf ist das unsichtbar. Jetzt links
   bei der Marke, wo Navigation erwartet wird, mit klarem Kontrast und einer
   Linie beim Überfahren. */
.kopf-links { display: flex; align-items: center; gap: 32px; min-width: 0; }

/* Auf dem Telefon bleibt die Navigation weg.
 *
 * Sie stand hier ohne Breitenbedingung — und weil dieser Block nach
 * ".nur-breit { display: none }" kommt, gewann bei gleicher Spezifitaet die
 * spaetere Regel. Auf 375 px lagen die drei Links deshalb unter dem Knopf
 * "Gespraech buchen", und der Knopf war am rechten Rand abgeschnitten:
 * genau der eine Weg, den die Seite hat, unbedienbar auf dem Geraet, mit dem
 * die meisten sie oeffnen. */
.hauptnav { display: none; gap: 26px; font-size: 15px; }
@media (min-width: 720px) { .hauptnav { display: flex; } }
.hauptnav a {
  color: var(--graphite); text-decoration: none; white-space: nowrap;
  padding: 2px 0; border-bottom: 1.5px solid transparent;
  transition: color .15s, border-color .15s;
}
.hauptnav a:hover { color: var(--ink); border-bottom-color: var(--ink); }

/* Der Knopf steht jetzt allein rechts und braucht die alte nav-Regel nicht. */
header nav.hauptnav a { color: var(--graphite); }

/* ---------- Hervorhebung im Fließtext ---------- */
.hervor { color: var(--ink); font-weight: 600; }
.faq details p .hervor { color: var(--ink); }
