/* ==========================================================================
   UTOPIA STORE — Gemeinsames Stylesheet für alle Ankaufs-Landingpages
   Ergänzt styles.css. Farbwelt und Container werden von dort übernommen.
   ========================================================================== */

:root {
  --neon: #7ddc8c;
  --neon-dim: rgba(125, 220, 140, 0.14);
  --muted: rgba(255, 255, 255, 0.72);
  --muted-2: rgba(255, 255, 255, 0.55);
  --brand-orange: #ff6600;
  --card-bg: rgba(255, 255, 255, 0.035);
  --card-line: rgba(125, 220, 140, 0.22);
  --radius: 14px;
}

.ak-container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 20px; box-sizing: border-box; }
.ak-section { margin: 0 auto 4.5rem; }
.ak-section h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--neon);
  margin: 0 0 .6rem;
  line-height: 1.2;
}
.ak-section > .ak-lede {
  font-size: 1.08rem; line-height: 1.65; color: var(--muted);
  max-width: 68ch; margin: 0 0 1.8rem;
}
.ak-section h3 { color: #fff; font-size: 1.05rem; margin: 0 0 .45rem; line-height: 1.35; }
.ak-section p  { color: var(--muted); line-height: 1.65; }

/* ---------- Hero ---------- */
.ak-hero { padding-block: 3.5rem 2.5rem; }
.ak-hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: center; }
.ak-hero h1 {
  font-size: clamp(30px, 5vw, 54px); line-height: 1.08; margin: 0 0 1rem;
  text-shadow: 0 0 18px rgba(125, 220, 140, .45);
}
.ak-hero h1 span { color: var(--neon); }
.ak-hero .ak-lead { font-size: 1.14rem; line-height: 1.6; color: var(--muted); max-width: 60ch; }
.ak-hero-art img { width: 100%; object-fit: contain; border: 0; background: transparent; }

.ak-badges { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.6rem 0 0; padding: 0; list-style: none; }
.ak-badges li {
  font-size: .9rem; color: #eafaec; background: var(--neon-dim);
  border: 1px solid var(--card-line); border-radius: 999px; padding: .42rem .95rem;
}

.ak-cta-row { margin-top: 2rem; display: flex; gap: .9rem; flex-wrap: wrap; }
/* Buttons: es gilt das Hausystem .btn / .btn.primary / .btn.secondary aus styles.css */

/* ---------- „Auf einen Blick“ — der Faktenkasten ---------- */

/* ---------- Karten-Raster ---------- */
.ak-grid { display: grid; gap: 1.1rem; }
.ak-grid-2 { grid-template-columns: repeat(2, 1fr); }
.ak-grid-3 { grid-template-columns: repeat(3, 1fr); }
.ak-grid-4 { grid-template-columns: repeat(4, 1fr); }
.ak-card {
  background: var(--card-bg); border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius); padding: 1.3rem 1.4rem;
}
.ak-card p { margin: 0; font-size: .95rem; }
.ak-card--accent { border-color: var(--card-line); }

/* ---------- Ablauf-Schritte ---------- */
.ak-steps { counter-reset: ak-step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.ak-step {
  background: var(--card-bg); border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius); padding: 1.5rem 1.3rem 1.3rem; position: relative;
}
.ak-step::before {
  counter-increment: ak-step; content: counter(ak-step);
  position: absolute; top: -14px; left: 1.3rem;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--neon); color: #07130a;
  font-weight: 800; font-size: .95rem;
  display: grid; place-items: center;
}
.ak-step h3 { margin-top: .35rem; }
.ak-step p { margin: 0; font-size: .93rem; }

