/* Looop Web — Landingpage. Alles vom eigenen Server, keine externen Anfragen. */

@font-face {
  font-family: "Archivo";
  src: url("assets/archivo.woff2") format("woff2");
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("assets/fraunces-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 400 900;
  font-display: swap;
}

:root {
  --papier: #f5f2ec;
  --tinte: #16130f;
  --gelb: #ffd21f;      /* laute Schwester des Markengolds */
  --gold: #c99e11;
  --glut: #ff5a1f;
  --grau: #6b645a;
  --linie: rgba(22, 19, 15, 0.14);
  --rand: clamp(16px, 4vw, 48px);
  --breite: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--papier);
  color: var(--tinte);
  font: 400 17px/1.5 "Archivo", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { max-width: var(--breite); margin: 0 auto; padding-inline: var(--rand); }

.laut {
  font-weight: 900;
  font-stretch: 72%;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.88;
}
.kursiv { font-family: "Fraunces", Georgia, serif; font-style: italic; font-weight: 600; text-transform: none; letter-spacing: 0; }

/* ——— Laufband ——— */
.band {
  background: var(--tinte);
  color: var(--gelb);
  overflow: hidden;
  white-space: nowrap;
  font-weight: 800;
  font-stretch: 80%;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 14px;
  padding-block: 9px;
}
.band__spur { display: inline-block; animation: lauf 60s linear infinite; }
.band__spur span { margin-right: 28px; }
.band__spur span::after { content: "✦"; margin-left: 28px; color: var(--glut); }
@keyframes lauf { to { transform: translateX(-50%); } }

/* ——— Kopf ——— */
.kopf {
  position: sticky; top: 0; z-index: 20;
  background: color-mix(in srgb, var(--papier) 92%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--tinte);
}
.kopf .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 12px; }
.marke { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.marke img.knoten { width: 38px; }
.marke img.schrift { width: 78px; }
.marke b { font-weight: 900; font-stretch: 75%; text-transform: uppercase; font-size: 22px; background: var(--gelb); padding: 0 6px; border: 2px solid var(--tinte); }
.kopf nav { display: flex; gap: 22px; align-items: center; font-weight: 700; }
.kopf nav a { text-decoration: none; }
.kopf nav a:not(.knopf):hover { text-decoration: underline; text-decoration-thickness: 3px; text-decoration-color: var(--glut); }
@media (max-width: 760px) { .kopf nav a:not(.knopf) { display: none; } }

.knopf {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--glut); color: #fff;
  border: 3px solid var(--tinte);
  box-shadow: 5px 5px 0 var(--tinte);
  padding: 14px 22px;
  font: 900 18px/1 "Archivo", sans-serif; font-stretch: 80%;
  text-transform: uppercase; letter-spacing: 0.02em;
  text-decoration: none; cursor: pointer;
  transition: transform .12s, box-shadow .12s;
}
.knopf:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--tinte); }
.knopf:active { transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--tinte); }
.knopf--klein { padding: 10px 14px; font-size: 15px; box-shadow: 3px 3px 0 var(--tinte); }
.knopf--hell { background: var(--papier); color: var(--tinte); }

/* ——— Hero ——— */
.hero { padding-block: clamp(40px, 7vw, 96px) clamp(48px, 8vw, 110px); position: relative; overflow: hidden; }
.hero .wrap { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(24px, 5vw, 64px); align-items: center; }
@media (max-width: 900px) { .hero .wrap { grid-template-columns: 1fr; } }
.hero__vorzeile { font-weight: 800; font-stretch: 85%; text-transform: uppercase; letter-spacing: .08em; font-size: 15px; display: inline-block; background: var(--tinte); color: var(--gelb); padding: 6px 10px; }
.hero h1 { font-size: clamp(58px, 11.5vw, 168px); margin: 18px 0 20px; }
.hero h1 .preis { display: inline-block; background: var(--gelb); border: 4px solid var(--tinte); padding: 0 .08em; transform: rotate(-2deg); box-shadow: 8px 8px 0 var(--tinte); margin-block: .06em; }
.hero h1 .kursiv { color: var(--glut); font-size: .62em; }
.hero p.lead { font-size: clamp(19px, 2.1vw, 24px); max-width: 34ch; margin: 0 0 28px; }
.hero p.lead strong { background: linear-gradient(transparent 58%, var(--gelb) 58%); }
.hero__knoepfe { display: flex; flex-wrap: wrap; gap: 16px; }

