/* ===========================================
   Suchbegriff – Relaunch Layout
   New component styles for node type "suchbegriff" with field_neues_layout active.
   Brand variables are inherited from css/style.css (:root).
   =========================================== */

/* Additional brand tokens not yet in style.css */
:root {
  --aa-red-soft: rgba(230, 11, 0, 0.06);
  --aa-red-glow: rgba(230, 11, 0, 0.15);
  --aa-light: #f8f9fa;
  --aa-border: #e5e7eb;
  --aa-body: #2d3748;
}

/* ===== HERO ===== */
.sl-hero {
  background: var(--aa-dark);
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 4rem;
}
.sl-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(230,11,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.sl-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(230,11,0,0.4), transparent);
}

.sl-hero__breadcrumb {
  font-size: 0.82rem;
  margin-bottom: 1.25rem;
}
.sl-hero__breadcrumb a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 150ms ease;
}
.sl-hero__breadcrumb a:hover { color: rgba(255,255,255,0.7); }
.sl-hero__breadcrumb .sep {
  color: rgba(255,255,255,0.2);
  padding: 0 6px;
}
.sl-hero__breadcrumb .current { color: rgba(255,255,255,0.6); }

.sl-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(230,11,0,0.15);
  color: #ff6b63;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 2rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.sl-hero h1 {
  font-size: 2.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.sl-hero h1 .text-highlight {
  color: var(--aa-red);
}

.sl-hero__lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2rem;
}

.sl-hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.sl-hero__trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.sl-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  font-weight: 500;
}
.sl-hero__trust-item i { color: var(--aa-whatsapp); font-size: 1rem; }

@media (max-width: 768px) {
  .sl-hero { padding: 3rem 0 2.5rem; }
  .sl-hero h1 { font-size: 2rem; }
  .sl-hero__lead { font-size: 1rem; }
  .sl-hero__ctas { flex-direction: column; }
  .sl-hero__ctas a { width: 100%; justify-content: center; }
  .sl-hero__trust { gap: 16px; }
}

/* ===== CTA BUTTONS (hero) ===== */
.sl-btn-phone {
  background: var(--aa-red);
  border: none;
  color: #fff;
  padding: 14px 28px;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(230,11,0,0.35);
  transition: all 200ms ease;
}
.sl-btn-phone:hover {
  background: var(--aa-red-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(230,11,0,0.45);
}
.sl-btn-whatsapp {
  background: var(--aa-whatsapp);
  border: none;
  color: #fff;
  padding: 14px 28px;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37,211,102,0.3);
  transition: all 200ms ease;
}
.sl-btn-whatsapp:hover {
  background: var(--aa-whatsapp-hover);
  color: #fff;
  transform: translateY(-2px);
}
.sl-btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 14px 28px;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 200ms ease;
}
.sl-btn-outline:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
  color: #fff;
}

/* ===== SOCIAL PROOF BAR ===== */
.sl-proof-bar {
  background: #fff;
  border-bottom: 1px solid var(--aa-border);
  padding: 1.5rem 0;
}
.sl-proof-stat { text-align: center; padding: 0.5rem 0; }
.sl-proof-stat .number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--aa-dark);
  letter-spacing: -0.03em;
  line-height: 1;
}
.sl-proof-stat .label {
  font-size: 0.82rem;
  color: var(--aa-muted);
  margin-top: 4px;
  font-weight: 500;
}
.sl-proof-divider {
  width: 1px;
  background: var(--aa-border);
  align-self: stretch;
}
@media (max-width: 768px) {
  .sl-proof-stat .number { font-size: 1.4rem; }
  .sl-proof-divider { display: none; }
}

/* ===== SECTION HEADERS ===== */
.sl-section-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--aa-red);
  margin-bottom: 0.5rem;
}
.sl-section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--aa-dark);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.sl-section-subtitle {
  font-size: 1.05rem;
  color: var(--aa-muted);
  line-height: 1.6;
  max-width: 560px;
}

/* ===== PROCESS STEPS ===== */
.sl-section-process { padding: 4rem 0; }
.sl-step-card {
  background: #fff;
  border: 1px solid var(--aa-border);
  border-radius: 0.75rem;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 300ms ease;
  position: relative;
  height: 100%;
}
.sl-step-card:hover {
  border-color: var(--aa-red);
  box-shadow: 0 8px 32px rgba(230,11,0,0.08);
  transform: translateY(-4px);
}
.sl-step-card .step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--aa-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 16px rgba(230,11,0,0.25);
  transition: transform 300ms ease, box-shadow 300ms ease;
}
.sl-step-card:hover .step-num {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(230,11,0,0.35);
}
.sl-step-card .step-num--green {
  background: var(--aa-whatsapp);
  box-shadow: 0 4px 16px rgba(37,211,102,0.25);
}
.sl-step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--aa-dark);
  margin-bottom: 0.75rem;
}
.sl-step-card p {
  font-size: 0.9rem;
  color: var(--aa-muted);
  line-height: 1.6;
  margin: 0;
}
.sl-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--aa-red);
  font-size: 1.5rem;
  opacity: 0.4;
}
@media (max-width: 768px) {
  .sl-step-arrow { transform: rotate(90deg); margin: 0.5rem auto; }
}

