:root {
      --primary: #7c3aed;
      --primary-dark: #6d28d9;
      --accent: #a78bfa;
      --bg-gradient-start: #f8f7ff;
      --bg-gradient-end: #ede9fe;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
      background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
      min-height: 100vh;
      overflow-x: hidden;
    }

.hero-section {
      position: relative;
      padding: 100px 0;
      overflow: hidden;
    }

    /* Animowane tło z kółkami */
    .hero-section::before {
      content: '';
      position: absolute;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
      border-radius: 50%;
      top: -200px;
      right: -200px;
      animation: float 20s ease-in-out infinite;
    }

    .hero-section::after {
      content: '';
      position: absolute;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(167, 139, 250, 0.15) 0%, transparent 70%);
      border-radius: 50%;
      bottom: -100px;
      left: -100px;
      animation: float 15s ease-in-out infinite reverse;
    }

    @keyframes float {
      0%, 100% { transform: translate(0, 0) scale(1); }
      50% { transform: translate(30px, 30px) scale(1.1); }
    }

    .hero-content {
      position: relative;
      z-index: 2;
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(10px);
      border-radius: 30px;
      padding: 60px;
      box-shadow: 
        0 10px 40px rgba(124, 58, 237, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
      border: 1px solid rgba(167, 139, 250, 0.2);
      animation: slideUp 0.8s ease-out;
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .badge-accent {
      background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
      color: white;
      padding: 8px 16px;
      font-weight: 600;
      font-size: 0.875rem;
      box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
      animation: pulse 2s ease-in-out infinite;
      display: inline-flex;
      align-items: center;
    }

    @keyframes pulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.05); }
    }

    .badge-accent i {
      animation: bolt 1.5s ease-in-out infinite;
    }

    @keyframes bolt {
      0%, 100% { transform: rotate(0deg); }
      25% { transform: rotate(-10deg); }
      75% { transform: rotate(10deg); }
    }

    h1 {
      font-size: 3.5rem;
      font-weight: 800;
      background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--accent) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin: 20px 0;
      line-height: 1.2;
      animation: gradientShift 3s ease infinite;
      background-size: 200% 200%;
    }

    @keyframes gradientShift {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }

    .hero-description {
      font-size: 1.25rem;
      color: #6b7280;
      margin-bottom: 30px;
      line-height: 1.6;
    }

    .cta-buttons {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }

    .btn-primary-hero {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      color: white;
      padding: 14px 32px;
      border-radius: 50px;
      border: none;
      font-weight: 600;
      font-size: 1rem;
      box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
      transition: all 0.3s ease;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }

    .btn-primary-hero::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      transform: translate(-50%, -50%);
      transition: width 0.5s, height 0.5s;
    }

    .btn-primary-hero:hover::before {
      width: 300px;
      height: 300px;
    }

    .btn-primary-hero:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(124, 58, 237, 0.4);
    }

    .btn-secondary-hero {
      background: white;
      color: var(--primary);
      padding: 14px 32px;
      border-radius: 50px;
      border: 2px solid var(--primary);
      font-weight: 600;
      font-size: 1rem;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .btn-secondary-hero:hover {
      background: var(--primary);
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
    }

    .floating-shapes {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      pointer-events: none;
      z-index: 1;
    }

    .shape {
      position: absolute;
      opacity: 0.6;
    }

    .shape-1 {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, var(--accent), var(--primary));
      border-radius: 20px;
      top: 20%;
      left: 10%;
      animation: rotate 10s linear infinite;
    }

    .shape-2 {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      border-radius: 50%;
      top: 60%;
      right: 15%;
      animation: float 8s ease-in-out infinite;
    }

    .shape-3 {
      width: 80px;
      height: 80px;
      border: 3px solid var(--accent);
      border-radius: 50%;
      bottom: 20%;
      left: 20%;
      animation: pulse 3s ease-in-out infinite;
    }

    @keyframes rotate {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    @media (max-width: 768px) {
      .hero-content {
        padding: 40px 30px;
      }

      h1 {
        font-size: 2.5rem;
      }

      .hero-description {
        font-size: 1.1rem;
      }

      .cta-buttons {
        flex-direction: column;
      }

      .btn-primary-hero,
      .btn-secondary-hero {
        width: 100%;
        text-align: center;
      }
    }