  /* Page-spezifische Ergänzungen für index.html */
  .mobile-menu .btn-primary {
    margin-top: 1rem;
    border-radius: 100px;
  }

  /* ========== HERO ========== */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--warm-cream);
  }

  /* Decorative organic blobs */
  .hero-blob-1 {
    position: absolute;
    top: -15%;
    right: -8%;
    width: 55vw;
    height: 55vw;
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    background: radial-gradient(circle at 30% 40%, rgba(107,123,76,0.07) 0%, transparent 70%);
    animation: blobMorph 18s ease-in-out infinite;
  }
  .hero-blob-2 {
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 40vw;
    height: 40vw;
    border-radius: 58% 42% 35% 65% / 55% 60% 40% 45%;
    background: radial-gradient(circle at 60% 50%, rgba(212,168,108,0.06) 0%, transparent 70%);
    animation: blobMorph 22s ease-in-out infinite reverse;
  }
  @keyframes blobMorph {
    0%, 100% {
      border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
      transform: translate(0, 0) rotate(0deg) scale(1);
    }
    33% {
      border-radius: 70% 30% 50% 50% / 30% 60% 40% 70%;
      transform: translate(15px, -20px) rotate(3deg) scale(1.03);
    }
    66% {
      border-radius: 30% 70% 40% 60% / 60% 30% 70% 40%;
      transform: translate(-10px, 15px) rotate(-2deg) scale(0.98);
    }
  }

  /* Floating decorative leaves */
  .hero-deco {
    position: absolute;
    font-size: 2.2rem;
    opacity: 0.12;
    z-index: 1;
    animation: floatDeco 12s ease-in-out infinite;
  }
  .hero-deco-1 { top: 18%; right: 8%; animation-delay: 0s; }
  .hero-deco-2 { top: 65%; right: 22%; animation-delay: -4s; font-size: 1.6rem; }
  .hero-deco-3 { top: 30%; left: 5%; animation-delay: -7s; font-size: 1.8rem; }
  @keyframes floatDeco {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-18px) rotate(8deg); }
  }

  .hero-inner {
    max-width: 1220px;
    margin: 0 auto;
    padding: 8rem 3rem 5rem;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(107,123,76,0.08);
    border: 1px solid rgba(107,123,76,0.15);
    padding: 0.45rem 1.1rem;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-olive);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease both;
  }
  .hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-olive);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
  }
  .hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.5rem, 4.8vw, 3.8rem);
    line-height: 1.12;
    font-weight: 400;
    color: var(--deep-brown);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.1s both;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--accent-olive);
    position: relative;
  }
  .hero h1 em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(107,123,76,0.12);
    border-radius: 4px;
    z-index: -1;
  }
  .hero-sub {
    font-size: 1.12rem;
    line-height: 1.75;
    color: var(--medium-brown);
    font-weight: 300;
    max-width: 520px;
    margin-bottom: 2.2rem;
    animation: fadeInUp 0.8s ease 0.2s both;
  }
  .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.3s both;
  }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--deep-brown);
    color: var(--soft-white);
    padding: 0.9rem 2.2rem;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 2px solid var(--deep-brown);
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-olive);
    border-radius: 100px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
  }
  .btn-primary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }
  .btn-primary:hover {
    border-color: var(--accent-olive);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107,123,76,0.25);
  }
  .btn-primary span { position: relative; z-index: 1; }
  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--deep-brown);
    padding: 0.9rem 2.2rem;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 2px solid var(--deep-brown);
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
  }
  .btn-secondary:hover {
    background: var(--deep-brown);
    color: var(--soft-white);
    transform: translateY(-2px);
  }

  /* Hero Visual – Organic Shape Mask */
  .hero-visual {
    position: relative;
    animation: fadeInUp 0.8s ease 0.4s both;
  }
  .hero-visual-main {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    position: relative;
    border-radius: 40% 60% 55% 45% / 55% 40% 60% 45%;
    animation: imageBlobMorph 12s ease-in-out infinite;
    box-shadow:
      0 30px 80px rgba(44,36,32,0.12),
      0 0 0 6px rgba(107,123,76,0.06);
  }
  @keyframes imageBlobMorph {
    0%, 100% { border-radius: 40% 60% 55% 45% / 55% 40% 60% 45%; }
    25% { border-radius: 55% 45% 40% 60% / 45% 55% 45% 55%; }
    50% { border-radius: 45% 55% 60% 40% / 60% 45% 55% 40%; }
    75% { border-radius: 60% 40% 45% 55% / 40% 60% 40% 60%; }
  }
  .hero-visual-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(44,36,32,0.35) 100%);
    z-index: 1;
  }
  .hero-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--sand) 0%, var(--warm-cream) 100%);
  }
  .hero-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Trust Badge on Hero */
  .hero-trust-badge {
    position: absolute;
    bottom: 2rem;
    left: -1rem;
    background: rgba(253,251,248,0.96);
    backdrop-filter: blur(12px);
    padding: 1rem 1.5rem;
    box-shadow: 0 8px 40px rgba(0,0,0,0.1);
    z-index: 3;
    border-radius: 16px;
    animation: fadeInUp 0.8s ease 0.7s both;
  }
  .hero-trust-badge .trust-number {
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--accent-olive);
    line-height: 1;
  }
  .hero-trust-badge .trust-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--warm-gray);
    font-weight: 500;
    margin-top: 0.2rem;
  }

  /* Decorative ring behind hero image */
  .hero-visual::before {
    content: '';
    position: absolute;
    top: -8%;
    right: -8%;
    width: 50%;
    height: 50%;
    border: 2px dashed rgba(107,123,76,0.12);
    border-radius: 50%;
    animation: slowSpin 40s linear infinite;
    z-index: -1;
  }
  @keyframes slowSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  /* ========== WAVE DIVIDER ========== */
  .wave-divider {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-top: -1px;
  }
  .wave-divider svg {
    display: block;
    width: 100%;
    height: auto;
  }
  .wave-divider-cream { background: var(--soft-white); }
  .wave-divider-cream svg { fill: var(--warm-cream); }
  .wave-divider-white { background: var(--warm-cream); }
  .wave-divider-white svg { fill: var(--soft-white); }
  .wave-divider-dark { background: var(--soft-white); }
  .wave-divider-dark svg { fill: var(--deep-brown); }
  .wave-divider-from-dark { background: var(--deep-brown); }
  .wave-divider-from-dark svg { fill: var(--soft-white); }
  .wave-divider-sage { background: var(--soft-white); }
  .wave-divider-sage svg { fill: var(--light-sage); }
  .wave-divider-from-sage { background: var(--light-sage); }
  .wave-divider-from-sage svg { fill: var(--deep-brown); }
  .wave-divider-from-dark-to-cream { background: var(--deep-brown); }
  .wave-divider-from-dark-to-cream svg { fill: var(--warm-cream); }

  /* ========== TRUST BAR ========== */
  .trust-bar {
    background: var(--deep-brown);
    color: var(--soft-white);
    padding: 2.5rem 3rem;
    position: relative;
  }
  .trust-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .trust-bar-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 1rem;
    position: relative;
  }
  .trust-bar-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 0;
    height: 80%;
    width: 1px;
    background: rgba(255,255,255,0.08);
  }
  .trust-bar-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(138,158,100,0.12);
    border: 1px solid rgba(138,158,100,0.2);
    font-size: 1.15rem;
  }
  .trust-bar-icon svg {
    width: 22px;
    height: 22px;
  }
  .trust-bar-text {
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: 400;
    opacity: 0.7;
  }
  .trust-bar-text strong {
    font-weight: 600;
    opacity: 1;
    color: var(--soft-white);
    display: block;
  }

  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ========== SECTION BASICS ========== */
  .section { padding: 6rem 3rem; }
  .section-dark { background: var(--deep-brown); color: var(--soft-white); }
  .section-cream { background: var(--warm-cream); }
  .section-sage { background: var(--light-sage); }
  .container { max-width: 1200px; 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);
  }
  .section-dark .section-label { color: var(--accent-olive-light); }
  .section-dark .section-label::before { background: var(--accent-olive-light); }

  .section-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  .section-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--medium-brown);
    font-weight: 300;
    max-width: 700px;
  }
  .section-dark .section-subtitle { color: rgba(255,255,255,0.6); }

  /* ========== INLINE SVG ICON ========== */
  .icon-box {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-sage);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--accent-olive);
  }
  .icon-box svg {
    width: 24px;
    height: 24px;
  }

  /* ========== KONZEPT CARDS — ASYMMETRIC ========== */
  .diff-grid {
    margin-top: 3.5rem;
  }
  /* Kreide-Kacheln */
  .diff-featured,
  .diff-card,
  .benefit-item {
    position: relative;
    overflow: hidden;
  }
  .chalk-canvas {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
  }
  .chalk-active .chalk-canvas {
    opacity: 1;
  }
  .diff-featured .icon-box,
  .diff-featured h3,
  .diff-featured p,
  .diff-featured > div,
  .diff-card .icon-box,
  .diff-card h3,
  .diff-card p,
  .diff-card > div,
  .benefit-item .benefit-icon,
  .benefit-item h4,
  .benefit-item p {
    position: relative;
    z-index: 1;
  }

  .diff-featured {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.5rem;
    background: var(--card-tint, var(--soft-white));
    border-left: 3px solid var(--accent-olive);
    border-radius: 0 16px 16px 0;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .diff-featured:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
  }
  .diff-featured .icon-box {
    width: 56px;
    height: 56px;
    margin-top: 0.2rem;
  }
  .diff-featured h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0.6rem;
  }
  .diff-featured p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--medium-brown);
    font-weight: 300;
  }
  .diff-sub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .diff-card {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 2rem;
    background: var(--card-tint, var(--soft-white));
    border-left: 3px solid var(--accent-olive);
    border-radius: 0 16px 16px 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .diff-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
  }
  .diff-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.4rem;
  }
  .diff-card p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--medium-brown);
    font-weight: 300;
  }

  /* ========== COMPARISON ========== */
  .compare-wrapper {
    margin-top: 3.5rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
  }
  .compare-col {
    padding: 2.5rem;
    border-radius: 20px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .compare-col:hover { transform: translateY(-4px); }
  .compare-classic {
    background: var(--sand);
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
  }
  .compare-campus {
    background: linear-gradient(135deg, var(--accent-olive) 0%, #5A6B3E 100%);
    color: var(--soft-white);
    box-shadow: 0 12px 40px rgba(107,123,76,0.25);
    transform: scale(1.02);
    padding: 3rem;
  }
  .compare-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem;
  }
  .compare-vs span {
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--warm-gray);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 0.1em;
  }
  .compare-col h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
  }
  .compare-col .compare-tag {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.55;
    margin-bottom: 1.5rem;
    display: block;
  }
  .compare-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
  }
  .compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: 400;
  }
  .compare-list li .li-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.65rem;
    margin-top: 1px;
  }
  .compare-classic .li-icon {
    background: rgba(44,36,32,0.08);
    color: var(--medium-brown);
  }
  .compare-campus .li-icon {
    background: rgba(255,255,255,0.18);
    color: var(--soft-white);
  }

  /* ========== TEAM — HORIZONTAL ========== */
  .team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
  }
  .stories-grid > :last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
  }
  .team-card {
    position: relative;
    overflow: hidden;
    padding: 2.2rem 2rem;
    border-radius: 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
  }
  .team-card:hover {
    background: rgba(255,255,255,0.10);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
  }
  .team-emoji {
    width: 52px;
    height: 52px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(138,158,100,0.15);
    color: var(--accent-olive-light);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .team-emoji svg {
    width: 26px;
    height: 26px;
  }
  .team-card:hover .team-emoji { transform: scale(1.15) rotate(-5deg); }
  .team-card h4 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
  }
  .team-card p {
    font-size: 0.85rem;
    opacity: 0.6;
    line-height: 1.6;
    font-weight: 300;
    position: relative;
    z-index: 1;
  }
  .team-card .chalk-canvas { border-radius: 20px; }

  /* ========== BENEFITS — BENTO GRID ========== */
  .benefits-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
    margin-top: 3.5rem;
  }
  .benefit-item {
    text-align: left;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    background: var(--card-tint, var(--soft-white));
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .benefit-item:first-child {
    grid-column: 1 / -1;
    padding: 3rem 2.5rem;
  }
  .benefit-icon {
    width: auto;
    height: auto;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--accent-olive);
  }
  .benefit-icon svg {
    width: 32px;
    height: 32px;
  }
  .benefit-item:first-child .benefit-icon svg {
    width: 40px;
    height: 40px;
  }
  .benefit-item h4 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
  }
  .benefit-item:first-child h4 {
    font-size: 1.3rem;
  }
  .benefit-item p {
    font-size: 0.88rem;
    color: var(--medium-brown);
    line-height: 1.7;
    font-weight: 300;
  }

  /* ========== QUALITY — BADGE STRIP ========== */
  .quality-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 3rem;
    flex-wrap: wrap;
  }
  .quality-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.8rem;
    position: relative;
  }
  .quality-badge:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: rgba(0,0,0,0.1);
  }
  .quality-badge-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-olive);
  }
  .quality-badge-icon svg {
    width: 24px;
    height: 24px;
  }
  .quality-badge h5 { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.02em; margin-bottom: 0.1rem; }
  .quality-badge p { font-size: 0.75rem; color: var(--warm-gray); line-height: 1.4; }

  /* ========== IMPRESSIONEN ========== */
  .impressionen-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
  }
  .impression-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--sand) 0%, var(--warm-cream) 100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .impression-card:hover {
    transform: translateY(-6px);
  }
  .impression-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .impression-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(44,36,32,0.4) 100%);
    pointer-events: none;
  }
  .impression-caption {
    position: absolute;
    bottom: 1.2rem;
    left: 1.2rem;
    right: 1.2rem;
    z-index: 2;
    color: white;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.02em;
  }
  .impression-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--warm-gray);
    text-align: center;
    padding: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
  }

  /* ========== PHILOSOPHY ========== */
  .philosophy {
    text-align: center;
    padding: 7rem 3rem;
    background: var(--light-sage);
    position: relative;
    overflow: hidden;
  }
  .philosophy::before {
    content: '„';
    position: absolute;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'DM Serif Display', serif;
    font-size: 10rem;
    color: rgba(107,123,76,0.08);
    line-height: 1;
  }
  .philosophy::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 40vw;
    height: 40vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(107,123,76,0.05) 0%, transparent 70%);
  }
  .philosophy blockquote {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.4rem, 2.8vw, 1.9rem);
    line-height: 1.5;
    font-weight: 400;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    color: var(--deep-brown);
    position: relative;
    z-index: 1;
  }
  .philosophy cite {
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--warm-gray);
    letter-spacing: 0.06em;
    position: relative;
    z-index: 1;
  }

  /* ========== STEPS (with timeline) ========== */
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 3.5rem;
    position: relative;
  }
  /* Connecting line */
  .steps-grid::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(16.66% + 28px);
    right: calc(16.66% + 28px);
    height: 2px;
    background: rgba(255,255,255,0.1);
    z-index: 0;
  }
  .step-item {
    text-align: center;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
  }
  .step-number {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem;
    font-weight: 400;
    margin: 0 auto 1.5rem;
    background: rgba(138,158,100,0.15);
    border: 2px solid rgba(138,158,100,0.3);
    color: var(--accent-olive-light);
    transition: all 0.4s;
  }
  .step-item:hover .step-number {
    background: var(--accent-olive);
    border-color: var(--accent-olive);
    color: var(--soft-white);
    transform: scale(1.1);
  }
  .step-item h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 0.7rem;
  }
  .step-item p {
    font-size: 0.88rem;
    line-height: 1.7;
    opacity: 0.6;
    font-weight: 300;
  }

  /* ========== FAQ ========== */
  .faq-list { max-width: 780px; margin: 3rem auto 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: 600px;
    padding-bottom: 1.5rem;
  }
  .faq-answer p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--medium-brown);
    font-weight: 300;
  }

  /* ========== CTA ========== */
  .cta-section {
    text-align: center;
    padding: 7rem 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%);
    animation: blobMorph 20s ease-in-out infinite;
  }
  .cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 40%;
    height: 120%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,168,108,0.05) 0%, transparent 60%);
    animation: blobMorph 25s ease-in-out infinite reverse;
  }
  .cta-section .section-title { margin-bottom: 1rem; position: relative; z-index: 2; }
  .cta-section .section-subtitle {
    color: rgba(255,255,255,0.55);
    margin: 0 auto 2.5rem;
    text-align: center;
    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 6px 20px rgba(107,123,76,0.3);
  }
  .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);
  }

  /* ========== FOOD CHARAKTERE (Deko) ========== */
  .food-charakter-wrap {
    position: relative;
    z-index: 6;
    height: 0;
    pointer-events: none;
    overflow: visible;
  }
  .food-charakter {
    position: absolute;
    pointer-events: none;
    opacity: 0;
    filter: drop-shadow(0 10px 28px rgba(44,36,32,0.16));
    transition: opacity 1s ease, transform 0.5s cubic-bezier(0.16,1,0.3,1);
    will-change: transform;
  }
  .food-charakter.visible {
    opacity: 1;
  }
  .food-charakter img {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: auto;
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
  }
  .food-charakter img:hover {
    transform: scale(1.08) rotate(4deg);
  }
  .food-charakter:hover {
    animation-play-state: paused;
  }

  /* Charakter-Namensschilder */
  .charakter-label {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(253,251,248,0.92);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    padding: 0.6rem 1.1rem;
    text-align: center;
    white-space: nowrap;
    pointer-events: auto;
    opacity: 0;
    transition: opacity 0.6s ease 0.8s, transform 0.6s cubic-bezier(0.16,1,0.3,1) 0.8s;
    box-shadow: 0 4px 20px rgba(44,36,32,0.1);
  }
  .food-charakter.visible .charakter-label {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  .charakter-label strong {
    display: block;
    font-family: 'DM Serif Display', serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--deep-brown);
    line-height: 1.3;
  }
  .charakter-label span {
    font-size: 0.7rem;
    color: var(--warm-gray);
    letter-spacing: 0.01em;
  }

  /* Platzierungen — seitlich, zwischen Sektionen */
  .charakter-leopold {
    width: 360px;
    left: 6%;
    top: -80px;
    animation: charakter-float 4s ease-in-out infinite;
  }
  .charakter-bruno {
    width: 400px;
    right: 8%;
    top: -120px;
    animation: charakter-float 5s ease-in-out infinite;
  }
  .charakter-hugo {
    width: 360px;
    left: 6%;
    top: -180px;
    animation: charakter-wobble 3.5s ease-in-out infinite;
  }
  .charakter-pauli {
    width: 440px;
    right: 8%;
    top: -240px;
    transition: opacity 1.2s ease;
  }
  .charakter-pauli.idle {
    animation: charakter-float 4s ease-in-out infinite;
  }
  .charakter-lulu {
    width: 380px;
    left: 6%;
    top: -190px;
    animation: charakter-bob 3.5s ease-in-out infinite;
  }

  /* Charakter-Animationen */
  @keyframes charakter-float {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-18px) rotate(2deg); }
  }
  @keyframes charakter-wobble {
    0%, 100% { transform: rotate(4deg) translateX(0); }
    25% { transform: rotate(-2deg) translateX(8px); }
    75% { transform: rotate(6deg) translateX(-8px); }
  }
  @keyframes charakter-bob {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-14px) scale(1.04); }
  }

  /* Tablet */
  @media (max-width: 900px) {
    .food-charakter { opacity: 0; }
    .food-charakter.visible { opacity: 0.7; }
    .charakter-leopold { width: 260px; left: 3%; top: -60px; }
    .charakter-bruno { width: 210px; right: 3%; top: -40px; }
    .charakter-hugo { width: 200px; left: 3%; top: -100px; }
    .charakter-pauli { width: 280px; right: 4%; top: -150px; }
    .charakter-lulu { width: 240px; left: 3%; }
  }

  /* Mobile: verstecken */
  @media (max-width: 550px) {
    .food-charakter-wrap { display: none; }
  }

  /* ========== SCROLL ANIMATIONS ========== */
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    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);
  }
  /* Staggered child reveals */
  .stagger-reveal > * {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .stagger-reveal.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: none; }
  .stagger-reveal.visible > *:nth-child(2) { transition-delay: 0.08s; opacity: 1; transform: none; }
  .stagger-reveal.visible > *:nth-child(3) { transition-delay: 0.16s; opacity: 1; transform: none; }
  .stagger-reveal.visible > *:nth-child(4) { transition-delay: 0.24s; opacity: 1; transform: none; }

  /* ========== RESPONSIVE ========== */
  @media (max-width: 900px) {
    .nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .hero-inner { grid-template-columns: 1fr; padding: 7rem 1.5rem 3rem; }
    .hero-visual { max-width: 360px; margin: 0 auto; }
    .hero-deco { display: none; }
    .section { padding: 4rem 1.5rem; }
    .trust-bar { padding: 2rem 1.5rem; }
    .trust-bar-inner { grid-template-columns: 1fr; gap: 1.2rem; }
    .trust-bar-item::after { display: none; }
    .trust-bar-item { padding: 0; }
    .diff-sub-grid { grid-template-columns: 1fr; }
    .diff-featured { flex-direction: column; }
    .compare-wrapper { grid-template-columns: 1fr; }
    .compare-campus { transform: none; padding: 2.5rem; }
    .compare-vs { padding: 1.5rem 0; }
    .compare-vs span { writing-mode: horizontal-tb; }
    .steps-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .steps-grid::before { display: none; }
    .benefits-strip { grid-template-columns: 1fr; }
    .benefit-item:first-child { grid-column: auto; }
    .team-grid { grid-template-columns: 1fr; }
    .stories-grid > :last-child { max-width: 100%; grid-column: auto; }
    .quality-row { flex-wrap: wrap; justify-content: center; }
    .quality-badge:not(:last-child)::after { display: none; }
    .quality-badge { padding: 0.8rem 1.2rem; }
    .impressionen-grid { grid-template-columns: 1fr; }
    .cta-section { padding: 4rem 1.5rem; }
    .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) {
    .quality-row { flex-direction: column; align-items: center; }
    .benefits-strip { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .btn-primary, .btn-secondary, .btn-light, .btn-outline-light { width: 100%; justify-content: center; }
    .hero-visual-main { aspect-ratio: 1/1; }
  }

  /* ================================================
     PREMIUM DESIGN LAYER
     ================================================ */

  /* ── Custom Cursor ── */

  /* ── Marquee Ticker Strip ── */
  .marquee-strip {
    background: var(--accent-olive);
    overflow: hidden;
    padding: 0.9rem 0;
    position: relative;
    z-index: 5;
  }
  .marquee-strip::before, .marquee-strip::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
  }
  .marquee-strip::before { left: 0; background: linear-gradient(to right, var(--accent-olive), transparent); }
  .marquee-strip::after  { right: 0; background: linear-gradient(to left, var(--accent-olive), transparent); }
  .marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 38s linear infinite;
  }
  .marquee-track:hover { animation-play-state: paused; }
  .marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    padding: 0 2.5rem;
    white-space: nowrap;
  }
  .marquee-text {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(253,251,248,0.85);
  }
  .marquee-sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(253,251,248,0.28);
    flex-shrink: 0;
  }
  @keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ── Stats Section ── */
  .stats-section { padding: 5.5rem 3rem; background: var(--warm-cream); }
  .stats-section-header { text-align: center; max-width: 1200px; margin: 0 auto 3.5rem; }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 24px;
    overflow: hidden;
  }
  .stat-item {
    padding: 3rem 1.8rem;
    text-align: center;
    position: relative;
    transition: background 0.4s ease;
  }
  .stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 18%;
    right: 0;
    height: 64%;
    width: 1px;
    background: rgba(0,0,0,0.06);
  }
  .stat-item:hover { background: rgba(107,123,76,0.025); }
  .stat-number {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(3rem, 4.5vw, 4.8rem);
    font-weight: 400;
    color: var(--deep-brown);
    line-height: 1;
    display: block;
    letter-spacing: -0.02em;
  }
  .stat-accent { color: var(--accent-olive); }
  .stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-top: 0.8rem;
    display: block;
  }
  .stat-desc {
    font-size: 0.8rem;
    color: var(--medium-brown);
    font-weight: 300;
    margin-top: 0.4rem;
    line-height: 1.55;
  }

  /* Card numbers removed in entwurf */

  /* ── Hero Italic → Gradient ── */
  .hero 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;
    position: relative;
  }
  .hero h1 em::after { display: none; }

  /* ── Second Hero Badge ── */
  .hero-trust-badge-2 {
    position: absolute;
    top: 2.5rem;
    right: -0.5rem;
    background: rgba(253,251,248,0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 0.85rem 1.2rem;
    box-shadow: 0 8px 35px rgba(0,0,0,0.09);
    z-index: 3;
    border-radius: 14px;
    animation: fadeInUp 0.8s ease 0.9s both;
    display: flex;
    align-items: center;
    gap: 0.7rem;
  }
  .hero-trust-badge-2 .badge-icon { font-size: 1.3rem; }
  .hero-trust-badge-2 .badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--deep-brown);
    line-height: 1.35;
  }
  .hero-trust-badge-2 .badge-text span {
    display: block;
    font-weight: 300;
    color: var(--warm-gray);
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  /* ── CTA Glow ── */
  .btn-light:hover {
    box-shadow: 0 0 40px rgba(107,123,76,0.28), 0 8px 25px rgba(107,123,76,0.2) !important;
  }

  /* ── Philosophy enhanced ── */
  .philosophy::before {
    display: none;
  }

  /* ── Decorative separator ── */
  .deco-sep {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.5rem 0;
  }
  .deco-sep span {
    width: 4px; height: 4px;
    background: var(--accent-olive);
    border-radius: 50%;
    opacity: 0.3;
  }
  .deco-sep::before, .deco-sep::after {
    content: '';
    width: 36px;
    height: 1px;
    background: rgba(0,0,0,0.1);
  }

  /* Quality strip — no min-height needed */

  /* ========== STORY TAKEAWAY (in team-cards) ========== */
  .story-takeaway {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-olive-light);
    padding-top: 0.6rem;
    margin-top: 0.6rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    letter-spacing: 0.02em;
  }

  /* ========== TEAM CARDS ON LIGHT BACKGROUND ========== */
  .team-card-light {
    background: #F0EBE3 !important;
    border: 1px solid var(--sand) !important;
  }
  .team-card-light:hover {
    background: var(--sand) !important;
    border-color: transparent !important;
    box-shadow: 0 12px 35px rgba(0,0,0,0.06) !important;
  }
  .team-card-light h4 {
    color: var(--deep-brown) !important;
  }
  .team-card-light p {
    color: var(--medium-brown) !important;
    opacity: 1 !important;
  }
  .team-card-light .team-emoji {
    background: var(--light-sage) !important;
    color: var(--accent-olive) !important;
  }
  .team-card-light .story-takeaway {
    color: var(--accent-olive) !important;
    border-top-color: rgba(0,0,0,0.08) !important;
  }

  /* ========== STATS ON DARK BACKGROUND ========== */
  .section-dark .stats-grid {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
  }
  .section-dark .stat-item { color: #FDFBF8; }
  .section-dark .stat-number { color: #FDFBF8 !important; }
  .section-dark .count { color: #FDFBF8 !important; }
  .section-dark .stat-accent { color: var(--accent-olive-light) !important; }
  .section-dark .stat-label { color: var(--warm-gray) !important; }
  .section-dark .stat-desc { color: rgba(253,251,248,0.5) !important; }
  .section-dark .stat-item:not(:last-child)::after { background: rgba(255,255,255,0.08); }
  .section-dark .stat-item:hover { background: rgba(255,255,255,0.03); }

  /* ========== QUALITY BADGES ON DARK BACKGROUND ========== */
  .quality-dark h5 { color: var(--soft-white); }
  .quality-dark p { color: var(--warm-gray); }
  .quality-dark .quality-badge:not(:last-child)::after { background: rgba(255,255,255,0.1); }

  /* ========== ABLAUF ON CREAM BACKGROUND ========== */
  .section-cream .step-number {
    background: var(--accent-olive);
    color: var(--soft-white);
  }
  .section-cream .step-item h3 { color: var(--deep-brown); }
  .section-cream .step-item p { color: var(--medium-brown); }
  .section-cream .steps-grid::before { background: var(--sand); }

  .stagger-reveal.visible > *:nth-child(5) { transition-delay: 0.32s; opacity: 1; transform: none; }

  /* ── Responsive – Stats ── */
  @media (max-width: 900px) {
    .stats-grid { grid-template-columns: 1fr 1fr; max-width: 600px; }
    .stat-item:nth-child(2n)::after { display: none; }
    .hero-trust-badge-2 { display: none; }
    .marquee-strip { padding: 0.75rem 0; }
    .benefits-strip .benefit-item:nth-child(5) { grid-column: auto; }
  }
  @media (max-width: 550px) {
    .stats-grid { grid-template-columns: 1fr; max-width: 100%; }
    .stat-item::after { display: none !important; }
    .stat-item { padding: 2rem 1.5rem; }
  }