/* ===== VEHICLE TYPES ===== */
.sl-section-vehicles { padding: 4rem 0; background: var(--aa-light); }
.sl-vehicle-card {
  background: #fff;
  border: 1px solid var(--aa-border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 250ms ease;
  height: 100%;
}
.sl-vehicle-card:hover {
  border-color: var(--aa-red);
  box-shadow: 0 4px 20px rgba(230,11,0,0.08);
  transform: translateY(-3px);
}
.sl-vehicle-card .vt-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: var(--aa-red-soft);
  color: var(--aa-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.sl-vehicle-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--aa-dark);
  margin-bottom: 0.375rem;
}
.sl-vehicle-card p {
  font-size: 0.85rem;
  color: var(--aa-muted);
  margin: 0;
  line-height: 1.5;
}

/* ===== SERVICE INCLUDES ===== */
.sl-section-service { padding: 4rem 0; }
.sl-service-include {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--aa-border);
}
.sl-service-include:last-child { border-bottom: none; }
.sl-service-include .si-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: #ecfdf5;
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.sl-service-include h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--aa-dark);
  margin: 0 0 2px;
}
.sl-service-include p {
  font-size: 0.85rem;
  color: var(--aa-muted);
  margin: 0;
  line-height: 1.5;
}

/* ===== DIENSTLEISTUNG TAGS ===== */
.sl-service-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.sl-service-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--aa-red-soft);
  color: var(--aa-red);
  border: 1px solid rgba(230,11,0,0.15);
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ===== FAQ ACCORDION ===== */
.sl-section-faq { padding: 4rem 0; background: var(--aa-light); }
.sl-faq-item {
  background: #fff;
  border: 1px solid var(--aa-border);
  border-radius: 0.75rem;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 200ms ease;
}
.sl-faq-item:hover { border-color: rgba(230,11,0,0.2); }
.sl-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.125rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--aa-dark);
  user-select: none;
  transition: color 150ms ease;
}
.sl-faq-question:hover { color: var(--aa-red); }
.sl-faq-question .faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--aa-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--aa-muted);
  flex-shrink: 0;
  transition: all 200ms ease;
}
.sl-faq-item.open .faq-toggle {
  background: var(--aa-red-soft);
  color: var(--aa-red);
  transform: rotate(45deg);
}
.sl-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms ease, padding 200ms ease;
  padding: 0 1.5rem;
}
.sl-faq-item.open .sl-faq-answer {
  max-height: 400px;
  padding: 0 1.5rem 1.25rem;
}
.sl-faq-answer p {
  font-size: 0.9rem;
  color: var(--aa-muted);
  line-height: 1.7;
  margin: 0;
}

/* ===== BLOG SECTION ===== */
.sl-section-blog { padding: 4rem 0; }
.sl-blog-more {
  color: var(--aa-red);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 150ms ease;
}
.sl-blog-more:hover { gap: 8px; color: var(--aa-red-hover); }

/* Blog cards */
.sl-blog-card {
  display: block;
  background: #fff;
  border: 1px solid var(--aa-border);
  border-radius: 0.75rem;
  overflow: hidden;
  text-decoration: none;
  transition: all 250ms ease;
  height: 100%;
}
.sl-blog-card:hover {
  border-color: var(--aa-red);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}
.sl-blog-card__img {
  width: 100%;
  height: 180px;
  overflow: hidden;
}
.sl-blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sl-blog-card__img--placeholder {
  height: 180px;
  background: var(--aa-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--aa-border);
  font-size: 2rem;
}
.sl-blog-card__body { padding: 1.25rem; }
.sl-blog-card__body h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--aa-dark);
  line-height: 1.4;
  margin: 0 0 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sl-blog-card__link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--aa-red);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 150ms ease;
}
.sl-blog-card:hover .sl-blog-card__link { gap: 8px; }

/* ===== LOCAL / ABHOLGEBIET ===== */
.sl-section-local { padding: 3.5rem 0; border-top: 1px solid var(--aa-border); }
.sl-section-local__meta {
  font-size: 0.88rem;
  color: var(--aa-muted);
  margin-top: 0.75rem;
  line-height: 1.8;
}
.sl-section-local__meta a { color: var(--aa-red); font-weight: 600; text-decoration: none; }
.sl-chips-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--aa-muted);
  margin-bottom: 0.75rem;
}
.sl-district-chip {
  display: inline-flex;
  padding: 6px 14px;
  border: 1px solid var(--aa-border);
  border-radius: 2rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--aa-muted);
}

