/* Extracted from public/konsultacja.html for SEO Commit 2 (HTML→Next.js migration). DO NOT EDIT — original visual parity. */
/* Minimal base — nebula.css handles full design */
    * { margin: 0; padding: 0; box-sizing: border-box; }
    :root {
      --bg-primary: #0a0a1a;
      --text-primary: #e8e8f0;
      --text-secondary: #9898b8;
      --text-muted: #6868a0;
      --border-color: #2a2a4a;
      --accent-gradient: linear-gradient(135deg, #22d3ee, #8b5cf6, #ec4899);
    }
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background: var(--bg-primary);
      color: var(--text-primary);
      min-height: 100vh;
      padding-top: 60px;
    }

    .page-content {
      max-width: 880px;
      margin: 0 auto;
      padding: 3.5rem 2rem 3rem;
    }
    .page-hero {
      text-align: center;
      margin-bottom: 2rem;
    }
    .page-hero h1 {
      font-size: 2rem; font-weight: 800;
      background: var(--accent-gradient); -webkit-background-clip: text;
      -webkit-text-fill-color: transparent; background-clip: text;
      margin-bottom: 0.6rem;
      /* background-clip: text przycina opadające (ą, ę, j, ł) jeśli line-height
         za mały. Padding-bottom + line-height 1.25 daje miejsce na ogonki. */
      line-height: 1.25;
      padding-bottom: 0.15em;
    }
    .page-hero .role {
      font-size: 0.9rem; color: var(--text-secondary); font-weight: 500;
      margin-bottom: 1.2rem;
    }
    .page-hero .lead {
      font-size: 1rem; color: var(--text-secondary); line-height: 1.6;
      max-width: 640px; margin: 0 auto;
    }

    /* Calendly card */
    .calendly-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--border-color);
      border-radius: 16px;
      padding: 16px;
      margin-top: 1.5rem;
      overflow: hidden;
    }
    .calendly-inline-widget {
      min-width: 320px;
      height: 720px;
      border-radius: 12px;
      overflow: hidden;
    }

    /* Email fallback */
    .email-fallback {
      text-align: center;
      margin: 2rem auto 0;
      padding: 1.5rem 1rem;
      max-width: 640px;
    }
    .email-fallback .label {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-bottom: 0.6rem;
    }
    .email-fallback .email-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--text-primary);
      text-decoration: none;
      padding: 0.7rem 1.4rem;
      border: 1px solid var(--border-color);
      border-radius: 12px;
      transition: all 0.2s;
    }
    .email-fallback .email-cta:hover {
      border-color: rgba(125,42,232,0.4);
      transform: translateY(-1px);
    }

    /* Site footer */
    .site-footer {
      border-top: 1px solid var(--border-color);
      padding: 1.5rem 2rem;
      text-align: center;
    }
    .footer-links {
      display: flex; justify-content: center; align-items: center; gap: 1.5rem;
      flex-wrap: wrap;
    }
    .footer-link {
      display: flex; align-items: center; gap: 0.35rem;
      color: var(--text-muted); text-decoration: none; font-size: 0.78rem; font-weight: 500;
      transition: color 0.2s;
    }
    .footer-link:hover { color: var(--text-primary); }
    .footer-link svg { width: 14px; height: 14px; flex-shrink: 0; }
    .footer-divider { width: 1px; height: 14px; background: var(--border-color); }
    .footer-copy {
      font-size: 0.68rem; color: #4a4a6a; margin-top: 0.8rem;
    }
