/* ============================================================
   JAKU ART — BASE CSS
   Farben 1:1 von Julia. Nicht aendern.
   ============================================================ */

:root {
  --rot: #d71920;
  --rot-dark: #b00e16;
  --rot-glow: rgba(215, 25, 32, 0.10);
  --weiss: #ffffff;
  --hellgrau: #f8f8f8;
  --mittelgrau: #e8e8e8;
  --text: #444444;
  --text-dark: #222222;
  --text-light: #777777;
  --schwarz: #1a1a1a;
  --max-w: 1140px;
  --radius: 6px;
}

/* === Reset ================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--weiss);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === Typography =========================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'PT Serif', Georgia, serif;
  color: var(--text-dark);
  font-weight: 400;
  line-height: 1.3;
}
h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 1rem; }
h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
h4 { font-size: 1.05rem; margin-bottom: 0.4rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--rot);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--rot-dark); }

img { max-width: 100%; height: auto; display: block; }
ul, ol { margin-bottom: 1rem; padding-left: 1.5rem; }

/* === Layout =============================================== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 4.5rem 0; }
.section--sm { padding: 3rem 0; }
.section--lg { padding: 6rem 0; }
.section--grau { background: var(--hellgrau); }
.section--dunkel { background: var(--schwarz); color: #ccc; }
.section--dunkel h2, .section--dunkel h3, .section--dunkel h4 { color: var(--weiss); }
.section--rot { background: var(--rot); color: var(--weiss); }
.section--rot h2, .section--rot h3 { color: var(--weiss); }

/* === Overline ============================================= */
.overline {
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rot);
  margin-bottom: 0.75rem;
}
.section--dunkel .overline { color: rgba(255,255,255,0.5); }
.section--rot .overline { color: rgba(255,255,255,0.6); }

/* === Buttons ============================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  text-decoration: none;
  line-height: 1.4;
}
.btn--primary {
  background: var(--rot);
  color: var(--weiss);
  border-color: var(--rot);
}
.btn--primary:hover {
  background: var(--rot-dark);
  border-color: var(--rot-dark);
  color: var(--weiss);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(215,25,32,0.25);
}
.btn--outline {
  background: transparent;
  color: var(--rot);
  border-color: var(--rot);
}
.btn--outline:hover {
  background: var(--rot);
  color: var(--weiss);
  transform: translateY(-2px);
}
.btn--white {
  background: var(--weiss);
  color: var(--rot);
  border-color: var(--weiss);
}
.btn--white:hover {
  background: transparent;
  color: var(--weiss);
  border-color: var(--weiss);
}

/* === Content Split (Text + Bild) ========================== */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.content-split.reverse { direction: rtl; }
.content-split.reverse > * { direction: ltr; }

.content-image {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--hellgrau);
  border: 1px solid var(--mittelgrau);
}
.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === Cards ================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--weiss);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  border: 1px solid var(--mittelgrau);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: var(--rot);
  color: inherit;
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--rot-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.card h3 {
  font-family: 'PT Serif', serif;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* === FAQ ================================================== */
.faq-list { max-width: 720px; }
.faq-item { border-bottom: 1px solid var(--mittelgrau); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem 0;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--rot); }
.faq-q::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--rot);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding-bottom: 1.2rem;
}

/* === Trust Bar ============================================ */
.trust-bar {
  padding: 3rem 0;
  background: var(--hellgrau);
  border-top: 1px solid var(--mittelgrau);
  border-bottom: 1px solid var(--mittelgrau);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  font-weight: 500;
  white-space: nowrap;
}
.trust-logos {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-logo {
  height: 36px;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all 0.3s;
}
.trust-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* === CTA Section ========================================== */
.cta-section {
  padding: 5rem 0;
  background: var(--rot);
  text-align: center;
}
.cta-section h2 {
  color: var(--weiss);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 0.75rem;
}
.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* === Breadcrumb =========================================== */
.breadcrumb {
  margin-bottom: 1.5rem;
  font-size: 0.82rem;
  color: var(--text-light);
}
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--rot); }
.breadcrumb .sep { margin: 0 0.4rem; }

/* === Scroll Reveal ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Responsive =========================================== */
@media (max-width: 900px) {
  .content-split { grid-template-columns: 1fr; gap: 2rem; }
  .content-split.reverse { direction: ltr; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .cards-grid { grid-template-columns: 1fr; }
  .trust-inner { flex-direction: column; gap: 1.5rem; }
  .cta-actions { flex-direction: column; align-items: center; }
}