/* ===== CITY CHIPS ===== */
.sl-section-cities { padding: 3rem 0; border-top: 1px solid var(--aa-border); }
.sl-city-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border: 1px solid var(--aa-border);
  border-radius: 2rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--aa-muted);
  text-decoration: none;
  transition: all 200ms ease;
}
.sl-city-chip:hover {
  border-color: var(--aa-red);
  color: var(--aa-red);
  background: var(--aa-red-soft);
}
.sl-city-chip.active {
  background: var(--aa-red);
  color: #fff;
  border-color: var(--aa-red);
}

/* ===== BOTTOM CTA BANNER ===== */
.sl-section-cta-bottom {
  background: var(--aa-dark);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
.sl-section-cta-bottom::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(230,11,0,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.sl-section-cta-bottom h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.sl-section-cta-bottom p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* ===== SEO TEXT ===== */
.sl-section-seo { padding: 4rem 0; }
.sl-seo-content {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--aa-body);
  max-width: 860px;
}
.sl-seo-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--aa-dark);
  margin: 2rem 0 0.75rem;
  letter-spacing: -0.01em;
}
.sl-seo-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--aa-dark);
  margin: 1.5rem 0 0.5rem;
}
.sl-seo-content h2:first-child,
.sl-seo-content h3:first-child { margin-top: 0; }
.sl-seo-content p { margin-bottom: 1rem; }
.sl-seo-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.sl-seo-content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.7;
}
.sl-seo-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 7px;
  height: 7px;
  background: var(--aa-red);
  border-radius: 50%;
}
.sl-seo-content a { color: var(--aa-red); }
.sl-seo-content a:hover { color: var(--aa-red-hover); }

/* ===== BRAND STRIP ===== */
.sl-brand-strip {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--aa-border);
}
.sl-brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  opacity: 0.25;
  transition: opacity 200ms ease, transform 200ms ease;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--aa-dark);
  letter-spacing: -0.03em;
  text-decoration: none;
}
.sl-brand-logo:hover {
  opacity: 0.6;
  color: var(--aa-dark);
  transform: scale(1.1);
}
.sl-brand-logo--all {
  font-size: 0.85rem;
  opacity: 0.35;
}
.sl-brand-strip__note {
  font-size: 0.78rem;
  color: var(--aa-muted);
  text-align: center;
  margin: 0.5rem 0 0;
}

