  /* FAQ-spezifische Active-State Nav-Klassen */
  .nav-links a.active { color: var(--accent-olive); }
  .nav-links a.active::after { width: 100%; }

  /* Page Header */
  .page-header {
    padding: 10rem 3rem 4rem;
    background: var(--warm-cream);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .page-header::before {
    content: '?';
    position: absolute;
    top: 2rem;
    right: 10%;
    font-family: 'DM Serif Display', serif;
    font-size: 18rem;
    color: rgba(107,123,76,0.04);
    line-height: 1;
    pointer-events: none;
  }
  .breadcrumb {
    font-size: 0.75rem;
    color: var(--warm-gray);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
  }
  .breadcrumb a {
    color: var(--warm-gray);
    text-decoration: none;
    transition: color 0.3s;
  }
  .breadcrumb a:hover { color: var(--accent-olive); }
  .page-header h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--deep-brown);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
  }
  .page-header h1 em {
    font-style: italic;
    background: linear-gradient(135deg, var(--accent-olive) 0%, var(--accent-olive-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .page-header p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--medium-brown);
    font-weight: 300;
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  /* Section basics */
  .section { padding: 5rem 3rem; }
  .container { max-width: 850px; margin: 0 auto; }
  .section-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-olive);
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
  }
  .section-label::before {
    content: '';
    width: 20px;
    height: 1.5px;
    background: var(--accent-olive);
  }

  /* FAQ Sections */
  .faq-category {
    margin-bottom: 3.5rem;
  }
  .faq-category-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 0.3rem;
    color: var(--deep-brown);
  }
  .faq-category-desc {
    font-size: 0.88rem;
    color: var(--warm-gray);
    margin-bottom: 1.5rem;
    font-weight: 300;
  }

  /* FAQ Items */
  .faq-list { margin: 0; }
  .faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.07);
    transition: background 0.3s;
  }
  .faq-item:hover { background: rgba(107,123,76,0.02); }
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.5rem 0;
    font-family: 'DM Serif Display', serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--deep-brown);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
    gap: 1rem;
  }
  .faq-question:hover { color: var(--accent-olive); }
  .faq-question::after {
    content: '+';
    font-family: 'DM Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--light-sage);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .faq-item.open .faq-question::after {
    transform: rotate(45deg);
    background: var(--accent-olive);
    color: var(--soft-white);
  }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
  }
  .faq-item.open .faq-answer {
    max-height: 400px;
    padding-bottom: 1.5rem;
  }
  .faq-answer p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--medium-brown);
    font-weight: 300;
  }

  /* CTA Section */
  .cta-section {
    text-align: center;
    padding: 6rem 3rem;
    background: linear-gradient(135deg, var(--deep-brown) 0%, #3A302A 50%, #2C2420 100%);
    color: var(--soft-white);
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 50%;
    height: 180%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(107,123,76,0.08) 0%, transparent 60%);
  }
  .cta-section h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
  }
  .cta-section p {
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
    max-width: 550px;
    margin: 0 auto 2rem;
    font-weight: 300;
    line-height: 1.7;
    position: relative;
    z-index: 2;
  }
  .cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
  }
  .btn-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--soft-white);
    color: var(--deep-brown);
    padding: 0.9rem 2.4rem;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 2px solid var(--soft-white);
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .btn-light:hover {
    background: var(--accent-olive);
    border-color: var(--accent-olive);
    color: var(--soft-white);
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(107,123,76,0.28), 0 8px 25px rgba(107,123,76,0.2);
  }
  .btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--soft-white);
    padding: 0.9rem 2.4rem;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .btn-outline-light:hover {
    border-color: var(--soft-white);
    background: rgba(255,255,255,0.05);
    transform: translateY(-2px);
  }

  /* Scroll Animations */
  .reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }


  /* Responsive */
  @media (max-width: 900px) {
    .nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .section { padding: 3.5rem 1.5rem; }
    .page-header { padding: 8rem 1.5rem 3rem; }
    .footer { padding: 3rem 1.5rem 2rem; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .footer-contact-item { justify-content: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-bottom-links { justify-content: center; }
    .footer-social { justify-content: center; }
  }
  @media (max-width: 550px) {
    .cta-actions { flex-direction: column; }
    .btn-light, .btn-outline-light { width: 100%; justify-content: center; }
    .page-header::before { font-size: 10rem; }
  }
