/* page-about.css - About page styles (hero, avatar collage, founder, team grid, CTA, blog teaser, responsive) */

  /* =============================================
     About Page
     ============================================= */

  /* About Hero */
  .about-hero {
    margin-top: var(--nav-height);
    padding: 5rem 0 2rem;
    background: var(--bg-light);
    text-align: center;
  }

  .about-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-intro-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 550px;
    margin: 1rem auto 0;
    line-height: 1.7;
  }

  /* Hero Avatar Collage */
  .about-hero-avatars {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 2rem;
    position: relative;
    height: 120px;
  }

  .about-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 0 -10px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .about-avatar:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 10 !important;
  }

  .about-avatar-center {
    width: 110px;
    height: 110px;
    border: 4px solid var(--accent);
    z-index: 5;
    margin: 0 -6px;
  }

  .about-avatar-mid {
    width: 85px;
    height: 85px;
    z-index: 3;
  }

  .about-avatar-back {
    width: 68px;
    height: 68px;
    z-index: 1;
    opacity: 0.9;
  }

  /* Founder Section */
  .about-founder {
    padding: 4rem 0;
    background: #ffffff;
  }

  .about-founder-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
  }

  .about-founder-photo img {
    width: 100%;
    border-radius: var(--radius);
    aspect-ratio: 1;
    object-fit: cover;
  }

  .about-founder-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-blue);
    margin-bottom: 0.4rem;
  }

  .about-founder-info {
    position: relative;
    text-align: left;
  }

  .about-founder-info h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
  }

  .about-founder-role {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
  }

  .about-founder-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0.75rem;
  }

  .about-founder-info a {
    color: var(--accent-blue);
    text-decoration: none;
    border-bottom: 1px solid rgba(59, 130, 246, 0.35);
    transition: border-color 0.2s, color 0.2s;
  }

  .about-founder-info a:hover {
    color: #0284c7;
    border-bottom-color: #0284c7;
  }

  .bio-quote {
    margin: 1.5rem 0;
    padding: 1rem 1.25rem 0.85rem;
    background: #ecfdf5;
    border-left: 3px solid #34d399;
    border-radius: 8px;
    max-width: 90%;
  }

  .bio-quote p {
    font-style: italic;
    font-size: 1rem !important;
    color: #134e4a !important;
    line-height: 1.55;
    margin-bottom: 0.45rem !important;
  }

  .bio-quote cite {
    display: block;
    text-align: right;
    font-size: 0.72rem;
    font-style: normal;
    font-variant-caps: small-caps;
    letter-spacing: 0.1em;
    color: #047857;
  }

  .about-founder-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.25rem;
    justify-content: center;
  }

  .about-founder-linkedin {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(10, 102, 194, 0.08);
    transition: background 0.2s, transform 0.2s;
  }

  .about-founder-linkedin:hover {
    background: rgba(10, 102, 194, 0.15);
    transform: translateY(-2px);
  }

  .about-founder-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(10, 102, 194, 0.08);
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
  }

  .about-founder-linkedin:hover {
    background: rgba(10, 102, 194, 0.15);
    transform: translateY(-2px);
  }

  /* Outline button for light backgrounds */
  .about-cta .btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 1.5px solid var(--border-light);
  }

  .about-cta .btn-outline:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
  }

  /* Team Grid */
  .about-team {
    padding: 4rem 0;
    background: var(--bg-light);
  }

  .about-team .section-title {
    text-align: center;
  }

  .about-team .section-label {
    text-align: center;
  }

  .about-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
  }

  .about-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .about-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  }

  .about-card-photo {
    aspect-ratio: 1;
    overflow: hidden;
    background: #f0f0f4;
  }

  .about-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
  }

  .about-card:hover .about-card-photo img {
    transform: scale(1.03);
  }

  .about-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
  }

  .about-card-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
  }

  .about-card-role {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--accent-blue);
    margin-bottom: 0.6rem;
  }

  .about-card-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
  }

  /* About CTA */
  .about-cta {
    padding: 4rem 0;
    background: #ffffff;
    text-align: center;
  }

  .about-cta h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
  }

  .about-cta p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
  }

  .about-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* Newsletter pulse highlight — 3x langsam weiß */
  @keyframes newsletter-glow {
    0%   { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
    5%   { box-shadow: 0 0 25px 12px rgba(255, 255, 255, 0.45); }
    17%  { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
    22%  { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
    27%  { box-shadow: 0 0 28px 14px rgba(255, 255, 255, 0.5); }
    44%  { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
    50%  { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
    55%  { box-shadow: 0 0 30px 16px rgba(255, 255, 255, 0.55); }
    72%  { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
  }

  .newsletter-pulse {
    animation: newsletter-glow 6s ease-in-out;
    border-radius: 12px;
  }

  /* About Blog Teaser */
  .about-blog {
    padding: 4rem 0;
    background: var(--bg-light);
  }

  .about-blog .section-title,
  .about-blog .section-label {
    text-align: center;
  }

  .about-blog .blog-grid {
    margin-top: 2rem;
  }

  /* About Responsive */
  @media (max-width: 1024px) {
    .about-team .swipe-dots {
      margin-top: 1.2rem;
    }
  }

  @media (max-width: 768px) {

    .about-hero {
      padding: 3rem 0 1.5rem;
    }

    .about-hero-avatars {
      height: 90px;
    }

    .about-avatar-center {
      width: 80px;
      height: 80px;
    }

    .about-avatar-mid {
      width: 60px;
      height: 60px;
    }

    .about-avatar-back {
      width: 50px;
      height: 50px;
    }

    .about-founder-layout {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .about-founder-photo {
      max-width: 280px;
      margin: 0 auto;
    }

    .about-founder-info {
      text-align: center;
    }

    .about-founder-linkedin {
      position: static;
      margin: 0 auto 1rem;
    }

    .about-cta-actions {
      flex-direction: column;
      align-items: center;
    }
  }