/* ===== COMPARISON TABLE ===== */
.sl-section-compare { padding: 4rem 0; background: var(--aa-light); }
.sl-compare-table {
  width: 100%;
  min-width: 540px;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--aa-border);
  background: #fff;
}
.sl-compare-table thead th {
  padding: 1rem 1.25rem;
  font-size: 0.92rem;
  font-weight: 700;
  border-bottom: 2px solid var(--aa-border);
  text-align: left;
}
.sl-compare-table thead th:first-child { color: var(--aa-muted); background: #fff; }
.sl-compare-table thead th.sl-col-adam { background: var(--aa-red-soft); color: var(--aa-red); }
.sl-compare-table thead th.sl-col-private { background: #fff; color: var(--aa-dark); }
.sl-compare-table tbody td {
  padding: 0.85rem 1.25rem;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--aa-border);
  vertical-align: middle;
}
.sl-compare-table tbody tr:last-child td { border-bottom: none; }
.sl-compare-table .sl-label-cell { color: var(--aa-muted); font-weight: 500; }
.sl-compare-table .sl-check { color: var(--aa-whatsapp); font-size: 1.1rem; }
.sl-compare-table .sl-cross { color: #dc3545; font-size: 1.1rem; }
.sl-compare-table .sl-neutral { color: var(--aa-muted); font-size: 0.95rem; }
.sl-col-adam-cell { background: rgba(230,11,0,0.02); }

/* ===== EXAMPLE PURCHASES ===== */
.sl-section-examples { padding: 4rem 0; }
.sl-example-card {
  background: #fff;
  border: 1px solid var(--aa-border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 250ms ease;
  height: 100%;
}
.sl-example-card:hover {
  border-color: var(--aa-red);
  box-shadow: 0 4px 20px rgba(230,11,0,0.06);
}
.sl-example-card .ex-vehicle {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  background: var(--aa-light);
  color: var(--aa-muted);
}
.sl-example-card .ex-vehicle--ok {
  background: #ecfdf5;
  color: #059669;
}
.sl-example-card .ex-vehicle--warn {
  background: #fff7ed;
  color: #c2410c;
}
.sl-example-card .ex-vehicle--danger {
  background: var(--aa-red-soft);
  color: var(--aa-red);
}
.sl-example-card .ex-model {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--aa-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.sl-example-card .ex-detail {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.4rem 0;
  font-size: 0.82rem;
  border-bottom: 1px solid var(--aa-border);
}
.sl-example-card .ex-detail:last-of-type { border-bottom: none; }
.sl-example-card .ex-detail .dt { color: var(--aa-muted); flex-shrink: 0; }
.sl-example-card .ex-detail .dd { color: var(--aa-dark); font-weight: 600; text-align: right; }
.sl-example-card .ex-price {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid var(--aa-red);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.sl-example-card .ep-label {
  font-size: 0.78rem;
  color: var(--aa-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.sl-example-card .ep-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--aa-red);
}

/* ===== OBJECTION HANDLING ===== */
.sl-section-objections { padding: 4rem 0; background: var(--aa-light); }
.sl-objection-card {
  background: #fff;
  border: 1px solid var(--aa-border);
  border-left: 3px solid var(--aa-red);
  border-radius: 0.75rem;
  padding: 1.5rem;
  height: 100%;
  transition: box-shadow 250ms ease, transform 250ms ease;
}
.sl-objection-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.sl-objection-card .obj-q {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--aa-dark);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.sl-objection-card .obj-q i {
  color: var(--aa-red);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.sl-objection-card .obj-a {
  font-size: 0.88rem;
  color: var(--aa-muted);
  line-height: 1.7;
  padding-left: 30px;
}
.sl-objection-card .obj-a a { color: var(--aa-red); font-weight: 600; }

/* ===== FADE-UP ANIMATION ===== */
@keyframes sl-fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.sl-fade-up {
  opacity: 0;
  animation: sl-fadeUp 0.6s ease forwards;
}
.sl-fade-up-1 { animation-delay: 0.1s; }
.sl-fade-up-2 { animation-delay: 0.2s; }
.sl-fade-up-3 { animation-delay: 0.3s; }
.sl-fade-up-4 { animation-delay: 0.4s; }

/* ===== SCROLL REVEAL ===== */
.sl-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.sl-reveal.sl-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SECTION GRADIENT SEPARATOR ===== */
.sl-section-sep {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--aa-border), transparent);
  border: none;
  margin: 0;
}

/* ===== EXPERTISE BLOCKS ===== */
.sl-section-expertise {
  padding: 4rem 0;
}

/* Betriebsstunden / Kilometerstand tiers (LKW, Gabelstapler) */
.sl-expertise-tiers {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sl-tier {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: var(--aa-light);
  border-left: 3px solid var(--aa-border);
}
.sl-tier--green { border-left-color: #16a34a; }
.sl-tier--ok    { border-left-color: #2563eb; }
.sl-tier--warn  { border-left-color: #d97706; }
.sl-tier--muted { border-left-color: #9ca3af; }
.sl-tier-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  background: rgba(0,0,0,0.06);
  color: var(--aa-dark);
  margin-top: 0.1rem;
}
.sl-tier strong { display: block; font-size: 0.95rem; color: var(--aa-dark); }
.sl-tier p { margin: 0; font-size: 0.82rem; color: var(--aa-muted); }

/* Brand tiers (Fabrikate-Übersicht) */
.sl-brand-tier {
  padding: 0.75rem 1rem;
  background: var(--aa-light);
  border-radius: 8px;
}
.sl-brand-tier strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--aa-muted);
  margin-bottom: 0.4rem;
}
.sl-brand-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.sl-brand-chips span {
  font-size: 0.82rem;
  font-weight: 600;
  background: #fff;
  border: 1px solid var(--aa-border);
  border-radius: 6px;
  padding: 0.2rem 0.55rem;
  color: var(--aa-dark);
}

/* Modell-Probleme (Geländewagen) */
.sl-model-issues {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.sl-model-issue {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0.55rem 0.75rem;
  background: var(--aa-light);
  border-radius: 8px;
  border-left: 3px solid var(--aa-border);
}
.sl-model-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--aa-dark);
  white-space: nowrap;
  flex-shrink: 0;
}
.sl-model-problem {
  font-size: 0.82rem;
  color: var(--aa-muted);
}

/* Gutachten vs. Bewertung comparison (auto-schaetzen) */
.sl-expertise-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 576px) {
  .sl-expertise-compare { grid-template-columns: 1fr; }
}
.sl-ec-col {
  background: var(--aa-light);
  border-radius: 10px;
  padding: 1rem;
  border: 1px solid var(--aa-border);
}
.sl-ec-col--adam {
  background: var(--aa-red-soft);
  border-color: var(--aa-red-glow);
}
.sl-ec-header {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  color: var(--aa-dark);
}
.sl-ec-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.sl-ec-col li {
  font-size: 0.84rem;
  color: var(--aa-dark);
}