.stempel {
  position: absolute; right: clamp(8px, 6vw, 90px); top: clamp(24px, 5vw, 60px);
  width: 150px; height: 150px; border-radius: 50%;
  background: var(--glut); color: #fff; border: 3px solid var(--tinte);
  display: grid; place-items: center; text-align: center;
  font-weight: 900; font-stretch: 75%; text-transform: uppercase; line-height: 1; font-size: 19px;
  transform: rotate(12deg); z-index: 3;
  animation: wackeln 4s ease-in-out infinite;
}
.stempel small { display: block; font-size: 12px; font-weight: 700; margin-top: 4px; letter-spacing: .04em; }
@keyframes wackeln { 50% { transform: rotate(4deg) scale(1.05); } }
@media (max-width: 900px) { .stempel { width: 92px; height: 92px; font-size: 12px; top: 192px; right: 12px; } .stempel small { font-size: 9px; } }
@media (max-width: 520px) { .marke img.schrift { display: none; } .knopf--klein { white-space: nowrap; } }

/* Telefon mit Vorschau */
.telefon {
  width: min(300px, 80%); margin-inline: auto; aspect-ratio: 9 / 18.5;
  border: 10px solid var(--tinte); border-radius: 38px; background: #fff;
  position: relative; overflow: hidden; box-shadow: 14px 14px 0 var(--gelb), 14px 14px 0 3px var(--tinte);
  transform: rotate(3deg); max-width: 100%;
}
.telefon__balken { background: var(--tinte); color: var(--gelb); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; padding: 20px 10px 6px; text-align: center; }
.telefon__seite { padding: 14px; }
.telefon__seite .t-kopf { height: 92px; border-radius: 8px; background: linear-gradient(135deg, #2f5d50, #7fa38f); margin-bottom: 12px; color: #fff; padding: 12px; font-weight: 900; font-stretch: 80%; font-size: 18px; line-height: 1; }
.telefon__seite .t-kopf small { display: block; font-weight: 500; font-size: 10px; margin-top: 6px; opacity: .85; }
.t-zeile { height: 9px; border-radius: 4px; background: #e6e1d8; margin: 7px 0; }
.t-zeile.k { width: 60%; }
.t-knopf { background: var(--glut); color: #fff; font-size: 11px; font-weight: 800; border-radius: 6px; padding: 8px; text-align: center; margin: 12px 0; }
.t-skizze { border: 2px dashed #c9c2b5; border-radius: 8px; height: 70px; margin: 10px 0; display: grid; place-items: center; font-size: 10px; color: #9a927f; font-style: italic; }
.wasserzeichen {
  position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none;
  font-weight: 900; font-stretch: 62%; font-size: 52px; color: rgba(255, 90, 31, .28);
  transform: rotate(-32deg); letter-spacing: .04em;
}
.telefon__hinweis { text-align: center; font-size: 14px; color: var(--grau); margin-top: 22px; }

/* ——— Schwarzer Balken ——— */
.knall { background: var(--tinte); color: var(--papier); padding-block: clamp(36px, 6vw, 70px); }
.knall p { margin: 0; font-size: clamp(34px, 6.4vw, 88px); }
.knall p .gelb { color: var(--gelb); }

/* ——— Abschnitte ——— */
section.block { padding-block: clamp(56px, 9vw, 120px); }
.block__kopf { margin-bottom: clamp(28px, 5vw, 56px); }
.block__kopf .nr { font-weight: 800; text-transform: uppercase; letter-spacing: .1em; font-size: 14px; color: var(--glut); }
.block__kopf h2 { font-size: clamp(44px, 7.5vw, 104px); margin: 8px 0 12px; }
.block__kopf p { font-size: 20px; max-width: 52ch; margin: 0; }

/* Drei Schritte */
.schritte { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: s; }
@media (max-width: 860px) { .schritte { grid-template-columns: 1fr; } }
.schritt { border: 3px solid var(--tinte); background: #fff; padding: 26px; position: relative; box-shadow: 6px 6px 0 var(--tinte); }
.schritt::before { counter-increment: s; content: counter(s); position: absolute; top: -26px; right: 18px; width: 52px; height: 52px; border-radius: 50%; background: var(--gelb); border: 3px solid var(--tinte); display: grid; place-items: center; font-weight: 900; font-size: 26px; }
.schritt h3 { font-size: 34px; margin: 0 0 10px; }
.schritt p { margin: 0; }
.schritt .preis-klein { margin-top: 14px; font-weight: 800; display: inline-block; background: var(--tinte); color: var(--gelb); padding: 3px 8px; font-size: 15px; }

/* ——— Die Karte ——— */
.karte-bereich { background: var(--gelb); border-block: 4px solid var(--tinte); }
.karte { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(20px, 3vw, 36px); align-items: start; }
@media (max-width: 960px) { .karte { grid-template-columns: 1fr; } }

.teller { background: var(--papier); border: 4px solid var(--tinte); box-shadow: 10px 10px 0 var(--tinte); padding: clamp(22px, 3vw, 36px); }
.teller + .teller { margin-top: 28px; }
.teller__titel { font-weight: 800; text-transform: uppercase; letter-spacing: .12em; font-size: 14px; color: var(--grau); margin: 0 0 10px; }
.haupt { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; flex-wrap: wrap; border-bottom: 3px solid var(--tinte); padding-bottom: 16px; margin-bottom: 18px; }
.haupt h3 { font-size: clamp(40px, 5.5vw, 64px); margin: 0; }
.haupt .betrag { font-weight: 900; font-stretch: 70%; font-size: clamp(72px, 10vw, 128px); line-height: .8; }
.haupt .betrag s { font-size: .32em; color: var(--grau); font-weight: 700; vertical-align: top; margin-right: 6px; }
ul.haken { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
ul.haken li { padding-left: 32px; position: relative; }
ul.haken li::before { content: "✓"; position: absolute; left: 0; top: -1px; width: 22px; height: 22px; background: var(--tinte); color: var(--gelb); font-weight: 900; font-size: 14px; display: grid; place-items: center; }
.zahlung { margin-top: 20px; background: var(--glut); color: #fff; font-weight: 900; font-stretch: 80%; text-transform: uppercase; padding: 12px 16px; font-size: 20px; border: 3px solid var(--tinte); }

.abos { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .abos { grid-template-columns: 1fr; } }
.abo { border: 3px solid var(--tinte); padding: 18px; background: #fff; position: relative; }
.abo--top { background: var(--tinte); color: var(--papier); }
.abo--top .abo__betrag { color: var(--gelb); }
.abo__schild { position: absolute; top: -14px; left: 14px; background: var(--glut); color: #fff; font-size: 12px; font-weight: 900; text-transform: uppercase; padding: 3px 8px; border: 2px solid var(--tinte); }
.abo h4 { margin: 0; font-size: 26px; }
.abo__betrag { font-weight: 900; font-stretch: 72%; font-size: 52px; line-height: 1; margin: 8px 0; }
.abo__betrag small { font-size: 16px; font-weight: 700; font-stretch: 100%; }
.abo ul { margin: 0; padding-left: 18px; font-size: 15px; }
.aktion { margin-top: 16px; border: 3px dashed var(--tinte); padding: 12px 16px; font-weight: 700; background: #fff; }
.aktion b { color: var(--glut); text-transform: uppercase; }

.beilagen h3 { font-size: 40px; margin: 0 0 4px; }
.beilagen .unter { margin: 0 0 16px; color: var(--grau); }
.posten { display: flex; align-items: baseline; gap: 10px; padding: 9px 0; cursor: pointer; user-select: none; }
.posten input { accent-color: var(--glut); width: 20px; height: 20px; flex: none; transform: translateY(3px); cursor: pointer; }
.posten .name { font-weight: 700; }
.posten .name small { display: block; font-weight: 400; color: var(--grau); font-size: 14px; }
.posten .punkte { flex: 1; border-bottom: 3px dotted var(--tinte); transform: translateY(-5px); min-width: 20px; }
.posten .p { font-weight: 900; font-stretch: 80%; font-size: 22px; white-space: nowrap; }
.posten:hover .name { text-decoration: underline; text-decoration-color: var(--glut); text-decoration-thickness: 3px; }
.gruppe { font-weight: 800; text-transform: uppercase; letter-spacing: .1em; font-size: 13px; color: var(--grau); margin: 18px 0 2px; }

.summe {
  margin-top: 24px;
  background: var(--tinte); color: var(--papier); border: 3px solid var(--tinte);
  box-shadow: 6px 6px 0 var(--glut);
  display: flex; flex-wrap: wrap; gap: 8px 20px; align-items: center; justify-content: space-between;
  padding: 14px 18px;
}
.summe__zahlen { display: flex; gap: 22px; flex-wrap: wrap; }
.summe__zahlen div { line-height: 1.05; }
.summe__zahlen small { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: #bdb5a6; }
.summe__zahlen b { font-weight: 900; font-stretch: 75%; font-size: 34px; color: var(--gelb); }
.fussnote { font-size: 14px; color: var(--tinte); margin-top: 22px; }

/* ——— KI-Pflege ——— */
.pflege { background: var(--tinte); color: var(--papier); }
.pflege .block__kopf .nr { color: var(--gelb); }
.pflege .block__kopf h2 .kursiv { color: var(--gelb); }
.pflege__raster { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 64px); align-items: center; }
@media (max-width: 900px) { .pflege__raster { grid-template-columns: 1fr; } }
.chat { background: #221e19; border: 3px solid var(--gelb); padding: 20px; display: grid; gap: 12px; box-shadow: 10px 10px 0 var(--glut); }
.chat__kopf { font-size: 13px; color: #bdb5a6; text-transform: uppercase; letter-spacing: .08em; border-bottom: 1px solid #3a342c; padding-bottom: 10px; }
.sprech { max-width: 85%; padding: 10px 14px; border-radius: 16px; font-size: 16px; line-height: 1.35; }
.sprech--kunde { background: var(--papier); color: var(--tinte); justify-self: end; border-bottom-right-radius: 4px; }
.sprech--looop { background: var(--gelb); color: var(--tinte); border-bottom-left-radius: 4px; }
.sprech .zeit { display: block; font-size: 11px; opacity: .6; margin-top: 4px; }
.sprech .link { text-decoration: underline; font-weight: 700; }
.audio { display: flex; align-items: center; gap: 8px; }
.audio i { display: inline-block; width: 3px; background: var(--tinte); border-radius: 2px; }
.pflege ul.haken li::before { background: var(--gelb); color: var(--tinte); }
.pflege ul.haken { font-size: 19px; gap: 12px; }
.pflege__preis { margin-top: 28px; font-size: 20px; }
.pflege__preis b { background: var(--gelb); color: var(--tinte); padding: 2px 8px; font-weight: 900; }

/* ——— Hosting ——— */
.fakten { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 3px solid var(--tinte); border-left: 3px solid var(--tinte); }
@media (max-width: 860px) { .fakten { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .fakten { grid-template-columns: 1fr; } }
.fakt { border-right: 3px solid var(--tinte); border-bottom: 3px solid var(--tinte); padding: 24px; background: #fff; }
.fakt .gross { font-weight: 900; font-stretch: 72%; text-transform: uppercase; font-size: 36px; line-height: .95; display: block; margin-bottom: 8px; }
.fakt:nth-child(odd) { background: var(--papier); }
.fakt p { margin: 0; }

/* ——— Für wen ——— */
.wen { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 64px); align-items: start; }
@media (max-width: 860px) { .wen { grid-template-columns: 1fr; } }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chips span { border: 2px solid var(--tinte); padding: 6px 12px; font-weight: 700; background: #fff; }
.chips span:nth-child(3n+1) { background: var(--gelb); }
.orte { columns: 2; column-gap: 24px; font-weight: 700; font-size: 19px; margin: 0; padding: 0; list-style: none; }
.orte li { padding: 4px 0; border-bottom: 1px solid var(--linie); break-inside: avoid; }
.orte li::before { content: "📍 "; }

.vergleich-rahmen { overflow-x: auto; margin-top: clamp(40px, 6vw, 72px); }
table.vergleich { border-collapse: collapse; width: 100%; min-width: 620px; background: #fff; border: 3px solid var(--tinte); }
.vergleich th, .vergleich td { padding: 14px 16px; text-align: left; border-bottom: 2px solid var(--linie); vertical-align: top; }
.vergleich thead th { background: var(--tinte); color: var(--papier); font-weight: 900; font-stretch: 80%; text-transform: uppercase; font-size: 18px; }
.vergleich thead th.wir { background: var(--glut); color: #fff; }
.vergleich td.wir { background: #fff4c4; font-weight: 800; }
.vergleich tbody th { font-weight: 700; color: var(--grau); width: 22%; }

/* ——— FAQ ——— */
.faq { display: grid; gap: 12px; max-width: 900px; }
.faq details { border: 3px solid var(--tinte); background: #fff; }
.faq summary { cursor: pointer; list-style: none; padding: 18px 56px 18px 20px; font-weight: 800; font-size: 20px; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 16px; top: 50%; transform: translateY(-50%); width: 30px; height: 30px; background: var(--gelb); border: 2px solid var(--tinte); display: grid; place-items: center; font-weight: 900; }
.faq details[open] summary::after { content: "–"; background: var(--glut); color: #fff; }
.faq details > div { padding: 0 20px 20px; font-size: 17px; }
.faq details > div p { margin: 0 0 10px; }
.faq code { background: var(--papier); padding: 1px 6px; border: 1px solid var(--linie); font-size: 15px; }

/* ——— Formular als Satz ——— */
.anfrage { background: var(--glut); color: #fff; border-top: 4px solid var(--tinte); }
.anfrage .block__kopf h2 { color: var(--tinte); }
.anfrage .block__kopf .nr { color: #fff; }
.satz { font-family: "Fraunces", Georgia, serif; font-style: italic; font-weight: 500; font-size: clamp(26px, 3.6vw, 44px); line-height: 1.7; color: var(--tinte); max-width: 1000px; }
.satz input, .satz select {
  font: inherit; font-family: "Archivo", sans-serif; font-style: normal; font-weight: 800; font-stretch: 85%;
  color: var(--tinte); background: transparent; border: 0; border-bottom: 4px solid var(--tinte);
  padding: 0 4px; min-width: 6ch; width: auto; max-width: 100%; outline: none; border-radius: 0;
}
.satz input::placeholder { color: rgba(22, 19, 15, .45); }
.satz input:focus, .satz select:focus { background: rgba(255, 255, 255, .35); }
.satz select { appearance: none; cursor: pointer; padding-right: 10px; }
.anfrage__fuss { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; margin-top: 34px; }
.anfrage__fuss .knopf { background: var(--gelb); color: var(--tinte); font-size: 22px; padding: 18px 28px; }
.anfrage__fuss p { margin: 0; color: var(--tinte); font-weight: 700; max-width: 44ch; }
.meldung { margin-top: 20px; background: var(--tinte); color: var(--gelb); padding: 14px 18px; font-weight: 800; }

/* ——— Fuß ——— */
.fuss { background: var(--tinte); color: #bdb5a6; padding-block: 40px; font-size: 15px; }
.fuss .wrap { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; align-items: center; }
.fuss a { color: var(--papier); }
.fuss .marke b { color: var(--tinte); }

@media (prefers-reduced-motion: reduce) {
  .band__spur, .stempel { animation: none; }
  html { scroll-behavior: auto; }
}

@media (max-width: 900px) { .telefon { width: min(240px, 80%); } }

.nr--tinte { color: var(--tinte) !important; }
section.block[data-oben="0"] { padding-top: 0; }
.honig { position: absolute; left: -9999px; }
.audio i:nth-child(1){height:8px} .audio i:nth-child(2){height:16px} .audio i:nth-child(3){height:11px} .audio i:nth-child(4){height:19px} .audio i:nth-child(5){height:7px} .audio i:nth-child(6){height:14px} .audio i:nth-child(7){height:10px}

.posten--fest { cursor: default; padding-left: 30px; border-bottom: 3px solid var(--tinte); margin-bottom: 6px; }
