    /* =============================================
       DESIGN TOKENS
    ============================================= */
    :root {
      --navy:       #1B2B3A;
      --navy-light: #243447;
      --gold:       #C8A96E;
      --gold-light: #D4BC8B;
      --gold-pale:  #F5EDD6;
      --beige:      #F7F2EA;
      --white:      #FFFFFF;
      --off-white:  #FAFAF8;
      --text:       #1B2B3A;
      --text-mid:   #4A5568;
      --text-light: #718096;
      --border:     #E8E0D0;
      --radius-sm:  6px;
      --radius-md:  12px;
      --radius-lg:  20px;
      --shadow-sm:  0 2px 8px rgba(27,43,58,.07);
      --shadow-md:  0 8px 30px rgba(27,43,58,.10);
      --shadow-lg:  0 20px 60px rgba(27,43,58,.14);
      --transition: all .3s cubic-bezier(.4,0,.2,1);
    }

    /* =============================================
       RESET & BASE
    ============================================= */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', sans-serif;
      color: var(--text);
      background: var(--off-white);
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    /* =============================================
       LOGO IMAGE FILTERS
       Logo PNG has transparent background — simple filters only.
    ============================================= */
    .logo-img {
      display: block;
      object-fit: contain;
      transition: filter .3s ease;
    }
    .logo-on-dark      { filter: invert(1); }
    .logo-gold-on-dark { filter: invert(1) sepia(.7) saturate(2.2) brightness(.92); }
    .logo-on-light     { filter: none; }

    /* =============================================
       TYPOGRAPHY
    ============================================= */
    h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.25; }
    h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
    h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
    h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
    p  { font-size: 1rem; color: var(--text-mid); }

    .section-label {
      display: inline-block;
      font-size: .75rem;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: .75rem;
    }
    .section-title { color: var(--navy); margin-bottom: 1rem; }
    .section-subtitle { font-size: 1.05rem; color: var(--text-mid); max-width: 600px; line-height: 1.8; }

    /* =============================================
       LAYOUT UTILITIES
    ============================================= */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
    .section    { padding: 6rem 0; }
    .section-alt  { background: var(--beige); }
    .section-dark { background: var(--navy); }
    .text-center { text-align: center; }
    .text-center .section-subtitle { margin: 0 auto; }

    /* =============================================
       BUTTONS
    ============================================= */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      padding: .9rem 2rem;
      border-radius: var(--radius-sm);
      font-family: 'Inter', sans-serif;
      font-size: .95rem;
      font-weight: 500;
      cursor: pointer;
      border: 2px solid transparent;
      transition: var(--transition);
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--gold);
      color: var(--navy);
      border-color: var(--gold);
    }
    .btn-primary:hover {
      background: var(--gold-light);
      border-color: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(200,169,110,.35);
    }
    .btn-outline {
      background: transparent;
      color: var(--white);
      border-color: rgba(255,255,255,.5);
    }
    .btn-outline:hover {
      background: rgba(255,255,255,.1);
      border-color: var(--white);
    }
    .btn-outline-dark {
      background: transparent;
      color: var(--navy);
      border-color: var(--navy);
    }
    .btn-outline-dark:hover {
      background: var(--navy);
      color: var(--white);
    }

    /* =============================================
       NAVIGATION
    ============================================= */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 1.2rem 0;
      transition: var(--transition);
    }
    .nav.scrolled {
      background: rgba(255,255,255,.97);
      backdrop-filter: blur(12px);
      box-shadow: var(--shadow-sm);
      padding: .8rem 0;
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: .9rem;
    }
    /* Nav logo: round image, no background circle needed */
    .nav-logo-img {
      width: 46px;
      height: 46px;
      flex-shrink: 0;
      filter: invert(1);
      transition: filter .3s ease;
    }
    /* When nav turns white on scroll → dark logo via multiply */
    .nav.scrolled .nav-logo-img {
      filter: none;
    }
    .nav-logo-text { line-height: 1.1; }
    .nav-logo-text strong {
      display: block;
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      color: var(--white);
      transition: color .3s;
    }
    .nav-logo-text span {
      font-size: .7rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: rgba(255,255,255,.55);
      transition: color .3s;
    }
    .nav.scrolled .nav-logo-text strong { color: var(--navy); }
    .nav.scrolled .nav-logo-text span   { color: var(--text-light); }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 2rem;
    }
    .nav-link {
      font-size: .9rem;
      font-weight: 500;
      color: rgba(255,255,255,.85);
      transition: var(--transition);
    }
    .nav-link:hover { color: var(--gold); }
    .nav.scrolled .nav-link { color: var(--text-mid); }
    .nav.scrolled .nav-link:hover { color: var(--navy); }
    .nav-cta { font-size: .875rem; padding: .6rem 1.4rem; }

    /* =============================================
       HERO
    ============================================= */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, #1B2B3A 0%, #243447 40%, #1a3040 100%);
    }
    .hero-bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(200,169,110,.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(200,169,110,.06) 0%, transparent 50%);
    }
    .hero-pattern {
      position: absolute; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C8A96E' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    /* Large watermark logo in hero background */
    .hero-watermark {
      position: absolute;
      right: -80px;
      top: 50%;
      transform: translateY(-50%);
      width: 520px;
      height: 520px;
      opacity: .08;
      pointer-events: none;
      filter: invert(1);
    }
    .hero-inner {
      position: relative;
      z-index: 1;
      display: flex;
      justify-content: center;
      padding: 8rem 0 5rem;
    }
    .hero-content {
      max-width: 720px;
      text-align: center;
    }
    .hero-label {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      background: rgba(200,169,110,.15);
      border: 1px solid rgba(200,169,110,.3);
      border-radius: 99px;
      padding: .4rem 1rem;
      font-size: .8rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.5rem;
    }
    .hero-label::before {
      content: '';
      width: 6px; height: 6px;
      background: var(--gold);
      border-radius: 50%;
    }
    .hero-title { color: var(--white); margin-bottom: 1.5rem; }
    .hero-title span { color: var(--gold); display: block; }
    .hero-desc {
      color: rgba(255,255,255,.7);
      font-size: 1.05rem;
      line-height: 1.85;
      margin: 0 auto 2.5rem;
      max-width: 560px;
    }
    .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
    .hero-trust {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255,255,255,.1);
    }
    .hero-trust-item { text-align: center; }
    .hero-trust-item strong {
      display: block;
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      color: var(--gold);
    }
    .hero-trust-item span {
      font-size: .75rem;
      color: rgba(255,255,255,.5);
      text-transform: uppercase;
      letter-spacing: .06em;
    }
    .hero-trust-divider {
      width: 1px; height: 40px;
      background: rgba(255,255,255,.1);
    }

    /* =============================================
       STATS BAR
    ============================================= */
    .stats-bar {
      background: var(--navy);
      padding: 3rem 0;
      border-bottom: 1px solid rgba(200,169,110,.2);
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      text-align: center;
    }
    .stat-number {
      font-family: 'Playfair Display', serif;
      font-size: 2.8rem;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
      margin-bottom: .4rem;
    }
    .stat-label {
      font-size: .8rem;
      color: rgba(255,255,255,.5);
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    /* =============================================
       ÜBER LUKAS
    ============================================= */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 6rem;
      align-items: center;
    }
    .about-photo-wrap { position: relative; }
    .about-photo {
      width: 100%;
      aspect-ratio: 4/5;
      background: linear-gradient(160deg, var(--beige) 0%, var(--border) 100%);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    .about-photo-placeholder { text-align: center; color: var(--text-light); }
    .about-photo-placeholder svg {
      width: 80px; height: 80px;
      margin: 0 auto 1rem;
      opacity: .3;
    }
    .about-photo-placeholder p { font-size: .85rem; opacity: .5; }
    .about-badge {
      position: absolute;
      bottom: -1.5rem;
      right: -1.5rem;
      background: var(--gold);
      color: var(--navy);
      border-radius: var(--radius-md);
      padding: 1.25rem 1.5rem;
      box-shadow: var(--shadow-md);
      text-align: center;
    }
    .about-badge strong {
      display: block;
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      line-height: 1;
    }
    .about-badge span { font-size: .75rem; font-weight: 600; letter-spacing: .05em; }
    /* Small logo watermark inside the photo placeholder */
    .about-logo-watermark {
      position: absolute;
      bottom: 1.5rem;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      opacity: .2;
    }
    .about-quote {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      font-style: italic;
      color: var(--navy);
      line-height: 1.6;
      margin: 1.5rem 0;
      padding-left: 1.5rem;
      border-left: 3px solid var(--gold);
    }
    .about-text { margin-bottom: 1rem; }

    /* =============================================
       USP CARDS
    ============================================= */
    .usp-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
    }
    .usp-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 2rem 1.5rem;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }
    .usp-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: var(--transition);
    }
    .usp-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
    .usp-card:hover::before { transform: scaleX(1); }
    .usp-icon {
      width: 52px; height: 52px;
      background: var(--gold-pale);
      border-radius: var(--radius-sm);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.25rem;
    }
    .usp-icon svg { width: 24px; height: 24px; color: var(--gold); }
    .usp-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: .6rem; }
    .usp-card p  { font-size: .9rem; line-height: 1.7; }

    /* =============================================
       KONZEPT
    ============================================= */
    .konzept-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 3rem;
    }
    .konzept-card {
      background: var(--white);
      border-radius: var(--radius-md);
      padding: 2rem;
      border: 1px solid var(--border);
      transition: var(--transition);
    }
    .konzept-card:hover {
      box-shadow: var(--shadow-md);
      border-color: var(--gold-light);
    }
    .konzept-num {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      font-weight: 700;
      color: var(--gold-pale);
      line-height: 1;
      margin-bottom: .75rem;
    }
    .konzept-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: .75rem; }
    .konzept-card p  { font-size: .875rem; line-height: 1.75; }

    /* =============================================
       8 GRÜNDE
    ============================================= */
    .gruende-wrap { position: relative; }
    /* Large logo watermark behind the grid */
    .gruende-logo-bg {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 600px;
      opacity: .08;
      pointer-events: none;
      filter: invert(1);
    }
    .gruende-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
      margin-top: 3rem;
    }
    .grund-item {
      display: flex;
      align-items: flex-start;
      gap: 1.25rem;
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(200,169,110,.15);
      border-radius: var(--radius-md);
      padding: 1.5rem;
      transition: var(--transition);
    }
    .grund-item:hover {
      background: rgba(200,169,110,.08);
      border-color: rgba(200,169,110,.35);
    }
    .grund-num {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
      min-width: 2.5rem;
    }
    .grund-content h4 {
      font-family: 'Inter', sans-serif;
      font-size: .95rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: .3rem;
    }
    .grund-content p { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.6; }

    /* =============================================
       TESTIMONIAL
    ============================================= */
    .testimonial-wrap {
      max-width: 860px;
      margin: 0 auto;
      text-align: center;
    }
    /* Logo as testimonial header — dark on light beige bg */
    .testimonial-logo {
      width: 72px;
      height: 72px;
      margin: 0 auto 2rem;
    }
    .testimonial-text {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.15rem, 2.5vw, 1.45rem);
      color: var(--navy);
      font-style: italic;
      line-height: 1.75;
      margin-bottom: 2rem;
    }
    .testimonial-author {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
    }
    .testimonial-avatar {
      width: 48px; height: 48px;
      background: var(--beige);
      border-radius: 50%;
      border: 2px solid var(--border);
      display: flex; align-items: center; justify-content: center;
    }
    .testimonial-avatar svg { width: 24px; height: 24px; color: var(--text-light); }
    .testimonial-name { font-weight: 600; font-size: .95rem; color: var(--navy); }
    .testimonial-role { font-size: .8rem; color: var(--text-light); }
    .testimonial-stars { display: flex; gap: 3px; margin-top: .25rem; }
    .star { color: var(--gold); font-size: .85rem; }

    /* =============================================
       CTA
    ============================================= */
    .cta-section {
      background: linear-gradient(135deg, #1B2B3A 0%, #243447 100%);
      padding: 6rem 0;
      position: relative;
      overflow: hidden;
    }
    /* Logo watermark in CTA background */
    .cta-logo-bg {
      position: absolute;
      right: -60px;
      bottom: -60px;
      width: 420px;
      opacity: .09;
      pointer-events: none;
      filter: invert(1);
    }
    .cta-logo-bg-left {
      position: absolute;
      left: -80px;
      top: -60px;
      width: 320px;
      opacity: .06;
      pointer-events: none;
      filter: invert(1);
    }
    .cta-inner {
      position: relative;
      z-index: 1;
      text-align: center;
    }
    /* Small gold logo above the CTA headline */
    .cta-logo-accent {
      width: 60px;
      height: 60px;
      margin: 0 auto 1.5rem;
      filter: invert(1) sepia(.7) saturate(2.2) brightness(.92);
    }
    .cta-inner h2 { color: var(--white); margin-bottom: 1rem; }
    .cta-inner p  { color: rgba(255,255,255,.65); font-size: 1.05rem; max-width: 520px; margin: 0 auto 2.5rem; }
    .cta-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .cta-contact-detail {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      margin-top: 3rem;
      flex-wrap: wrap;
    }
    .cta-contact-item {
      display: flex;
      align-items: center;
      gap: .6rem;
      color: rgba(255,255,255,.6);
      font-size: .9rem;
    }
    .cta-contact-item svg { width: 16px; height: 16px; color: var(--gold); }

    /* =============================================
       FOOTER
    ============================================= */
    footer {
      background: #111C26;
      padding: 4rem 0 2rem;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }
    .footer-brand p {
      font-size: .875rem;
      color: rgba(255,255,255,.4);
      line-height: 1.8;
      margin-top: .75rem;
      max-width: 240px;
    }
    .footer-logo {
      display: flex;
      align-items: center;
      gap: .9rem;
    }
    /* Footer logo image — white via invert+screen */
    .footer-logo-img {
      width: 44px;
      height: 44px;
      filter: invert(1);
      opacity: .75;
      transition: opacity .2s;
    }
    .footer-logo:hover .footer-logo-img { opacity: 1; }
    .footer-logo-text strong {
      display: block;
      font-family: 'Playfair Display', serif;
      font-size: .95rem;
      color: var(--white);
    }
    .footer-logo-text span {
      font-size: .7rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: rgba(255,255,255,.35);
    }
    .footer-col h4 {
      font-family: 'Inter', sans-serif;
      font-size: .8rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255,255,255,.3);
      margin-bottom: 1.25rem;
    }
    .footer-col li + li { margin-top: .6rem; }
    .footer-col a {
      font-size: .875rem;
      color: rgba(255,255,255,.55);
      transition: color .2s;
    }
    .footer-col a:hover { color: var(--gold); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.06);
      padding-top: 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.25); }
    .footer-bottom-links { display: flex; gap: 1.5rem; }
    .footer-bottom-links a {
      font-size: .8rem;
      color: rgba(255,255,255,.25);
      transition: color .2s;
    }
    .footer-bottom-links a:hover { color: var(--gold); }

    /* =============================================
       HELPERS
    ============================================= */
    .section-header { margin-bottom: 3.5rem; }
    .section-header.center { text-align: center; }
    .section-header.center .section-subtitle { margin: 0 auto; }
    .gold-divider {
      width: 48px; height: 3px;
      background: var(--gold);
      border-radius: 2px;
      margin: 1rem 0 1.5rem;
    }
    .gold-divider.center { margin: 1rem auto 1.5rem; }

    /* =============================================
       FADE-IN ANIMATION
    ============================================= */
    .fade-in {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .fade-in.visible { opacity: 1; transform: none; }

    /* =============================================
       RESPONSIVE
    ============================================= */
    @media (max-width: 1024px) {
      .usp-grid    { grid-template-columns: repeat(2, 1fr); }
      .stats-grid  { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .section     { padding: 4rem 0; }
      .hero-inner  { padding: 7rem 0 4rem; }
      .about-grid  { grid-template-columns: 1fr; gap: 3rem; }
      .about-photo { aspect-ratio: 3/2; }
      .about-badge { bottom: -1rem; right: 1rem; }
      .konzept-grid { grid-template-columns: 1fr; }
      .gruende-grid { grid-template-columns: 1fr; }
      .nav-links   { display: none; }
      .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
      .usp-grid    { grid-template-columns: 1fr; }
      .hero-watermark { width: 300px; }
    }

/* =============================================
   LEGAL PAGES (Impressum, Datenschutz)
============================================= */
.legal-page {
  padding: 10rem 0 6rem;
  max-width: 780px;
  margin: 0 auto;
}
.legal-page h1 { color: var(--navy); margin-bottom: 2.5rem; }
.legal-page h2 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 2.5rem 0 .75rem;
}
.legal-page h2:first-of-type { margin-top: 0; }
.legal-page p, .legal-page li { color: var(--text-mid); font-size: .95rem; line-height: 1.8; }
.legal-page p { margin-bottom: 1rem; }
.legal-page ul { margin: 0 0 1rem 0; }
.legal-page li { list-style: disc; margin-left: 1.25rem; margin-bottom: .4rem; }
.legal-page a { color: var(--gold); text-decoration: underline; }
.legal-page .legal-placeholder {
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius-sm);
  padding: .15rem .5rem;
  color: var(--navy);
  font-weight: 600;
}
.legal-back { display: inline-block; margin-bottom: 2rem; font-size: .9rem; color: var(--text-light); }
.legal-back:hover { color: var(--navy); }

/* =============================================
   RATING BADGE (Google-Bewertungen)
============================================= */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  border-radius: 99px;
  padding: .5rem 1.1rem;
  margin-bottom: 1.75rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}
.rating-badge:hover { background: var(--gold-light); }
.rating-badge .stars { color: var(--gold); letter-spacing: 1px; }
.rating-badge .rating-count { color: var(--text-mid); font-weight: 500; }

/* =============================================
   PROFILE LINKS (LinkedIn / Google, im Kontakt-Bereich)
============================================= */
.profile-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.profile-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.8);
  font-size: .85rem;
  font-weight: 500;
  transition: var(--transition);
}
.profile-link:hover { border-color: var(--gold); color: var(--gold); }
.profile-link svg { width: 16px; height: 16px; }

/* =============================================
   FAQ
============================================= */
.faq-list { max-width: 780px; margin: 3rem auto 0; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--navy);
  font-size: .98rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  padding: 0 1.75rem 1.5rem;
  font-size: .9rem;
  line-height: 1.75;
}