/* ---------- Ankauf-Listen (Ja / Nein) ---------- */
.ak-yesno { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.ak-list { list-style: none; margin: 0; padding: 0; }
.ak-list li { position: relative; padding-left: 1.7rem; margin-bottom: .6rem; color: var(--muted); line-height: 1.5; }
.ak-list li::before { position: absolute; left: 0; top: 0; font-weight: 700; }
.ak-list--yes li::before { content: "✓"; color: var(--neon); }
.ak-list--no  li::before { content: "×"; color: #ff8a7a; font-size: 1.15rem; line-height: 1.2; }

/* ---------- FAQ ---------- */
.ak-faq details {
  background: var(--card-bg); border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px; padding: 1rem 1.25rem; margin-bottom: .75rem;
}
.ak-faq details[open] { border-color: var(--card-line); }
.ak-faq summary {
  cursor: pointer; color: #fff; font-weight: 700; font-size: 1.02rem;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.ak-faq summary::-webkit-details-marker { display: none; }
.ak-faq summary::after { content: "+"; color: var(--neon); font-size: 1.4rem; line-height: 1; flex: none; }
.ak-faq details[open] summary::after { content: "−"; }
.ak-faq details p { margin: .8rem 0 0; font-size: .97rem; }

/* ---------- Abschluss-CTA ---------- */
.ak-final {
  background: linear-gradient(135deg, rgba(125, 220, 140, .12), rgba(255, 102, 0, .10));
  border: 1px solid var(--card-line); border-radius: 18px;
  padding: 2.6rem 2rem; text-align: center;
}
.ak-final h2 { margin-bottom: .6rem; }
.ak-final p { max-width: 60ch; margin: 0 auto 1.6rem; }
.ak-final .ak-cta-row { justify-content: center; }

/* ---------- Weitere Ankaufsseiten ---------- */
.ak-related { display: flex; flex-wrap: wrap; gap: .6rem; padding: 0; margin: 1.2rem 0 0; list-style: none; }
.ak-related a {
  display: inline-block; font-size: .92rem; text-decoration: none;
  color: var(--muted); background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1); border-radius: 999px; padding: .45rem 1rem;
  transition: color .12s ease, border-color .12s ease;
}
.ak-related a:hover { color: var(--neon); border-color: var(--card-line); }

/* ---------- Brotkrumen ---------- */
.ak-crumbs { font-size: .85rem; color: var(--muted-2); padding-block: 1.4rem 0; }
.ak-crumbs a { color: var(--muted-2); text-decoration: none; }
.ak-crumbs a:hover { color: var(--neon); }

/* ---------- Responsiv ---------- */
@media (max-width: 900px) {
  .ak-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .ak-hero-art { order: -1; max-width: 380px; }
  .ak-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .ak-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .ak-steps  { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .ak-grid-2, .ak-grid-3, .ak-grid-4, .ak-steps, .ak-yesno { grid-template-columns: 1fr; }
  .ak-cta-row .btn { width: 100%; justify-content: center; }
}

/* ---------- Großes Icon im Seitenkopf (ersetzt die Fotos) ---------- */
.ak-hero-icon { display: flex; align-items: center; justify-content: center; }
.ak-hero-icon img {
  width: min(260px, 62%); height: auto; opacity: .92;
  filter: drop-shadow(0 0 26px rgba(125, 220, 140, .38));
}
.ak-hero h1 .ak-accent { color: var(--neon); }

@media (max-width: 860px) {
  .ak-hero-icon { order: -1; }
  .ak-hero-icon img { width: min(170px, 44%); }
}


@media (prefers-reduced-motion: reduce) {
  .card.tile-link:hover { transform: none; }
}

/* ---------- „Auf einen Blick": Kartenraster statt Textwand ----------
   Vorher stand die Klasse direkt auf dem <dl>, die Rasterregel zielte
   aber auf ein verschachteltes <dl> — das Raster griff nie und alle
   Fakten stapelten sich als Fließtext. */
.ak-facts {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: 1rem; margin: 0 0 4.5rem; padding: 0;
}
.ak-facts > div {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, .08);
  border-left: 3px solid var(--neon);
  border-radius: var(--radius);
  padding: 1.05rem 1.15rem;
  transition: border-color .15s ease, background .15s ease, transform .15s ease;
}
.ak-facts > div:hover {
  border-color: var(--card-line); background: rgba(125, 220, 140, .06);
  transform: translateY(-2px);
}
.ak-facts dt {
  color: var(--neon); font-weight: 700; font-size: .78rem;
  letter-spacing: .07em; text-transform: uppercase; margin: 0 0 .45rem;
}
.ak-facts dd {
  margin: 0; color: var(--muted); font-size: .95rem; line-height: 1.55;
}

/* ---------- „Das findest du bei uns": zweispaltig statt lange Liste ---------- */
.ak-list--yes, .ak-list--no {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: .1rem 1.6rem;
}

/* ---------- Abschnittsüberschrift mit Akzentstrich ---------- */
.ak-section > h2 { position: relative; padding-left: .9rem; }
.ak-section > h2::before {
  content: ''; position: absolute; left: 0; top: .18em; bottom: .18em;
  width: 4px; border-radius: 2px; background: var(--neon);
}
.ak-final h2 { padding-left: 0; }
.ak-final h2::before { display: none; }

@media (max-width: 620px) {
  .ak-facts { grid-template-columns: 1fr; gap: .7rem; }
  .ak-facts > div { padding: .9rem 1rem; }
}
@media (prefers-reduced-motion: reduce) {
  .ak-facts > div:hover { transform: none; }
}

/* ---------- Ladenlokal-Karte: Adresse, Zeiten und Hinweise getrennt ---------- */
.ak-adresse {
  font-style: normal; color: #fff; font-weight: 600;
  line-height: 1.45; margin: 0 0 .9rem;
}
.ak-zeiten { margin: 0 0 1rem; display: grid; gap: .3rem; }
.ak-zeiten > div {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .34rem 0; border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.ak-zeiten > div:last-child { border-bottom: 0; }
.ak-zeiten dt { color: var(--muted); font-size: .92rem; margin: 0; }
.ak-zeiten dd { color: #fff; font-weight: 600; font-size: .92rem; margin: 0; white-space: nowrap; }
.ak-card .ak-hinweis {
  margin: 0 0 .55rem; font-size: .93rem; line-height: 1.5; color: var(--muted);
}
.ak-card .ak-hinweis:last-child { margin-bottom: 0; }
